:root {
  color-scheme: dark;
  --ink: #eef6ff;
  --muted: #aabbd0;
  --navy: #091524;
  --panel: #10233f;
  --panel-2: #153052;
  --cyan: #33d7d1;
  --violet: #8c7cff;
  --coral: #ff8e71;
  --line: rgba(255,255,255,.11);
}

* { box-sizing: border-box; }
html { background: var(--navy); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(51,215,209,.12), transparent 34rem),
    radial-gradient(circle at 8% 48%, rgba(140,124,255,.13), transparent 30rem),
    var(--navy);
}

a { color: inherit; }
button, input { font: inherit; }
.shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 28px 2px 22px; }
.brand { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; font-size: .92rem; font-weight: 800; letter-spacing: .13em; }
.brand b { color: var(--cyan); }
.brand-mark { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; gap: 3px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.05); }
.brand-mark i { display: block; width: 3px; border-radius: 4px; background: var(--cyan); animation: equalize 1.1s ease-in-out infinite alternate; }
.brand-mark i:nth-child(1) { height: 10px; }
.brand-mark i:nth-child(2) { height: 20px; animation-delay: -.35s; }
.brand-mark i:nth-child(3) { height: 14px; animation-delay: -.7s; }
@keyframes equalize { to { transform: scaleY(.45); opacity: .65; } }
@media (prefers-reduced-motion: reduce) { .brand-mark i { animation: none; } }
.live-pill { display: flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: #dce9f7; font-size: .76rem; font-weight: 800; letter-spacing: .12em; background: rgba(255,255,255,.04); }
.live-pill span { width: 8px; height: 8px; border-radius: 50%; background: #ff5f66; box-shadow: 0 0 0 5px rgba(255,95,102,.12); }

.player-card { position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(280px, .82fr) 1.18fr; gap: clamp(30px, 6vw, 76px); align-items: center; min-height: 570px; padding: clamp(28px, 6vw, 70px); overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(135deg, rgba(21,48,82,.96), rgba(12,29,50,.98)); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.player-card::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg,#000,transparent 75%); }
.glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); }
.glow-one { width: 360px; height: 360px; left: -160px; top: -180px; background: rgba(140,124,255,.22); }
.glow-two { width: 420px; height: 420px; right: -220px; bottom: -230px; background: rgba(51,215,209,.16); }
.art { position: relative; width: min(100%, 380px); aspect-ratio: 1; display: grid; place-items: center; margin-inline: auto; }
.record { width: 76%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: repeating-radial-gradient(circle, #172132 0 6px, #0b111b 7px 10px); box-shadow: 0 28px 55px rgba(0,0,0,.48), inset 0 0 0 2px rgba(255,255,255,.08); animation: spin 15s linear infinite paused; }
body.is-playing .record { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }
.record-label { width: 34%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: #10233f; font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 900; letter-spacing: -.06em; background: conic-gradient(from 10deg, var(--cyan), #8be5c3, var(--violet), var(--cyan)); box-shadow: inset 0 0 0 8px rgba(255,255,255,.12); }
.tone { position: absolute; border-radius: 50%; border: 1px solid rgba(51,215,209,.22); }
.tone-a { inset: 1%; }
.tone-b { inset: -7%; border-color: rgba(140,124,255,.16); }
.tone-c { inset: -15%; border-color: rgba(255,142,113,.1); }
.eyebrow { margin: 0 0 12px; color: var(--cyan); font-size: .75rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
h1 { max-width: 620px; margin: 0; font-size: clamp(2.55rem, 6vw, 5.2rem); line-height: .96; letter-spacing: -.055em; }
.intro { max-width: 620px; margin: 22px 0 30px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.14rem); line-height: 1.65; }
.now-playing { min-height: 96px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(4,13,24,.33); }
.now-playing .label { display: block; margin-bottom: 7px; color: #7e96b1; font-size: .65rem; font-weight: 850; letter-spacing: .14em; }
.now-playing strong, .now-playing > span:last-child { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.now-playing strong { font-size: 1.08rem; }
.now-playing > span:last-child { margin-top: 3px; color: var(--muted); font-size: .88rem; }
.controls { display: flex; gap: 16px; align-items: center; margin-top: 22px; }
.play { min-width: 154px; min-height: 52px; display: inline-flex; justify-content: center; align-items: center; gap: 10px; border: 0; border-radius: 16px; color: #07121e; font-weight: 900; cursor: pointer; background: linear-gradient(120deg, var(--cyan), #8be5c3); box-shadow: 0 12px 28px rgba(51,215,209,.19); transition: transform .18s ease, box-shadow .18s ease; }
.play:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(51,215,209,.28); }
.play:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.play-icon { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
body.is-playing .play-icon { width: 11px; height: 14px; border: 0; background: linear-gradient(90deg,currentColor 0 36%,transparent 36% 64%,currentColor 64%); }
.volume { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.volume input { width: 100px; accent-color: var(--cyan); }
.listeners { margin-left: auto; color: var(--muted); font-size: .78rem; white-space: nowrap; }
.listeners b { color: var(--ink); }
.status { min-height: 20px; margin: 12px 0 0; color: #8195ab; font-size: .78rem; }
.audience-total { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; padding: 10px 14px; border: 1px solid rgba(51,215,209,.2); border-radius: 15px; background: rgba(51,215,209,.07); }
.audience-total > span:last-child { display: flex; align-items: baseline; gap: 10px; }
.audience-total small { color: #8aa1ba; font-size: .61rem; font-weight: 850; letter-spacing: .11em; }
.audience-total strong { color: var(--cyan); font-size: 1.12rem; }
.audience-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; color: #07121e; font-weight: 900; background: linear-gradient(120deg,var(--cyan),#8be5c3); }
.details { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding: 26px 0; }
.details article { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: rgba(16,35,63,.54); }
.detail-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 28px; border-radius: 13px; color: var(--cyan); background: rgba(51,215,209,.1); }
.details h2 { margin: 0 0 9px; font-size: 1rem; }
.details p { margin: 0; color: var(--muted); font-size: .89rem; line-height: 1.6; }
footer { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 14px 2px 34px; color: #7890a9; font-size: .78rem; }
footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

.legal { width: min(820px,100%); margin: 40px auto 70px; padding: clamp(24px,5vw,55px); border: 1px solid var(--line); border-radius: 26px; background: rgba(16,35,63,.72); }
.legal h1 { font-size: clamp(2rem,6vw,3.6rem); }
.legal h2 { margin-top: 34px; font-size: 1.15rem; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal a { color: #78e5df; overflow-wrap: anywhere; }
.track-list { padding: 0; list-style: none; }
.track-list li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.back { display: inline-block; margin-bottom: 28px; text-decoration: none; color: var(--cyan); }

@media (max-width: 850px) {
  .player-card { display: flex; flex-direction: column; align-items: stretch; min-height: 0; }
  .art { width: min(68vw,290px); flex: 0 0 auto; align-self: center; }
  .player-copy { text-align: center; }
  .intro { margin-inline: auto; }
  .now-playing { text-align: left; }
  .details { grid-template-columns: 1fr; }
  .details article { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; }
  .detail-icon { grid-row: 1 / 3; margin: 0; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 20px,1160px); }
  .topbar { padding-top: 18px; }
  .brand { font-size: .78rem; }
  .player-card { padding: 25px 18px 30px; border-radius: 25px; }
  .controls { flex-wrap: wrap; justify-content: center; }
  .play { width: 100%; }
  .listeners { margin-left: 0; }
  .audience-total { justify-content: center; width: 100%; }
  footer { align-items: flex-start; flex-direction: column; }
}
