/* ===========================================================
   ON-AIR LIVE TAKEOVER  (/onair)
   Majestic full-screen treatment that triggers when AzuraCast
   reports a live broadcast is happening.
   =========================================================== */

:root {
  --accent:        #fb923c;
  --accent-deep:   #ea7c1d;
  --accent-glow:   rgba(251,146,60,.55);
  --live-red:      #ef4444;
  --live-red-glow: rgba(239,68,68,.55);
  --bg-deep:       #07070a;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
.onair-body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: #fff;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

/* The [hidden] attribute MUST always win — class-level display rules below
   would otherwise override it and leave stale screens visible. */
[hidden] { display: none !important; }

/* =====================================================
   BACKGROUND LAYERS
   ===================================================== */
.onair-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.onair-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  mix-blend-mode: screen;
  animation: onair-orb-drift 26s ease-in-out infinite alternate;
}
.onair-bg__orb--1 {
  width: 60vw;
  height: 60vw;
  top: -20vw;
  left: -20vw;
  background: radial-gradient(circle, rgba(251,146,60,.55), transparent 70%);
  animation-delay: -3s;
}
.onair-bg__orb--2 {
  width: 50vw;
  height: 50vw;
  bottom: -15vw;
  right: -15vw;
  background: radial-gradient(circle, rgba(239,68,68,.55), transparent 70%);
  animation-delay: -10s;
}
.onair-bg__orb--3 {
  width: 45vw;
  height: 45vw;
  top: 20vh;
  right: 20vw;
  background: radial-gradient(circle, rgba(168,85,247,.4), transparent 70%);
  animation-delay: -16s;
}
@keyframes onair-orb-drift {
  0%   { transform: translate(0, 0)        scale(1); }
  50%  { transform: translate(6vw, -4vh)   scale(1.1); }
  100% { transform: translate(-4vw, 5vh)   scale(.95); }
}

.onair-bg__art {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: blur(80px) saturate(1.6);
  opacity: 0;
  transition: opacity 1s ease, transform 14s ease-out;
  transform: scale(1.05);
}
.onair-bg__art.has-art {
  opacity: .25;
  transform: scale(1.18);
}

/* SVG noise grain */
.onair-bg__noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.7'/></svg>");
}

/* =====================================================
   PARTICLES (rising musical notes / sparkles)
   ===================================================== */
.onair-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.onair-particle {
  position: absolute;
  bottom: -8vh;
  color: rgba(251,146,60,.85);
  text-shadow:
    0 0 10px rgba(251,146,60,.55),
    0 0 24px rgba(251,146,60,.32);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  user-select: none;
  --drift: 0vw;
  animation: onair-rise linear forwards;
  will-change: transform, opacity;
}
@keyframes onair-rise {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(.6);
    opacity: 0;
  }
  10% {
    opacity: .9;
    transform: translate3d(calc(var(--drift) * .12), -10vh, 0) rotate(8deg) scale(1);
  }
  100% {
    transform: translate3d(var(--drift), -110vh, 0) rotate(40deg) scale(1.05);
    opacity: 0;
  }
}

/* =====================================================
   TOP BAR
   ===================================================== */
.onair-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  pointer-events: none;
}
.onair-topbar > * { pointer-events: auto; }
.onair-topbar__logo {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 12px;
  border-radius: 12px;
  transition: all .2s;
}
.onair-topbar__logo:hover { border-color: rgba(251,146,60,.4); }
.onair-topbar__logo img {
  height: 22px;
  width: auto;
  display: block;
}
.onair-topbar__center {
  display: flex;
  justify-content: center;
}

