:root {
  --ink: #131a22;
  --night: #17283d;
  --night-deep: #0d1825;
  --blue: #244b78;
  --blue-light: #79a9cf;
  --brick: #6f292b;
  --brick-dark: #4d2226;
  --mauve: #896479;
  --gold: #efc56f;
  --cream: #f3eee5;
  --paper: #e6e1d8;
  --white: #fffdf9;
  --line: rgba(255, 255, 255, .17);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--night-deep);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--night-deep);
  background: var(--gold);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.station-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 1rem clamp(1.25rem, 4vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 24, 37, .96);
}
.station-brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.station-brand strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -.025em;
}
.station-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(239, 197, 111, .55);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brick), var(--night));
}
.station-mark i {
  width: 3px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold);
}
.station-mark i:nth-child(2) { height: 21px; }
.station-mark i:nth-child(3) { height: 28px; }
.station-mark i:nth-child(4) { height: 15px; }

.station-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.5rem); }
.station-nav a {
  color: #d9e1e8;
  text-decoration: none;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.station-nav a:hover, .station-nav a:focus { color: var(--gold); }
.station-nav .is-live { color: var(--gold); }
.station-nav .is-live span,
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: .45rem;
  border-radius: 50%;
  background: #e55854;
  box-shadow: 0 0 0 5px rgba(229, 88, 84, .12);
  animation: live-pulse 1.8s infinite;
}
.nav-toggle { display: none; }

.on-air {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.08) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255,255,255,.045) 50%, transparent 50.1%),
    var(--night);
  background-size: 20rem 20rem;
}
.on-air::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 9px;
  background: linear-gradient(90deg, var(--brick), var(--mauve), var(--blue-light));
}
.on-air-visual {
  position: relative;
  min-height: 610px;
  margin: clamp(2rem, 5vw, 5.5rem) 0 clamp(2rem, 5vw, 5.5rem) clamp(1.25rem, 4vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(121, 169, 207, .38);
  background: #07121c;
}
.on-air-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,24,37,.12), rgba(111,41,43,.38));
}
.on-air-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.06);
}
.signal-lines {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 6%;
  left: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 90px;
  opacity: .85;
}
.signal-lines i {
  width: 5px;
  height: 20%;
  border-radius: 5px;
  background: var(--gold);
  animation: signal 1.3s ease-in-out infinite alternate;
}
.signal-lines i:nth-child(2), .signal-lines i:nth-child(6) { animation-delay: -.6s; }
.signal-lines i:nth-child(3), .signal-lines i:nth-child(5) { animation-delay: -.25s; }
.signal-lines i:nth-child(4) { animation-delay: -.8s; }

.on-air-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 9rem) clamp(1.5rem, 6vw, 8rem);
}
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.on-air h1,
.station-format h2,
.more-music h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .96;
}
.on-air h1 { max-width: 820px; font-size: clamp(4rem, 7.2vw, 8.5rem); }
.on-air h1 em { color: var(--gold); font-weight: inherit; }
.intro { max-width: 690px; margin: 2.4rem 0 0; color: #d0d8df; font-size: clamp(1.02rem, 1.3vw, 1.3rem); }
.listen-cue {
  align-self: flex-start;
  margin-top: 2.3rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.listen-cue span { margin-left: .5rem; font-size: .7rem; }

.radio-room {
  min-height: calc(100vh - 92px);
  padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 7vw, 9rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(121,169,207,.13), transparent 26rem),
    linear-gradient(135deg, var(--night-deep), var(--brick-dark));
}
.player-stage { max-width: 1500px; margin: 0 auto; padding: 0; background: transparent; }
.player-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .7fr);
  gap: 3rem;
  align-items: end;
  max-width: 1500px;
  margin: 0 auto 2.5rem;
}
.player-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 5.4rem); font-weight: 500; line-height: 1; }
.player-heading > p { max-width: 570px; margin: 0; color: #ddd1ce; }
.player-shell {
  width: 100%;
  margin: 0;
  padding: 1px;
  border: 1px solid rgba(239, 197, 111, .42);
  background: var(--night-deep);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .3);
}
.player-shell-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: .65rem 1.1rem;
  border-bottom: 1px solid rgba(121,169,207,.25);
  color: #dbe5ed;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.player-shell-bar i { display: inline-block; width: 8px; height: 8px; margin-right: .5rem; border-radius: 50%; background: #e55854; }
