:root {
  --bg: #0b0b0f;
  --panel: #101016;
  --panel-2: #0d0d14;
  --text: #f1f5f9;
  --muted: #b1b6c1;
  --accent: #9a8cff;
  --accent-2: #00e5ff;
  --focus: #ffd166;
  --success: #7dffb3;
  --radius: 22px;
  --shadow: 0 10px 35px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.05);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 75% 10%, rgba(154,140,255,.12), transparent 60%),
    radial-gradient(1000px 600px at 10% 90%, rgba(0,229,255,.10), transparent 60%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

#particles { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1; display: block; filter: contrast(105%); }

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--panel); color: var(--text);
  padding: .6rem .9rem; border-radius: 10px; box-shadow: var(--shadow);
  text-decoration: none; outline: none;
  transition: transform .2s ease, top .2s ease;
}
.skip-link:focus { top: 1rem; transform: translateY(0); box-shadow: 0 0 0 4px rgba(255,209,102,.35), var(--shadow); }

.top-controls { position: fixed; top: 12px; right: 12px; z-index: 20; display: flex; align-items: center; gap: 8px; }
.motion-toggle {
  appearance: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  color: var(--muted);
  border-radius: 999px; padding: 8px 10px; font-size: .9rem;
  opacity: .6; box-shadow: var(--shadow);
}
.motion-toggle:hover, .motion-toggle:focus-visible {
  opacity: 1; color: var(--text); outline: none;
  box-shadow: 0 0 0 4px rgba(255,209,102,.35), var(--shadow);
}

main { min-height: 100dvh; display: grid; place-items: center; padding: 24px; }
.container { width: 100%; max-width: 960px; display: grid; gap: 28px; }

.hero {
  text-align: center; display: grid; gap: 14px; justify-items: center;
  padding: 28px; background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-radius: var(--radius); box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.logo {
  width: clamp(96px, 28vw, 168px); height: clamp(96px, 28vw, 168px);
  border-radius: 50%; object-fit: cover; object-position: center;
  box-shadow: 0 0 0 4px rgba(154,140,255,.35), 0 0 60px rgba(154,140,255,.25), var(--shadow);
  background: #111;
}

.artist-name {
  font-family: "Bitcount", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(30px, 9vw, 72px); letter-spacing: .03em; margin: 6px 0 0 0;
  text-shadow: 0 0 22px rgba(154,140,255,.35), 0 0 8px rgba(0,229,255,.15);
}
.artist-tagline {
  font-family: "Asimovian", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  margin: 6px 0 0 0;
  text-shadow:
    0 0 22px rgba(154, 140, 255, 0.35),
    0 0 8px rgba(0, 229, 255, 0.15);
}

.tagline { color: var(--muted); margin: 0; font-size: clamp(14px, 3.6vw, 18px); }

.spotify { display: grid; gap: 16px; }
.spotify-embeds { display: grid; gap: 16px; }
.spotify-embeds iframe {
  width: 100%; height: 152px; border: 0; border-radius: 16px;
  box-shadow: var(--shadow); background: var(--panel);
}

nav[aria-label="Main links"] { background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.15)); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; }
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }

.link {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text); padding: 14px 16px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), var(--shadow);
  position: relative; isolation: isolate;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.link::after { content: ""; position: absolute; inset: -2px; background: linear-gradient(135deg, rgba(154,140,255,.6), rgba(0,229,255,.6)); border-radius: inherit; filter: blur(14px); opacity: 0; z-index: -1; transition: opacity .2s ease; }
.link:hover { transform: translateY(-2px); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); }
.link:hover::after { opacity: .35; }
.link:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(255,209,102,.35), var(--shadow); }
.link .icon { width: 24px; height: 24px; opacity: .9; }
.link .meta { color: var(--muted); font-size: .92rem; }

footer { text-align: center; color: var(--muted); font-size: .95rem; margin-bottom: 8px; }
footer a { color: var(--text); }

@media (min-width: 640px) {
  .spotify-embeds iframe { height: 200px; }
  nav[aria-label="Main links"] { padding: 20px; }
  .link { padding: 16px 18px; }
}
@media (min-width: 1024px) {
  .container { gap: 32px; }
  .spotify-embeds { grid-template-columns: 1fr 1fr; }
  .spotify-embeds iframe { height: 240px; }
  .link-list { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .link { transition: none; }
  .link:hover { transform: none; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.noscript { position: fixed; inset: 16px; z-index: 9999; background: #1a1a22; color: #fff; padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow); }
