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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8fafc;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 448px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 32px;
}

.avatar {
  width: 96px;
  height: 96px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
}

.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.highlight {
  color: #2563eb;
}

.subtitle {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 4px;
}

.hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 8px;
}

/* Link buttons */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
  text-align: left;
}

.link-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-btn:active {
  transform: scale(0.98);
}

.icon-wrap {
  color: #ffffff;
  padding: 12px;
  border-radius: 12px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.link-label {
  flex: 1;
  font-weight: 600;
  color: #334155;
  font-size: 0.95rem;
}

.link-ext {
  color: #cbd5e1;
  font-size: 0.75rem;
  transition: color 0.15s ease;
}

.link-btn:hover .link-ext {
  color: #94a3b8;
}

/* Footer */
.footer {
  margin-top: 48px;
  text-align: center;
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