/* ON AIR badge — pulsing red */
.onair-onair {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .35s;
}
.onair-onair[data-state="live"] {
  background: linear-gradient(90deg, rgba(239,68,68,.18), rgba(251,146,60,.18));
  border-color: rgba(239,68,68,.5);
  color: #fff;
  box-shadow:
    0 0 24px rgba(239,68,68,.35),
    inset 0 0 12px rgba(239,68,68,.18);
}
.onair-onair[data-state="offair"] { color: rgba(255,255,255,.55); }
.onair-onair[data-state="checking"] { color: rgba(255,255,255,.7); }
.onair-onair__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  flex-shrink: 0;
  position: relative;
}
.onair-onair[data-state="live"] .onair-onair__dot {
  background: var(--live-red);
  box-shadow: 0 0 0 0 var(--live-red-glow);
  animation: onair-pulse-dot 1.4s ease-out infinite;
}
@keyframes onair-pulse-dot {
  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); }
}

.onair-topbar__actions {
  display: flex;
  gap: 8px;
}
.onair-iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .2s;
}
.onair-iconbtn:hover {
  background: rgba(251,146,60,.18);
  border-color: rgba(251,146,60,.45);
  color: #fff;
}
.onair-iconbtn .material-symbols-rounded { font-size: 22px; }

/* =====================================================
   STAGE
   ===================================================== */
.onair-stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 64px;
}

/* =====================================================
   CHECKING STATE
   ===================================================== */
.onair-checking {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.onair-checking__pulse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 32px var(--accent-glow);
  animation: onair-checking 1.5s ease-in-out infinite;
}
@keyframes onair-checking {
  0%, 100% { transform: scale(.6); opacity: .35; }
  50%      { transform: scale(1.05); opacity: 1; }
}
.onair-checking__label {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}

/* =====================================================
   LIVE STATE — the big moment
   ===================================================== */
.onair-live {
  width: 100%;
  max-width: 1080px;
}
.onair-live__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.onair-live__eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: -28px;
}
.onair-live__eyebrow .material-symbols-rounded {
  font-size: 18px;
  color: var(--accent);
}

/* Big headline */
.onair-live__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: .98;
  margin: 0;
  color: #fff;
  letter-spacing: -.02em;
  text-shadow: 0 6px 28px rgba(0,0,0,.35);
}
.onair-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
}
.onair-live.is-entering .onair-line {
  animation: onair-line-rise .9s cubic-bezier(.16, 1, .3, 1) forwards;
}
.onair-live.is-entering .onair-line--1 { animation-delay: .15s; }
.onair-live.is-entering .onair-line--2 { animation-delay: .35s; }
.onair-live.is-entering .onair-line--3 { animation-delay: .55s; }
@keyframes onair-line-rise {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
.onair-onair-text {
  font-style: italic;
  background: linear-gradient(90deg, var(--live-red), var(--accent), var(--live-red));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: onair-shine 3.8s linear infinite;
  text-shadow: 0 0 64px rgba(251,146,60,.45);
}
@keyframes onair-shine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Floating album art */
.onair-art {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  margin: 0 auto;
  justify-self: end;
}
.onair-art__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(251,146,60,.18), rgba(239,68,68,.18));
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 120px rgba(251,146,60,.25);
  animation: onair-art-float 5s ease-in-out infinite;
}
.onair-art__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.onair-art__inner.is-changing {
  animation:
    onair-art-float 5s ease-in-out infinite,
    onair-art-flash .9s ease-out;
}
@keyframes onair-art-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(.6deg); }
}
@keyframes onair-art-flash {
  0%   { transform: scale(.94); opacity: .4; filter: blur(8px); }
  100% { transform: scale(1);   opacity: 1;  filter: blur(0); }
}
.onair-art__placeholder {
  font-size: 5rem !important;
  color: var(--accent);
  text-shadow: 0 0 32px rgba(251,146,60,.5);
}

