:root {
  --bg:         #07111a;
  --surface:    rgba(20, 26, 42, .62);
  --surface-2:  rgba(30, 35, 52, .72);
  --border:     rgba(255, 255, 255, .09);
  --text:       #f6f8ff;
  --muted:      rgba(246, 248, 255, .72);
  --faint:      rgba(246, 248, 255, .5);
  --accent:     #93f0cf;
  --radius:     16px;
  --radius-sm:  0px;
  --shadow:     0 20px 60px rgba(0, 0, 0, .35);
}
 
/* ── reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
 
/* ── base ───────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, rgba(57, 148, 182, .36), transparent 22%),
    radial-gradient(circle at 55% 14%, rgba(75, 168, 188, .18), transparent 16%),
    radial-gradient(circle at 22% 50%, rgba(79, 125, 36, .22),  transparent 12%),
    radial-gradient(circle at 51% 89%, rgba(74, 132, 168, .24), transparent 24%),
    linear-gradient(180deg, #0a1621 0%, #08111a 100%);
}
 
/* blurred bg copy for depth */
body::before {
  content: "";
  position: absolute; inset: -40px;
  background: inherit;
  filter: blur(28px) saturate(.9);
  transform: scale(1.05);
  z-index: 0;
}
body::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(4, 8, 14, .22);
  backdrop-filter: blur(4px);
  z-index: 0;
}
 
/* ── layout ─────────────────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}
 
.shell {
  width: min(100%, 520px);
  display: grid;
  gap: 14px;
}
 
/* ── glass surface shared ───────────────────────────────── */
.card, .player {
  background: linear-gradient(135deg, rgba(38, 51, 77, .62), rgba(22, 25, 40, .72));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
 
/* ── card ───────────────────────────────────────────────── */
.card {
  padding: 28px 22px 20px;
  text-align: center;
}
 
.avatar-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, #ba9350, #56400f);
}

h1 {
  font-size: 44px;
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.05em;
  margin-bottom: 10px;
}
 
.bio {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
}
 
.location {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
 
/* ── status ─────────────────────────────────────────────── */
.status {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto 20px;
  width: min(100%, 270px);
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .05);
  text-align: left;
}
 
.status__dot {
  flex-shrink: 0;
  margin-top: 4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
 
.status__text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
 
.status__text span {
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}
 
/* ── links ──────────────────────────────────────────────── */
.links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  list-style: none;
}
 
.icon-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
 
.icon-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  transform: scale(1.1);
}
 
.icon-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── legal footer ───────────────────────────────────────── */
.legal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.legal a {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  transition: transform .2s, color .2s, background .2s, border-color .2s;
}

.legal a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.legal a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── views ──────────────────────────────────────────────── */
.views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: var(--faint);
}
 
.views svg { opacity: .45; }

 
.ctrl-btn:hover { color: var(--text); transform: scale(1.15); }
.ctrl-btn--play { color: var(--text); font-size: 18px; }
 
/* ── ambient dots ───────────────────────────────────────── */
.dot {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  z-index: 1;
  box-shadow: 0 0 8px rgba(255, 255, 255, .25);
  pointer-events: none;
}
 
.dot--a { top: 98px;  left: 190px; }
.dot--b { top: 82px;  right: 240px; }
.dot--c { top: 180px; left: 10px; }

/* SEO/UX additions */
.skip-link{position:absolute;left:-9999px;top:auto}.skip-link:focus{left:12px;top:12px;z-index:999;padding:10px 12px;background:#000;color:#fff;border-radius:8px}