/* ===== Radio Page ===== */

/* ---- Hero ---- */
.radio-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.radio-hero__bg {
  position: absolute;
  inset: -20px;
  z-index: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

/* Ambient glow overlay — always on */
.radio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 25% 55%, rgba(251,146,60,.11) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 75% 25%, rgba(59,130,246,.06) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.radio-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 860px) {
  .radio-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
}

/* ---- Album art ---- */
.radio-art-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-art {
  width: 260px;
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1a2a 0%, #252535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  z-index: 2;
  transition: box-shadow .5s ease;
}

.radio-art.has-art {
  box-shadow: 0 20px 60px rgba(251,146,60,.18), 0 0 0 1px rgba(251,146,60,.15);
}

.radio-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.radio-art__icon {
  font-size: 72px;
  color: rgba(255,255,255,.12);
  font-variation-settings: 'FILL' 0, 'wght' 200;
}

/* Rotating rings when playing */
.radio-art__rings {
  position: absolute;
  inset: -50px;
  z-index: 1;
  pointer-events: none;
}

.radio-art__rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color .6s ease;
}

.radio-art__rings span:nth-child(1) { inset: 8%;  }
.radio-art__rings span:nth-child(2) { inset: 18%; }
.radio-art__rings span:nth-child(3) { inset: 28%; }

.is-playing .radio-art__rings span:nth-child(1) {
  border-color: rgba(251,146,60,.18);
  animation: radioRingSpin 9s linear infinite;
}
.is-playing .radio-art__rings span:nth-child(2) {
  border-color: rgba(251,146,60,.12);
  animation: radioRingSpin 13s linear infinite reverse;
}
.is-playing .radio-art__rings span:nth-child(3) {
  border-color: rgba(251,146,60,.08);
  animation: radioRingSpin 18s linear infinite;
}

@keyframes radioRingSpin {
  to { transform: rotate(360deg); }
}

/* ---- Info panel ---- */
.radio-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.radio-info__badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .radio-info__badges { justify-content: center; }
  .radio-controls     { justify-content: center; }
}

.radio-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.28);
  color: #f87171;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
}

.radio-listener-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  padding: 4px 11px;
  border-radius: 99px;
}
.radio-listener-badge .material-symbols-rounded { font-size: 14px; }

.radio-info__label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.radio-info__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.radio-info__artist {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-top: -8px;
}

/* ---- Progress ---- */
.radio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.radio-progress__time {
  font-size: .73rem;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,.35);
  min-width: 36px;
  flex-shrink: 0;
}

.radio-progress__track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.09);
  border-radius: 99px;
  overflow: hidden;
  cursor: pointer;
}

.radio-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #fb923c, #f59e0b);
  border-radius: 99px;
  transition: width .8s linear;
  min-width: 2px;
}

/* ---- Controls ---- */
.radio-controls {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.radio-play-btn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(251,146,60,.38);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  flex-shrink: 0;
  outline: none;
}
.radio-play-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 36px rgba(251,146,60,.5);
}
.radio-play-btn:active { transform: scale(.96); }

.radio-play-btn .material-symbols-rounded {
  font-size: 32px;
  color: #fff;
  font-variation-settings: 'FILL' 1;
}

/* Volume */
.radio-vol-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}

.radio-vol-icon {
  font-size: 20px;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  transition: color .15s;
}
.radio-vol-icon:hover { color: rgba(255,255,255,.7); }

.radio-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 110px;
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  outline: none;
  cursor: pointer;
  transition: background .2s;
}
.radio-vol-slider:hover { background: rgba(255,255,255,.18); }
.radio-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fb923c;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(251,146,60,.4);
}
.radio-vol-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fb923c;
  border: none;
  cursor: pointer;
}

/* ---- History section ---- */
.radio-history {
  padding: 72px 0 96px;
}

.radio-history .section-header {
  margin-bottom: 32px;
}

.radio-history__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-history__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 64px 0;
  color: rgba(255,255,255,.28);
  font-size: .9rem;
}

/* Track row */
.radio-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 12px;
  transition: background .18s ease, border-color .18s ease;
}
.radio-track:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.1);
}

.radio-track__num {
  width: 26px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.2);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.radio-track__art {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1a2a, #252535);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-track__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.radio-track__art .material-symbols-rounded {
  font-size: 22px;
  color: rgba(255,255,255,.18);
  font-variation-settings: 'FILL' 0;
}

