:root {
  --bg: #0b0d10;
  --surface: #0f1216;
  --text: #e6e8eb;
  --muted: #9aa3ad;
  --accent: #a0c4ff;
  --accent-2: #7aa2f7;
  --grid-gap: 1.25rem;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 600px at 70% -10%, #1a2230 0%, rgba(10,12,16,0) 60%),
              radial-gradient(900px 500px at 10% -20%, #352b3a 0%, rgba(10,12,16,0) 55%),
              var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr;
}

.container {
  max-width: 1100px;
  padding: 0 24px;
  margin: 0 auto;
}

/* removed large hero header for link-in-bio look */

/* Link-in-bio layout */
.bio-page {
  display: grid;
  place-items: start center;
  padding: 48px 20px 72px;
}
.bio-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 26px 22px 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  text-align: center;
}
.avatar {
  width: 108px; height: 108px; border-radius: 50%;
  display: block; margin: 0 auto 12px; border: 3px solid rgba(255,255,255,0.28);
  object-fit: cover; object-position: center;
  background: #0b0d10;
}
.name { font-family: Cinzel, serif; margin: 6px 0 2px; font-size: 28px; letter-spacing: 0.02em; }
.role { color: var(--muted); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.desc { color: var(--muted); margin: 12px 0 18px; }

.bio-actions { display: grid; gap: 12px; margin-top: 8px; }
.bio-btn {
  display: inline-grid; grid-auto-flow: column; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 16px; border-radius: 999px; text-decoration: none; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.bio-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.6); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.btn-icon { width: 20px; height: 20px; display: grid; place-items: center; }
.btn-icon svg { width: 20px; height: 20px; }

.copyright { color: var(--muted); font-size: 12px; margin: 14px 0 0; }
.anti-spam { color: var(--muted); font-size: 12px; margin-top: 8px; }

.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* Decorative texture */
/* Simple noise-like SVG background for hero */
