:root {
  --bg: #08090d;
  --panel: #14151d;
  --panel-2: #191a23;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f8f8ff;
  --muted: rgba(248, 248, 255, 0.72);
  --soft: rgba(248, 248, 255, 0.5);
  --cyan: #00d4ff;
  --purple: #7b61ff;
  --pink: #ff4fd8;
  --green: #5cf2a8;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(123, 97, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 79, 216, 0.12), transparent 26%),
    linear-gradient(180deg, #10111a 0, var(--bg) 36%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.site-header, .site-footer, main { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.brand-link { line-height: 0; }
.brand-link img { width: 156px; max-width: 44vw; height: auto; }
.header-link { color: var(--muted); font-size: 14px; font-weight: 800; text-decoration: none; }
.header-link:hover { color: white; }
.station-hero { min-height: 620px; padding: 70px 0 64px; display: grid; grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr); gap: clamp(42px, 7vw, 96px); align-items: center; }
.station-art-panel { position: relative; width: min(100%, 470px); aspect-ratio: 1; border-radius: 34px; padding: 14px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)); border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.38); }
.station-art-panel::after { content: ""; position: absolute; inset: 12% -8% -9% 10%; background: radial-gradient(circle, rgba(123,97,255,.24), transparent 68%); filter: blur(28px); z-index: -1; }
.station-logo { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; display: block; }
.eyebrow { margin: 0 0 10px; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(44px, 7vw, 82px); line-height: .95; letter-spacing: -.055em; }
h2 { margin-bottom: 14px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; }
h3 { margin-bottom: 10px; font-size: 20px; }
.tagline { max-width: 660px; margin-bottom: 30px; color: var(--muted); font-size: clamp(18px, 2.4vw, 23px); line-height: 1.55; }
.live-card { width: min(100%, 650px); min-height: 78px; padding: 14px 18px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.045); }
.live-pill { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: rgba(92,242,168,.12); color: var(--green); font-size: 11px; font-weight: 950; letter-spacing: .1em; }
.now-playing-copy { min-width: 0; display: grid; gap: 4px; }
.now-playing-copy span { color: var(--soft); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.now-playing-copy strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 16px; }
.hero-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.primary-cta, .secondary-cta { min-height: 52px; border-radius: 14px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 900; text-decoration: none; cursor: pointer; }
.primary-cta { border: 0; color: #05060a; background: linear-gradient(135deg, var(--cyan), #73ebff 45%, #fff); box-shadow: 0 12px 34px rgba(0,212,255,.16); }
.primary-cta:hover { transform: translateY(-1px); }
.secondary-cta { border: 1px solid var(--line); color: white; background: rgba(255,255,255,.055); }
.secondary-cta:hover { background: rgba(255,255,255,.085); }
.player-message { margin: 12px 0 0; color: var(--soft); font-size: 13px; }
.app-cta, .bottom-cta { margin: 0 0 44px; padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(135deg, rgba(123,97,255,.12), rgba(255,255,255,.035)); }
.app-cta p, .bottom-cta p { max-width: 680px; margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.store-badges a { line-height: 0; }
.store-badges img { height: 48px; width: auto; display: block; }
.content-section { max-width: 850px; padding: 52px 0 58px; }
.content-section p { color: var(--muted); font-size: 17px; line-height: 1.78; }
.feature-grid { padding-bottom: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { padding: 26px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.feature-grid article > span { display: inline-block; margin-bottom: 26px; color: var(--pink); font-size: 12px; font-weight: 950; }
.feature-grid p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.bottom-cta { margin-bottom: 60px; justify-content: flex-start; }
.bottom-cta > img { width: 72px; height: 72px; border-radius: 18px; }
.bottom-cta > div { flex: 1; }
.link-cta { flex: 0 0 auto; }
.site-footer { min-height: 90px; padding: 22px 0; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--line); color: var(--soft); font-size: 13px; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: white; }

@media (max-width: 820px) {
  .station-hero { grid-template-columns: 1fr; min-height: auto; padding: 42px 0 48px; gap: 34px; }
  .station-art-panel { width: min(78vw, 420px); margin: 0 auto; }
  .station-copy, .station-copy .eyebrow { text-align: center; }
  .tagline, .live-card { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .app-cta, .bottom-cta { align-items: flex-start; flex-direction: column; }
  .store-badges { justify-content: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .link-cta { width: 100%; }
}

@media (max-width: 520px) {
  .site-header, main, .site-footer { width: min(100% - 28px, 1160px); }
  .site-header { min-height: 70px; }
  .brand-link img { width: 140px; }
  .station-art-panel { width: 100%; border-radius: 26px; }
  .station-logo { border-radius: 18px; }
  h1 { font-size: clamp(42px, 14vw, 64px); }
  .tagline { font-size: 17px; }
  .hero-actions { display: grid; }
  .primary-cta, .secondary-cta { width: 100%; }
  .live-card { align-items: flex-start; text-align: left; }
  .now-playing-copy strong { white-space: normal; }
  .app-cta, .bottom-cta { padding: 22px; border-radius: 20px; }
  .store-badges { width: 100%; display: grid; grid-template-columns: 1fr; }
  .store-badges img { width: 170px; height: auto; }
  .content-section { padding: 34px 0 44px; }
  .feature-grid { padding-bottom: 48px; }
}

