* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: #f6f8fa;
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 48px 40px;
  width: 100%;
  max-width: 480px;
}

/* Header */
.top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.avatar {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #1a1a2e;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.info h1 { font-size: 18px; font-weight: 700; }
.info p  { font-size: 13px; color: #6b7280; margin-top: 3px; }

/* Divider */
.divider { height: 1px; background: #e5e7eb; margin-bottom: 28px; }

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
}

/* TP links */
.tp-list { display: flex; flex-direction: column; gap: 10px; }

.tp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #1a1a2e;
  transition: border-color .2s, background .2s;
}

.tp-link:hover { border-color: #1a1a2e; background: #f9fafb; }

.tp-left { display: flex; align-items: center; gap: 14px; }

.tp-num {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #374151;
}

.tp-title { font-size: 14px; font-weight: 600; }
.tp-url   { font-size: 12px; color: #9ca3af; margin-top: 2px; }

.arrow {
  color: #d1d5db;
  font-size: 16px;
  transition: color .2s, transform .2s;
}

.tp-link:hover .arrow { color: #1a1a2e; transform: translateX(3px); }

/* Footer */
.footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #9ca3af;
}

.github-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 13px;
  padding: 7px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color .2s, background .2s;
}

.github-link:hover { border-color: #1a1a2e; background: #f9fafb; }
.github-link svg { width: 16px; height: 16px; }