.player-shell-bar small { color: var(--gold); font: inherit; }
.radio-audience-status { display: grid; grid-template-columns: repeat(2, minmax(118px, 1fr)); gap: .45rem; }
.radio-audience-stat { display: flex; flex-direction: column; align-items: flex-start; gap: .18rem; min-width: 0; padding: .48rem .68rem; border: 1px solid rgba(239, 197, 111, .38); border-radius: 7px; background: rgba(255, 255, 255, .045); box-shadow: inset 3px 0 0 rgba(229, 88, 84, .78); white-space: nowrap; }
.radio-audience-status b { color: #fff; font: 800 1.08rem/1 var(--sans); letter-spacing: .04em; }
.player-shell-bar h1 { align-items: center; display: flex; font: inherit; gap: .45rem; letter-spacing: inherit; margin: 0; text-transform: inherit; }
.radio-console {
  display: grid;
  grid-template-columns: minmax(170px, 330px) 1fr;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 3rem);
  background: radial-gradient(circle at 85% 10%, rgba(121,169,207,.15), transparent 32%), var(--night-deep);
}
.radio-console-cover { width: 100%; aspect-ratio: 1; border: 1px solid rgba(239,197,111,.5); object-fit: cover; }
.radio-console-label { margin: 0 0 .7rem; color: var(--blue-light); font-size: .7rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.radio-console-title-row { display: flex; align-items: center; gap: .8rem; }
.radio-console-title { color: var(--white); font: 500 clamp(2.5rem, 5.5vw, 6.4rem)/.95 var(--serif); letter-spacing: -.045em; text-decoration: none; }
.radio-console-story, .radio-console-profile { display: inline-grid; flex: 0 0 auto; place-items: center; width: 31px; height: 31px; border: 1px solid var(--gold); border-radius: 7px; color: var(--gold); text-decoration: none; }
.radio-console-artist-row { display: flex; align-items: center; gap: .7rem; margin: 1rem 0 0; color: #d8e1e8; font-size: clamp(1.05rem, 1.6vw, 1.4rem); }
.radio-console-profile { width: 25px; height: 25px; color: var(--blue-light); font-size: .7rem; font-weight: 900; }
.radio-console-meta { display: flex; gap: 1rem; margin: .7rem 0 0; color: #aebdca; }
.radio-console-price { color: var(--gold); font-weight: 900; }
.radio-console-controls { display: grid; grid-template-columns: 54px auto minmax(110px, 1fr) auto; gap: 1rem; align-items: center; grid-column: 1 / -1; padding: 1.1rem; border: 1px solid rgba(121,169,207,.23); background: rgba(255,255,255,.035); }
.radio-play { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; background: rgba(239,197,111,.1); cursor: pointer; }
.radio-play span { width: 0; height: 0; margin-left: 4px; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid var(--gold); }
.radio-play.is-playing span { width: 12px; height: 16px; margin: 0; border: 0; border-right: 4px solid var(--gold); border-left: 4px solid var(--gold); }
.radio-time { color: #dbe4eb; font-size: .84rem; font-weight: 800; white-space: nowrap; }
.radio-volume { accent-color: var(--gold); width: 100%; }
.radio-purchase,.radio-purchase button{border:1px solid var(--gold);border-radius:7px;background:var(--brick);color:var(--white);cursor:pointer;font:900 .72rem var(--sans);letter-spacing:.08em;padding:.65rem .9rem;text-decoration:none;text-transform:uppercase;white-space:nowrap}.radio-purchase button{border:0;padding:0}.radio-purchase:hover,.radio-purchase:focus,.radio-purchase button:hover,.radio-purchase button:focus{background:var(--blue)}
.radio-audio { display: none; }
.player-key { display: flex; flex-wrap: wrap; gap: 1rem 2.25rem; max-width: 1500px; margin: 1.5rem auto 0; color: #e5dcd5; font-size: .88rem; }
.player-key span { display: inline-flex; align-items: center; gap: .6rem; }
.profile-symbol, .story-symbol {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  color: var(--gold);
  background: var(--night);
  font-size: .75rem;
  font-style: normal;
}
.radio-artist-panel {
  width: 100%;
  margin: 2rem 0 0;
  padding: clamp(1.2rem, 2.5vw, 2.25rem);
  border-top: 1px solid rgba(239,197,111,.45);
  border-bottom: 1px solid rgba(239,197,111,.28);
  background: rgba(13,24,37,.38);
}
.radio-artist-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(239,197,111,.22);
}
.radio-artist-heading .eyebrow { margin: 0; }
.radio-artist-body {
  display: grid;
  grid-template-columns: clamp(110px, 15vw, 180px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  padding-top: 1.35rem;
}
.on-air-artist-image {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(239,197,111,.45);
  border-radius: 8px;
  object-fit: cover;
}
.on-air-artist-name { margin: 0; font: 500 clamp(2rem, 4vw, 3.8rem)/1 var(--serif); letter-spacing: -.035em; text-align: right; }
.on-air-artist-bio { max-width: 900px; margin: 0; color: #ddd1ce; }
.radio-artist-facts { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.2rem 0 0; }
.radio-artist-facts div { min-width: 145px; padding: .75rem .9rem; border-left: 3px solid var(--gold); background: rgba(255,255,255,.045); }
.radio-artist-facts dt { color: #c9bdba; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.radio-artist-facts dd { margin: .2rem 0 0; color: var(--gold); font: 600 1.55rem var(--serif); }
.on-air-latest-story { margin: 1.1rem 0 0; color: #ddd1ce; }
.on-air-latest-story span { margin-right: .45rem; color: var(--aqua); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.on-air-latest-story a { color: var(--gold); }
.radio-artist-details{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1.2rem}.radio-artist-details section{padding:1rem;border:1px solid rgba(239,197,111,.2);background:rgba(255,255,255,.035)}.radio-artist-details h4{margin:0 0 .55rem;color:var(--gold);font-size:.75rem;letter-spacing:.1em;text-transform:uppercase}.radio-artist-details ul{margin:0;padding:0;list-style:none}.radio-artist-details li+li{margin-top:.6rem}.radio-artist-details a{color:var(--white)}.radio-artist-details small{display:block;color:#b9c6d0}
.on-air-artist-links { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.on-air-artist-links a {
  padding: .6rem .9rem;
  border: 1px solid rgba(239,197,111,.55);
  border-radius: 6px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.on-air-artist-links a:hover,
.on-air-artist-links a:focus { color: var(--night-deep); background: var(--gold); }

.station-format {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1.28fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 7vw, 9rem);
  color: var(--ink);
  background: var(--paper);
}
.station-format .eyebrow { color: var(--brick); }
.station-format h2 { font-size: clamp(3.6rem, 6vw, 7rem); }
.format-grid { display: grid; border-top: 2px solid var(--ink); }
.format-grid article { display: grid; grid-template-columns: 70px minmax(180px, .65fr) 1fr; gap: 1.2rem; padding: 2rem 0; border-bottom: 1px solid rgba(19,26,34,.2); }
.format-grid article > span { color: var(--brick); font: 700 .78rem var(--sans); }
.format-grid h3 { margin: 0; font: 500 clamp(1.45rem, 2.2vw, 2.3rem) var(--serif); }
.format-grid p { margin: 0; color: #3d4c5d; }

.more-music {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) 1.3fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 7vw, 9rem);
  background: var(--night);
}
.more-music h2 { font-size: clamp(4rem, 7vw, 8rem); }
.more-intro > p:last-child { max-width: 600px; margin-top: 2rem; color: #c9d2db; }
.more-links { border-top: 1px solid var(--line); }
.more-links a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, .35fr) 1fr 40px;
  gap: 1.2rem;
  align-items: center;
  min-height: 150px;
  padding: 1.5rem .5rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background .2s ease, padding .2s ease;
}
.more-links a:hover, .more-links a:focus { padding-right: 1.25rem; padding-left: 1.25rem; background: rgba(121,169,207,.08); }
.more-links span { color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.more-links strong { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2.5rem); font-weight: 500; }
.more-links b { color: var(--gold); font-size: 1.5rem; font-weight: 400; text-align: right; }

.station-footer {
  display: grid;
  grid-template-columns: 1.1fr .6fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem clamp(1.25rem, 7vw, 9rem);
  border-top: 9px solid var(--mauve);
  background: #09131f;
}
.station-brand--footer .station-mark { width: 38px; height: 38px; }
.station-footer > p { margin: 0; color: #aebdca; }
.station-footer nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.station-footer nav a { color: #dbe4eb; font-size: .78rem; font-weight: 700; text-decoration: none; }
.station-footer nav a:hover { color: var(--gold); }
.station-footer > small { color: #8293a1; white-space: nowrap; }
.back-to-top {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 15;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(239,197,111,.6);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(23,40,61,.93);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

@keyframes live-pulse { 50% { box-shadow: 0 0 0 8px rgba(229,88,84,0); } }
@keyframes signal { from { height: 18%; } to { height: 90%; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 1050px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(239,197,111,.45);
    border-radius: 8px;
    color: var(--gold);
    background: transparent;
  }
  .nav-toggle span { display: block; width: 21px; height: 2px; background: currentColor; }
  .nav-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .station-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem clamp(1.25rem,4vw,5rem) 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--night-deep);
  }
  .station-nav.is-open { display: flex; }
  .station-nav a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .on-air { grid-template-columns: 1fr; }
  .on-air-visual { min-height: 480px; margin-right: clamp(1.25rem,4vw,5rem); }
  .on-air-copy { order: -1; padding-bottom: 2rem; }
  .on-air::after { width: 100%; }
  .station-format, .more-music { grid-template-columns: 1fr; }
  .station-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .station-header { min-height: 78px; }
  .station-brand strong { font-size: 1.35rem; }
  .station-mark { width: 40px; height: 40px; }
  .on-air { min-height: auto; background-size: 12rem 12rem; }
  .on-air-copy { padding-top: 4.5rem; }
  .on-air h1 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .intro { margin-top: 1.6rem; }
  .on-air-visual { min-height: 320px; margin-top: 1rem; }
  .player-heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .player-shell-bar { align-items: stretch; flex-direction: column; gap: .65rem; }
  .player-shell-bar small { text-align: left; }
  .radio-audience-status { width: 100%; }
  .radio-audience-stat { white-space: normal; }
  .radio-console { grid-template-columns: 104px 1fr; align-items: start; }
  .radio-console-title { font-size: clamp(1.7rem, 8vw, 2.7rem); }
  .radio-console-controls { grid-template-columns: 48px 1fr auto; }
  .radio-volume { grid-column: 1 / -1; }
  .radio-purchase{grid-column:1/-1;text-align:center}.radio-artist-details{grid-template-columns:1fr}
  .player-key { flex-direction: column; }
  .radio-artist-heading { display: block; }
  .radio-artist-body { grid-template-columns: 96px minmax(0, 1fr); }
  .on-air-artist-name { font-size: clamp(1.8rem, 8vw, 2.7rem); }
  .on-air-artist-name { margin-top: .45rem; text-align: left; }
  .radio-artist-copy { display: contents; }
  .on-air-artist-bio, .radio-artist-facts, .on-air-latest-story, .on-air-artist-links { grid-column: 1 / -1; }
  .format-grid article { grid-template-columns: 44px 1fr; }
  .format-grid article p { grid-column: 2; }
  .more-links a { grid-template-columns: 1fr 32px; min-height: 130px; }
  .more-links a span { grid-column: 1 / -1; }
  .station-footer { grid-template-columns: 1fr; }
  .station-footer > small { white-space: normal; }
}