/* Pulsing concentric rings around the art */
.onair-art__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.onair-art__rings span {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(251,146,60,.4);
  animation: onair-ring 2.6s ease-out infinite;
  opacity: 0;
}
.onair-art__rings span:nth-child(2) { animation-delay: .65s; }
.onair-art__rings span:nth-child(3) { animation-delay: 1.3s; }
.onair-art__rings span:nth-child(4) { animation-delay: 1.95s; }
@keyframes onair-ring {
  0%   { transform: scale(1);   opacity: .8; border-color: rgba(239,68,68,.6); }
  80%  { opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; border-color: rgba(251,146,60,0); }
}

/* Subtle moving shine across the album art */
.onair-art__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  background-size: 250% 250%;
  animation: onair-shine-sweep 5.5s ease-in-out infinite;
  mix-blend-mode: overlay;
}
@keyframes onair-shine-sweep {
  0%   { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

/* Now-playing meta */
.onair-now {
  grid-column: 1 / 2;
  margin-top: 16px;
}
.onair-now__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0;
  animation: onair-fade-up .7s ease forwards .9s;
}
.onair-now__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
  line-height: 1.15;
  opacity: 0;
  animation: onair-fade-up .7s ease forwards 1.05s;
}
.onair-now__artist {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  opacity: 0;
  animation: onair-fade-up .7s ease forwards 1.2s;
}
@keyframes onair-fade-up {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* DJ chip */
.onair-dj {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: onair-fade-up .7s ease forwards 1.4s;
}
.onair-dj__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--live-red));
  color: #fff;
  flex-shrink: 0;
}
.onair-dj__avatar .material-symbols-rounded { font-size: 18px; }
.onair-dj__label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 700;
}
.onair-dj__name {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}

/* Equalizer bars */
.onair-eq {
  grid-column: 2 / 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 60px;
  margin-top: 8px;
  opacity: 0;
  animation: onair-fade-up .7s ease forwards .8s;
}
.onair-eq span {
  width: 5px;
  background: linear-gradient(to top, var(--accent), var(--live-red));
  border-radius: 3px 3px 0 0;
  height: 20%;
  animation: onair-eq-bar 1.1s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(251,146,60,.4);
}
.onair-eq span:nth-child(2)  { animation-delay: -.10s; }
.onair-eq span:nth-child(3)  { animation-delay: -.20s; }
.onair-eq span:nth-child(4)  { animation-delay: -.30s; }
.onair-eq span:nth-child(5)  { animation-delay: -.40s; }
.onair-eq span:nth-child(6)  { animation-delay: -.50s; }
.onair-eq span:nth-child(7)  { animation-delay: -.60s; }
.onair-eq span:nth-child(8)  { animation-delay: -.70s; }
.onair-eq span:nth-child(9)  { animation-delay: -.80s; }
.onair-eq span:nth-child(10) { animation-delay: -.90s; }
.onair-eq span:nth-child(11) { animation-delay: -.05s; }
.onair-eq span:nth-child(12) { animation-delay: -.15s; }
.onair-eq span:nth-child(13) { animation-delay: -.25s; }
.onair-eq span:nth-child(14) { animation-delay: -.35s; }
.onair-eq span:nth-child(15) { animation-delay: -.45s; }
.onair-eq span:nth-child(16) { animation-delay: -.55s; }
.onair-eq span:nth-child(17) { animation-delay: -.65s; }
.onair-eq span:nth-child(18) { animation-delay: -.75s; }
.onair-eq span:nth-child(19) { animation-delay: -.85s; }
.onair-eq span:nth-child(20) { animation-delay: -.95s; }
.onair-eq span:nth-child(21) { animation-delay: -.12s; }
.onair-eq span:nth-child(22) { animation-delay: -.22s; }
.onair-eq span:nth-child(23) { animation-delay: -.32s; }
.onair-eq span:nth-child(24) { animation-delay: -.42s; }
.onair-eq span:nth-child(25) { animation-delay: -.52s; }
@keyframes onair-eq-bar {
  0%, 100% { height: 18%; }
  20%      { height: 78%; }
  40%      { height: 32%; }
  60%      { height: 96%; }
  80%      { height: 48%; }
}