.radio-track__info {
  flex: 1;
  min-width: 0;
}
.radio-track__title {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.radio-track__artist {
  font-size: .76rem;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.radio-track__time {
  font-size: .73rem;
  color: rgba(255,255,255,.22);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════════════════
   MODERN ENHANCEMENTS
═══════════════════════════════════════════════════════════ */

/* ── Audio visualizer (under album art) ── */
.radio-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 40px;
  margin-top: 18px;
  opacity: .3;
  transition: opacity .4s ease;
}
.is-playing + .radio-visualizer,
.radio-art-wrap.is-playing ~ .radio-visualizer,
.radio-art-wrap.is-playing .radio-visualizer,
.radio-info.is-playing .radio-visualizer,
.radio-visualizer.is-playing { opacity: 1; }
.radio-visualizer span {
  display: block;
  width: 3px;
  height: 10%;
  background: linear-gradient(180deg, #fb923c, #f59e0b);
  border-radius: 2px;
  animation: vizBar 900ms ease-in-out infinite;
  animation-play-state: paused;
}
.radio-visualizer.is-playing span { animation-play-state: running; }
.radio-visualizer span:nth-child(1)  { animation-delay:  -120ms; animation-duration: 680ms; }
.radio-visualizer span:nth-child(2)  { animation-delay:  -260ms; animation-duration: 820ms; }
.radio-visualizer span:nth-child(3)  { animation-delay:  -380ms; animation-duration: 540ms; }
.radio-visualizer span:nth-child(4)  { animation-delay:  -200ms; animation-duration: 920ms; }
.radio-visualizer span:nth-child(5)  { animation-delay:  -320ms; animation-duration: 720ms; }
.radio-visualizer span:nth-child(6)  { animation-delay:  -400ms; animation-duration: 880ms; }
.radio-visualizer span:nth-child(7)  { animation-delay:  -100ms; animation-duration: 620ms; }
.radio-visualizer span:nth-child(8)  { animation-delay:  -280ms; animation-duration: 780ms; }
.radio-visualizer span:nth-child(9)  { animation-delay:  -360ms; animation-duration: 900ms; }
.radio-visualizer span:nth-child(10) { animation-delay:  -180ms; animation-duration: 700ms; }
.radio-visualizer span:nth-child(11) { animation-delay:  -240ms; animation-duration: 660ms; }
.radio-visualizer span:nth-child(12) { animation-delay:  -340ms; animation-duration: 860ms; }
.radio-visualizer span:nth-child(13) { animation-delay:  -140ms; animation-duration: 740ms; }
.radio-visualizer span:nth-child(14) { animation-delay:  -300ms; animation-duration: 840ms; }
.radio-visualizer span:nth-child(15) { animation-delay:  -220ms; animation-duration: 580ms; }
.radio-visualizer span:nth-child(16) { animation-delay:  -420ms; animation-duration: 960ms; }
.radio-visualizer span:nth-child(17) { animation-delay:  -160ms; animation-duration: 640ms; }
.radio-visualizer span:nth-child(18) { animation-delay:  -380ms; animation-duration: 720ms; }
@keyframes vizBar {
  0%,100% { height: 15%; }
  50%     { height: 100%; }
}

/* ── Secondary controls row (share, request, add-to-queue, shortcuts) ── */
.radio-extra {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.radio-extra__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  border-radius: 99px;
  font-size: .76rem; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .18s ease;
}
.radio-extra__btn:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(251,146,60,.3);
  color: #fff;
}
.radio-extra__btn.active {
  background: rgba(251,146,60,.18);
  border-color: rgba(251,146,60,.4);
  color: #fb923c;
}
.radio-extra__btn .material-symbols-rounded { font-size: 16px; }

/* ── Stats strip ── */
.radio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0 0;
}
@media (max-width: 700px) {
  .radio-stats { grid-template-columns: repeat(2, 1fr); }
}
.radio-stat {
  padding: 18px 16px;
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  display: flex; align-items: flex-start;
  gap: 12px;
  transition: all .2s;
}
.radio-stat:hover {
  border-color: rgba(251,146,60,.2);
  background: rgba(251,146,60,.04);
  transform: translateY(-2px);
}
.radio-stat__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(251,146,60,.12);
  color: #fb923c;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.radio-stat__icon .material-symbols-rounded { font-size: 20px; }
.radio-stat__content { min-width: 0; }
.radio-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.radio-stat__label {
  font-size: .7rem; color: rgba(255,255,255,.4);
  margin-top: 5px;
  letter-spacing: .03em;
}

/* ── Schedule / Up next ── */
.radio-schedule {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.radio-schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.radio-schedule-item {
  padding: 18px 20px;
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all .2s;
}
.radio-schedule-item:hover {
  border-color: rgba(251,146,60,.25);
  transform: translateY(-3px);
}
.radio-schedule-item--live {
  background: linear-gradient(135deg, rgba(251,146,60,.14), rgba(251,146,60,.03));
  border-color: rgba(251,146,60,.3);
}
.radio-schedule-item--live::before {
  content: 'ON NOW';
  position: absolute; top: 14px; right: 14px;
  font-size: .58rem; font-weight: 800;
  letter-spacing: .12em;
  padding: 3px 8px;
  background: #fb923c; color: #0a0a0a;
  border-radius: 99px;
}
.radio-schedule-item__time {
  font-size: .7rem; color: rgba(255,255,255,.4);
  font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.radio-schedule-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin: 0 0 4px;
}
.radio-schedule-item__host {
  font-size: .8rem; color: rgba(255,255,255,.48);
}

/* ── AdSense slot ── */
.radio-ad {
  display: block;
  margin: 48px auto 0;
  max-width: 970px;
  text-align: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.radio-ad__label {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 8px;
  display: block;
}
.radio-ad ins { display: block; min-height: 90px; }

/* ── Enhanced current track glass feel ── */
.radio-now-actions {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 8px;
}
.radio-now-actions__icon-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
}
.radio-now-actions__icon-btn:hover {
  background: rgba(251,146,60,.15); border-color: rgba(251,146,60,.3); color: #fb923c;
}
.radio-now-actions__icon-btn .material-symbols-rounded { font-size: 16px; }

/* ── Track rows — glass hover ── */
.radio-track {
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.radio-track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(251,146,60,.03), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
  pointer-events: none;
}
.radio-track:hover::after { transform: translateX(100%); }
.radio-track__actions {
  display: flex; gap: 6px; margin-left: 8px;
  opacity: 0; transition: opacity .15s;
}
.radio-track:hover .radio-track__actions { opacity: 1; }
.radio-track__action {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: none; border: none;
  color: rgba(255,255,255,.38);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
}
.radio-track__action:hover { background: rgba(255,255,255,.08); color: #fff; }
.radio-track__action .material-symbols-rounded { font-size: 16px; }

/* ── Keyboard shortcut tooltip ── */
.radio-kb-hint {
  position: fixed;
  bottom: 20px; left: 20px;
  padding: 10px 14px;
  background: rgba(15,15,20,.9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  backdrop-filter: blur(20px);
  color: rgba(255,255,255,.6);
  font-size: .74rem;
  display: flex; align-items: center; gap: 8px;
  z-index: 50;
  animation: kbHintShow .4s ease both;
}
.radio-kb-hint kbd {
  padding: 3px 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  color: #fff;
}
@keyframes kbHintShow { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; } }

/* ── Share popover ── */
.radio-share-pop {
  position: fixed;
  bottom: 20px; right: 20px;
  padding: 14px;
  background: rgba(15,15,20,.94);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  z-index: 51;
  display: none;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}
.radio-share-pop.open { display: flex; animation: kbHintShow .25s ease both; }
.radio-share-pop h5 {
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin: 0 0 4px;
}
.radio-share-pop__row {
  display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 6px 10px; gap: 8px;
}
.radio-share-pop__row code {
  flex: 1; font-size: .72rem; color: rgba(255,255,255,.68);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.radio-share-pop__copy {
  padding: 4px 10px; background: #fb923c; color: #0a0a0a;
  border: none; border-radius: 6px;
  font-size: .7rem; font-weight: 700; cursor: pointer;
  font-family: inherit; flex-shrink: 0;
}

/* ── Search filter for history ── */
.radio-history__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.radio-history__search {
  flex: 1; min-width: 200px; max-width: 320px;
  position: relative;
}
.radio-history__search .material-symbols-rounded {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 18px; color: rgba(255,255,255,.3);
  pointer-events: none;
}
.radio-history__search input {
  width: 100%;
  padding: 10px 14px 10px 42px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 99px;
  color: #fff;
  font-size: .84rem; font-family: inherit;
  outline: none; transition: all .2s;
}
.radio-history__search input:focus {
  background: rgba(255,255,255,.06);
  border-color: rgba(251,146,60,.3);
}
.radio-history__search input::placeholder { color: rgba(255,255,255,.3); }


/* =====================================================
   LIVE BANNER  (shown on /radio when AzuraCast is live)
   ===================================================== */
.radio-live-banner {
  position: fixed;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239,68,68,.18), rgba(251,146,60,.16));
  border: 1px solid rgba(239,68,68,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 14px 36px rgba(0,0,0,.45),
    0 0 32px rgba(239,68,68,.28);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  max-width: calc(100% - 32px);
}
.radio-live-banner:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 18px 44px rgba(0,0,0,.5),
    0 0 44px rgba(239,68,68,.4);
}
.radio-live-banner.is-entering {
  animation: radio-live-banner-in .65s cubic-bezier(.16,1,.3,1) backwards;
}
@keyframes radio-live-banner-in {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-12px) scale(.92); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0)     scale(1); }
}
.radio-live-banner__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(239,68,68,.7);
  animation: radio-live-banner-pulse 1.4s ease-out infinite;
}
@keyframes radio-live-banner-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(239,68,68,.7); }
  70%  { box-shadow: 0 0 0 14px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0    rgba(239,68,68,0); }
}
.radio-live-banner__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.radio-live-banner__text strong {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
}
.radio-live-banner__text span {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}
.radio-live-banner > .material-symbols-rounded {
  font-size: 20px;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .radio-live-banner {
    top: 76px;
    padding: 10px 14px 10px 12px;
    gap: 10px;
  }
  .radio-live-banner__text strong { font-size: .82rem; }
  .radio-live-banner__text span { font-size: .7rem; }
}

/* Highlight the on-air takeover button in the extra controls row */
.radio-extra__btn--onair {
  background: linear-gradient(90deg, rgba(251,146,60,.18), rgba(239,68,68,.18)) !important;
  border-color: rgba(251,146,60,.45) !important;
  color: #fff !important;
}
.radio-extra__btn--onair:hover {
  background: linear-gradient(90deg, rgba(251,146,60,.28), rgba(239,68,68,.28)) !important;
  border-color: rgba(251,146,60,.65) !important;
}