/* Stats row */
.onair-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  animation: onair-fade-up .7s ease forwards 1.55s;
}
.onair-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.onair-stat .material-symbols-rounded {
  font-size: 18px;
  color: var(--accent);
  position: relative;
  top: 3px;
}
.onair-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.onair-stat--listeners .onair-stat__num {
  background: linear-gradient(90deg, var(--accent), var(--live-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.onair-stat__label {
  font-weight: 500;
  letter-spacing: .04em;
}

/* CTA row */
.onair-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
  opacity: 0;
  animation: onair-fade-up .7s ease forwards 1.7s;
}
.onair-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px 14px 22px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .02em;
  transition: all .25s;
  box-shadow:
    0 12px 32px rgba(251,146,60,.35),
    0 0 0 1px rgba(255,255,255,.08) inset;
}
.onair-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(251,146,60,.45),
    0 0 0 1px rgba(255,255,255,.12) inset;
}
.onair-cta__btn.is-playing {
  background: linear-gradient(90deg, var(--live-red), #b91c1c);
  box-shadow: 0 12px 32px rgba(239,68,68,.4);
}
.onair-cta__btn .material-symbols-rounded { font-size: 22px; }
.onair-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: all .2s;
}
.onair-cta__link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}
.onair-cta__link .material-symbols-rounded { font-size: 16px; }


/* =====================================================
   OFF-AIR STATE
   ===================================================== */
.onair-offair {
  width: 100%;
  max-width: 540px;
  text-align: center;
}
.onair-offair__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onair-offair__icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
  position: relative;
}
.onair-offair__icon .material-symbols-rounded {
  font-size: 40px;
  color: rgba(255,255,255,.5);
}
.onair-offair__icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(251,146,60,.18), transparent 60%);
  pointer-events: none;
  opacity: .6;
}
.onair-offair__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.onair-offair__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
}
.onair-offair__headline em {
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.onair-offair__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 440px;
}
.onair-offair__autodj {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.onair-offair__autodj strong {
  color: #fff;
  font-weight: 600;
  font-style: italic;
}
.onair-offair__autodj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: onair-pulse-dot 1.8s ease-out infinite;
  flex-shrink: 0;
}
.onair-offair__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s;
}
.onair-offair__cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(251,146,60,.4);
}
.onair-offair__cta .material-symbols-rounded { font-size: 18px; }


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 860px) {
  .onair-live__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .onair-live__eyebrow { justify-content: center; }
  .onair-art { max-width: 280px; justify-self: center; }
  .onair-now { text-align: center; }
  .onair-eq { grid-column: 1; }
  .onair-stats { justify-content: center; }
  .onair-cta { justify-content: center; }
  .onair-dj { margin: 18px auto 0; }
}
@media (max-width: 540px) {
  .onair-stage { padding: 88px 18px 48px; }
  .onair-topbar { padding: 14px 16px; }
  .onair-onair { padding: 8px 12px; font-size: .72rem; letter-spacing: .14em; gap: 8px; }
  .onair-iconbtn { width: 36px; height: 36px; }
  .onair-art { max-width: 220px; }
  .onair-stats { gap: 20px; }
  .onair-stat__num { font-size: 1.3rem; }
}

/* Reduced motion — kill non-essential animation */
@media (prefers-reduced-motion: reduce) {
  .onair-bg__orb,
  .onair-art__inner,
  .onair-art__rings span,
  .onair-art__shine,
  .onair-onair-text,
  .onair-eq span,
  .onair-particle,
  .onair-onair__dot,
  .onair-offair__autodj-dot {
    animation: none !important;
  }
  .onair-bg__art { transition: none; }
  .onair-line { opacity: 1; transform: none; }
  .onair-now__label,
  .onair-now__title,
  .onair-now__artist,
  .onair-eq,
  .onair-dj,
  .onair-stats,
  .onair-cta { opacity: 1; animation: none; }
}
