/* ═══════════════════════════════════════════════
   NovaStar Radio 1 — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --black:      #020408;
  --deep:       #050d1a;
  --navy:       #0a1628;
  --blue-dark:  #0d2040;
  --blue:       #1a4080;
  --blue-mid:   #1e5fc8;
  --blue-bright:#2d8fff;
  --cyan:       #00c8ff;
  --cyan-light: #80e8ff;
  --white:      #e8f4ff;
  --glow:       rgba(0,200,255,.4);
  --glow2:      rgba(45,143,255,.3);
  --font-display:'Orbitron', sans-serif;
  --font-body:   'Exo 2', sans-serif;
  --font-sub:    'Rajdhani', sans-serif;
  --player-h:    80px;
  --nav-h:       52px;
  --header-h:    calc(var(--player-h) + var(--nav-h));
  --radius:      12px;
  --transition:  .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}

/* ─── Custom Cursor ─── */
#cursor {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--cyan);
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--glow);
  transition: width .15s, height .15s;
}
#cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(0,200,255,.5);
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
}
body:hover #cursor { opacity: 1; }

/* ─── Starfield ─── */
#starfield { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ─── PLAYER BAR ─── */
#player-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--player-h); z-index: 1000;
  display: flex; align-items: center; padding: 0 20px; gap: 16px;
  background: linear-gradient(180deg, rgba(2,4,8,.98), rgba(5,13,26,.96));
  border-bottom: 1px solid rgba(0,200,255,.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,.8);
}
.player-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.player-logo img { height: 50px; width: 50px; object-fit: contain; filter: drop-shadow(0 0 8px var(--cyan)); }
.player-logo-text {
  font-family: var(--font-display); font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; line-height: 1.25;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.player-art-wrap {
  width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
  overflow: hidden; border: 1px solid rgba(0,200,255,.35);
  box-shadow: 0 0 12px var(--glow); background: var(--navy);
}
.player-art-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.player-track-info { flex: 1; min-width: 0; }
.player-now-label {
  font-family: var(--font-sub); font-size: .58rem; letter-spacing: .2em;
  color: var(--cyan); text-transform: uppercase;
}
.player-track-title {
  font-size: .88rem; font-weight: 700; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-track-artist {
  font-size: .74rem; color: var(--cyan-light); opacity: .8;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Visualizer */
.player-viz { display: flex; align-items: flex-end; gap: 3px; height: 28px; flex-shrink: 0; }
.viz-bar {
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--blue-bright));
  animation: vizPulse var(--d,.8s) ease-in-out infinite alternate;
  box-shadow: 0 0 5px var(--glow);
}
@keyframes vizPulse {
  from { height: 3px; opacity: .35; }
  to   { height: var(--h,20px); opacity: 1; }
}

/* Player controls */
.player-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ctrl-btn {
  background: none; border: none; cursor: none;
  color: var(--cyan-light); font-size: 1rem;
  transition: color var(--transition), transform .1s;
  display: flex; align-items: center;
}
.ctrl-btn:hover { color: var(--cyan); transform: scale(1.2); }
.play-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  border: none; cursor: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  box-shadow: 0 0 20px var(--glow), 0 0 40px var(--glow2);
  transition: box-shadow var(--transition), transform .1s;
}
.play-btn:hover { box-shadow: 0 0 30px var(--cyan), 0 0 60px var(--glow); transform: scale(1.05); }
.play-btn .pause-icon { display: none; }
.play-btn.playing .play-icon { display: none; }
.play-btn.playing .pause-icon { display: inline; }

.volume-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.vol-icon { font-size: .85rem; color: var(--cyan-light); }
.vol-slider {
  -webkit-appearance: none; width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan) 70%, rgba(255,255,255,.15) 70%);
  outline: none; cursor: none;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--glow); cursor: none;
}
.live-badge {
  font-family: var(--font-display); font-size: .52rem; font-weight: 700;
  letter-spacing: .15em; padding: 3px 10px; border-radius: 20px;
  background: linear-gradient(135deg, #c00, #f44); color: #fff; flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 6px #c00; }
  50%      { box-shadow: 0 0 18px #f44, 0 0 32px rgba(255,60,60,.4); }
}

/* ─── NAVIGATION ─── */
#main-nav {
  position: fixed; top: var(--player-h); left: 0; right: 0;
  height: var(--nav-h); z-index: 999;
  background: rgba(5,13,26,.88);
  border-bottom: 1px solid rgba(0,200,255,.1);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  height: 100%; display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 0 20px;
}
.nav-link {
  font-family: var(--font-display); font-size: .58rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(200,230,255,.6); text-decoration: none;
  padding: 8px 16px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px; background: var(--cyan);
  transition: left .2s, right .2s;
}
.nav-link:hover, .nav-link.active { color: var(--cyan); background: rgba(0,200,255,.07); }
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(5,13,26,.97); border: 1px solid rgba(0,200,255,.2);
  border-radius: 10px; overflow: hidden; min-width: 170px;
  box-shadow: 0 12px 40px rgba(0,0,0,.7);
  backdrop-filter: blur(16px);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 12px 18px;
  font-family: var(--font-display); font-size: .58rem; letter-spacing: .15em;
  color: rgba(200,230,255,.7); text-decoration: none; text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover { background: rgba(0,200,255,.1); color: var(--cyan); }

/* ─── MAIN CONTENT ─── */
#main-content {
  position: relative; z-index: 1;
  padding-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 70px 0; }

/* Page header */
.page-header { text-align: center; margin-bottom: 60px; }
.page-tag {
  display: block; font-family: var(--font-display); font-size: .6rem;
  letter-spacing: .3em; color: var(--cyan); text-transform: uppercase; margin-bottom: 14px;
}
.page-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

/* Dividers */
.glow-line {
  height: 2px; border-radius: 1px; margin: 48px 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px var(--glow);
}
.glass-divider {
  height: 1px; margin: 50px 0;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,.3), transparent);
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 24px; position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(29,95,200,.35),transparent 70%); top: -120px; left: -120px; }
.orb2 { width: 380px; height: 380px; background: radial-gradient(circle,rgba(0,200,255,.18),transparent 70%); bottom: -80px; right: -80px; animation-delay: -4s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(25px,-25px) scale(1.08); }
}
.hero-eyebrow {
  font-family: var(--font-display); font-size: .62rem; letter-spacing: .35em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 20px;
  animation: fadeUp .8s ease both;
}
.hero-logo-wrap { margin-bottom: 40px; animation: fadeUp .8s .2s ease both, logoPulse 4s 1.2s ease-in-out infinite; }
.hero-logo { width: min(300px,58vw); filter: drop-shadow(0 0 40px rgba(0,200,255,.5)); }
@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 40px rgba(0,200,255,.5)); }
  50%      { filter: drop-shadow(0 0 70px rgba(0,200,255,.85)) drop-shadow(0 0 120px rgba(45,143,255,.4)); }
}
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem, 7.5vw, 6.5rem); line-height: .95; letter-spacing: -.02em;
  background: linear-gradient(135deg,#fff 0%,var(--cyan-light) 40%,var(--cyan) 70%,var(--blue-bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: fadeUp .8s .35s ease both; margin-bottom: 10px;
}
.hero-sub {
  font-family: var(--font-sub); font-size: clamp(.95rem,2.5vw,1.4rem);
  font-weight: 300; letter-spacing: .28em; color: rgba(200,230,255,.55);
  text-transform: uppercase; animation: fadeUp .8s .5s ease both; margin-bottom: 55px;
}
.hero-stats { display: flex; gap: 55px; justify-content: center; flex-wrap: wrap; animation: fadeUp .8s .65s ease both; }
.stat .stat-num {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 900;
  background: linear-gradient(135deg,var(--cyan),var(--blue-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1;
}
.stat .stat-label {
  font-family: var(--font-sub); font-size: .68rem; letter-spacing: .2em;
  color: rgba(200,230,255,.45); text-transform: uppercase; margin-top: 5px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .52rem; letter-spacing: .2em;
  color: rgba(200,230,255,.35); text-transform: uppercase;
  animation: fadeUp .8s .9s ease both;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(0,200,255,.5); border-bottom: 2px solid rgba(0,200,255,.5);
  transform: rotate(45deg); animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translate(0,0)} 50%{transform:rotate(45deg) translate(4px,4px)} }

/* Content blocks (homepage) */
.content-blocks { display: flex; flex-direction: column; gap: 32px; padding-bottom: 80px; }
.content-block {
  padding: 36px 40px; border-radius: var(--radius);
  background: rgba(10,22,40,.7);
  border: 1px solid rgba(0,200,255,.12);
  transition: border-color var(--transition);
}
.content-block:hover { border-color: rgba(0,200,255,.28); }
.content-block h2 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--cyan); margin-bottom: 14px;
}
.content-block p { font-size: .95rem; line-height: 1.8; color: rgba(200,230,255,.75); }
.content-block img { max-width: 100%; border-radius: 10px; margin-top: 14px; }

/* ─── SHOWS ─── */
.shows-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 40px;
}
@media(max-width:680px){ .shows-grid { grid-template-columns: 1fr; } }

.show-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(10,22,40,.85);
  border: 1px solid rgba(0,200,255,.12);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default; display: flex; flex-direction: column;
}
.show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 28px rgba(0,200,255,.12);
  border-color: rgba(0,200,255,.3);
}
.show-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--navy);
}
.show-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform .4s;
  display: block;
}
.show-card:hover .show-card-img img { transform: scale(1.05); }
.show-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,.95) 100%);
}
.show-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.show-card-genre {
  font-family: var(--font-display); font-size: .5rem; letter-spacing: .2em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 8px;
}
.show-card-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.show-card-desc {
  font-size: .82rem; color: rgba(200,230,255,.55);
  line-height: 1.7; margin-bottom: 18px; flex: 1;
}
.show-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.show-card-host {
  display: flex; align-items: center; gap: 10px;
}
.show-host-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(0,200,255,.4);
  box-shadow: 0 0 10px var(--glow); background: var(--navy);
}
.show-host-name { font-size: .8rem; color: var(--cyan-light); }
.show-card-time {
  font-family: var(--font-sub); font-size: .78rem; color: rgba(200,230,255,.45);
  text-align: right;
}
.show-badge {
  font-family: var(--font-display); font-size: .5rem; letter-spacing: .15em;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
  background: rgba(0,200,255,.1); border: 1px solid rgba(0,200,255,.3);
  color: var(--cyan); display: inline-block; margin-bottom: 10px;
}

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.pagination a, .pagination span {
  font-family: var(--font-display); font-size: .6rem; font-weight: 700;
  letter-spacing: .1em; padding: 10px 16px; border-radius: 8px;
  border: 1px solid rgba(0,200,255,.2); color: var(--cyan-light);
  text-decoration: none; transition: all var(--transition);
}
.pagination a:hover { background: rgba(0,200,255,.1); border-color: var(--cyan); color: var(--cyan); }
.pagination .current {
  background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  border-color: transparent; color: #fff;
}

/* ─── SCHEDULE ─── */
.schedule-days { display: flex; flex-direction: column; gap: 40px; }
.schedule-day-header {
  font-family: var(--font-display); font-size: .7rem; letter-spacing: .25em;
  color: var(--cyan); text-transform: uppercase; padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,200,255,.15); margin-bottom: 8px;
}
.schedule-items { display: flex; flex-direction: column; gap: 2px; }
.sched-item {
  display: grid; grid-template-columns: 120px 1fr auto; align-items: center;
  gap: 18px; padding: 14px 20px; border-radius: 10px;
  border: 1px solid transparent; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.sched-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue-bright));
  border-radius: 2px; opacity: 0; transition: opacity var(--transition);
}
.sched-item:hover { background: rgba(0,200,255,.05); border-color: rgba(0,200,255,.15); }
.sched-item:hover::before { opacity: 1; }

/* LIVE NOW — white card style like the screenshot */
.sched-item.on-air {
  background: rgba(255,255,255,.95) !important;
  border-color: rgba(0,200,255,.6) !important;
  box-shadow: 0 0 40px rgba(0,200,255,.3), 0 8px 40px rgba(0,0,0,.5);
  transform: scale(1.01);
}
.sched-item.on-air::before { opacity: 1; }
.sched-item.on-air .sched-time  { color: #0a1628 !important; }
.sched-item.on-air .sched-show  { color: #0d2040 !important; }
.sched-item.on-air .sched-host  { color: #1a4080 !important; }

.sched-time {
  font-family: var(--font-display); font-size: .8rem; font-weight: 700;
  color: var(--cyan-light); flex-shrink: 0;
}
.sched-show { font-size: .95rem; font-weight: 600; color: var(--white); }
.sched-host { font-size: .75rem; color: rgba(200,230,255,.5); margin-top: 3px; }
.sched-tag {
  font-family: var(--font-display); font-size: .5rem; letter-spacing: .12em;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase; white-space: nowrap;
}
.sched-tag.genre { background: rgba(0,200,255,.1); border: 1px solid rgba(0,200,255,.25); color: var(--cyan); }
.sched-tag.on-air-tag {
  background: linear-gradient(135deg, #c00, #f44); color: #fff;
  animation: livePulse 2s infinite;
}

/* ─── NOW PLAYING ─── */
.now-playing-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
@media(max-width:700px){ .now-playing-hero { grid-template-columns: 1fr; } }
.album-art-large {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden; position: relative;
  border: 1px solid rgba(0,200,255,.3);
  box-shadow: 0 0 60px rgba(0,200,255,.25), 0 30px 80px rgba(0,0,0,.75);
}
.album-art-large img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.album-art-large:hover img { transform: scale(1.04); }
.now-info { display: flex; flex-direction: column; gap: 20px; }
.now-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .53rem; letter-spacing: .2em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
  background: rgba(0,200,255,.1); border: 1px solid rgba(0,200,255,.3);
  color: var(--cyan); width: fit-content;
}
.now-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #f44; animation: livePulse 1.5s infinite; }
.now-title { font-family: var(--font-display); font-size: clamp(1.5rem,3.5vw,2.6rem); font-weight: 900; color: var(--white); line-height: 1.1; }
.now-artist { font-size: 1.05rem; color: var(--cyan-light); font-weight: 300; }
.progress-track { height: 4px; border-radius: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--cyan));
  box-shadow: 0 0 10px var(--glow);
  width: 0%;
  transition: width 1s linear;
}
.progress-times { display: flex; justify-content: space-between; font-family: var(--font-sub); font-size: .75rem; color: rgba(200,230,255,.45); margin-top: 6px; }
.big-play-btn {
  flex: 1; padding: 15px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  border: none; color: #fff; font-family: var(--font-display);
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; cursor: none;
  transition: box-shadow var(--transition); box-shadow: 0 0 24px var(--glow);
}
.big-play-btn:hover { box-shadow: 0 0 44px var(--cyan); }
.stream-info-box {
  padding: 18px; border-radius: 10px;
  background: rgba(0,200,255,.04); border: 1px solid rgba(0,200,255,.12);
}
.stream-info-label {
  font-family: var(--font-display); font-size: .53rem; letter-spacing: .22em;
  color: var(--cyan); margin-bottom: 12px;
}
.stream-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  font-family: var(--font-sub); font-size: .82rem; color: rgba(200,230,255,.55);
}
.stream-info-grid span { color: var(--cyan-light); }
.big-viz { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 80px; margin: 40px 0; }
.big-viz-bar {
  border-radius: 3px 3px 0 0; flex: 1; max-width: 12px;
  background: linear-gradient(180deg, var(--cyan), var(--blue-mid));
  box-shadow: 0 0 8px var(--glow);
  animation: vizPulse var(--d,.7s) ease-in-out infinite alternate;
}

/* Track list */
.track-list { display: flex; flex-direction: column; gap: 2px; }
.track-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 18px; border-radius: 10px;
  background: rgba(255,255,255,.02); border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.track-item:hover { background: rgba(0,200,255,.06); border-color: rgba(0,200,255,.18); }
.track-num { font-family: var(--font-display); font-size: .68rem; color: rgba(200,230,255,.28); width: 22px; text-align: center; }
.track-thumb { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; background: var(--navy); border: 1px solid rgba(0,200,255,.2); flex-shrink: 0; }
.track-meta { flex: 1; min-width: 0; }
.track-name { font-size: .88rem; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-artist { font-size: .74rem; color: rgba(200,230,255,.5); margin-top: 2px; }
.track-time { font-family: var(--font-sub); font-size: .78rem; color: rgba(200,230,255,.35); flex-shrink: 0; }

/* ─── CONTACT ─── */
.contact-blocks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 50px; }
.contact-block-card {
  padding: 28px 24px; border-radius: 14px; text-align: center;
  background: rgba(10,22,40,.8); border: 1px solid rgba(0,200,255,.14);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-block-card:hover { border-color: rgba(0,200,255,.35); box-shadow: 0 0 28px rgba(0,200,255,.08); }
.contact-block-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-block-title { font-family: var(--font-display); font-size: .72rem; letter-spacing: .12em; color: var(--cyan); margin-bottom: 8px; }
.contact-block-val { font-size: .85rem; color: rgba(200,230,255,.68); white-space: pre-line; line-height: 1.6; }

/* Contact / Apply forms */
.form-card {
  background: rgba(10,22,40,.8); border: 1px solid rgba(0,200,255,.12);
  border-radius: 16px; padding: 40px;
}
.form-grid { display: grid; gap: 20px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media(max-width:600px){ .form-row-2 { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: var(--font-display); font-size: .58rem; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; }
.form-input, .form-textarea, .form-select {
  background: rgba(5,13,26,.9); border: 1px solid rgba(0,200,255,.2);
  border-radius: 10px; padding: 13px 16px;
  color: var(--white); font-family: var(--font-body); font-size: .9rem;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--cyan); box-shadow: 0 0 18px rgba(0,200,255,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: #0a1628; }
.submit-btn {
  padding: 16px 38px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  color: #fff; font-family: var(--font-display); font-size: .72rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  cursor: none; transition: box-shadow var(--transition), transform .1s;
  box-shadow: 0 0 28px rgba(0,200,255,.28); display: inline-block;
}
.submit-btn:hover { box-shadow: 0 0 48px rgba(0,200,255,.5); transform: translateY(-2px); }

/* Flash messages */
.flash { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: .88rem; }
.flash-success { background: rgba(0,200,100,.12); border: 1px solid rgba(0,200,100,.3); color: #5ff8a0; }
.flash-error   { background: rgba(255,60,60,.1);  border: 1px solid rgba(255,60,60,.3);  color: #ff8888; }
.flash-info    { background: rgba(0,200,255,.1);  border: 1px solid rgba(0,200,255,.3);  color: var(--cyan-light); }

/* ─── FOOTER ─── */
#main-footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(0,200,255,.12);
  margin-top: 80px;
  background: rgba(2,4,8,.95);
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 60px 24px 40px;
  display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 50px;
}
@media(max-width:800px){ .footer-inner { grid-template-columns: 1fr; gap: 36px; } }
.footer-logo-img { height: 60px; width: 60px; object-fit: contain; filter: drop-shadow(0 0 8px var(--glow)); margin-bottom: 10px; }
.footer-tagline { font-family: var(--font-sub); font-size: .78rem; letter-spacing: .2em; color: rgba(200,230,255,.4); text-transform: uppercase; }
.footer-section-title { font-family: var(--font-display); font-size: .6rem; letter-spacing: .22em; color: var(--cyan); text-transform: uppercase; margin-bottom: 14px; }
.footer-nl-desc { font-size: .8rem; color: rgba(200,230,255,.45); margin-bottom: 14px; line-height: 1.6; }
.nl-input-wrap { display: flex; gap: 0; border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,200,255,.25); }
.nl-input-wrap input {
  flex: 1; padding: 13px 16px; background: rgba(5,13,26,.9);
  border: none; color: var(--white); font-family: var(--font-body); font-size: .88rem; outline: none;
}
.nl-input-wrap button {
  padding: 13px 20px; background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  border: none; color: #fff; font-family: var(--font-display); font-size: .6rem;
  font-weight: 700; letter-spacing: .12em; cursor: none; white-space: nowrap;
  transition: opacity var(--transition);
}
.nl-input-wrap button:hover { opacity: .85; }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.footer-links a { font-size: .84rem; color: rgba(200,230,255,.55); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(200,230,255,.4); transition: color var(--transition); }
.footer-social a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding: 20px 24px 28px;
  border-top: 1px solid rgba(0,200,255,.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: .74rem; color: rgba(200,230,255,.4); text-decoration: none; transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--cyan); }
.footer-sep { color: rgba(200,230,255,.2); }
.footer-copy { font-size: .72rem; color: rgba(200,230,255,.25); }

/* Newsletter form standalone */
.newsletter-form .nl-input-wrap { max-width: 100%; }

/* ─── LEGAL PAGE ─── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-display); font-size: 2rem; color: var(--cyan); margin-bottom: 24px; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.1rem; color: var(--cyan-light); margin: 28px 0 10px; }
.legal-content p { font-size: .9rem; line-height: 1.85; color: rgba(200,230,255,.7); margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; color: rgba(200,230,255,.7); font-size: .9rem; line-height: 2; margin-bottom: 14px; }

/* ─── Apply page ─── */
.apply-intro { max-width: 700px; margin: 0 auto 40px; text-align: center; font-size: .9rem; color: rgba(200,230,255,.65); line-height: 1.8; }
.required-note { font-size: .75rem; color: rgba(200,230,255,.4); margin-top: 6px; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: rgba(0,200,255,.28); border-radius: 3px; }

/* ─── Utility ─── */
.text-cyan  { color: var(--cyan); }
.text-muted { color: rgba(200,230,255,.45); }
.mt-0 { margin-top: 0 !important; }
a { color: var(--cyan); }



/* ─── SPA page transition ─── */
#main-content {
  transition: opacity .15s ease;
}

/* ─── Mobile responsive ─── */
@media(max-width:768px) {
  /* Hide entire logo in player bar — frees up space */
  #player-bar .player-logo { display: none !important; }
  #player-logo { display: none !important; }
  #player-bar { padding: 0 12px; gap: 10px; }
  .player-viz { display: none; }
  .volume-wrap { display: none; }
  .player-art-wrap { width: 44px; height: 44px; }
  .player-track-title { font-size: .82rem; }
  .player-track-artist { font-size: .68rem; }
  .play-btn { width: 38px; height: 38px; font-size: .9rem; }
  .ctrl-btn { font-size: .85rem; }
  .live-badge { font-size: .46rem; padding: 3px 7px; }
  .schedule-day-header { font-size: .62rem; }
  .sched-item { grid-template-columns: 90px 1fr auto; gap: 12px; }
}

/* ═══════════════════════════════════════════
   ON AIR CARD — floating in hero, space theme
   ═══════════════════════════════════════════ */
.onair-card {
  position: absolute;
  top: 60px;
  right: 80px;
  z-index: 10;
  cursor: default;
  animation: onairEntrance .9s .4s cubic-bezier(.22,1,.36,1) both,
             onairFloat 6s 1.4s ease-in-out infinite,
             onairGlow  3s 1.4s ease-in-out infinite;
}

@keyframes onairEntrance {
  from { opacity: 0; transform: rotate(5deg) translateY(-28px) scale(.85); }
  to   { opacity: 1; transform: rotate(5deg) translateY(0)      scale(1); }
}
@keyframes onairFloat {
  0%,100% { transform: rotate(5deg) translateY(0); }
  50%      { transform: rotate(5deg) translateY(-10px); }
}
@keyframes onairGlow {
  0%,100% {
    filter: drop-shadow(0 8px 30px rgba(0,0,0,.7))
            drop-shadow(0 0 18px rgba(0,200,255,.2));
  }
  50% {
    filter: drop-shadow(0 8px 30px rgba(0,0,0,.7))
            drop-shadow(0 0 36px rgba(0,200,255,.55))
            drop-shadow(0 0 60px rgba(0,200,255,.2));
  }
}
.onair-card:hover {
  animation: onairFloatHover .35s ease forwards;
}
@keyframes onairFloatHover {
  to {
    transform: rotate(2deg) translateY(-6px) scale(1.04);
    filter: drop-shadow(0 12px 40px rgba(0,0,0,.75))
            drop-shadow(0 0 48px rgba(0,200,255,.65));
  }
}

/* Space-themed card — slightly brighter than page background */
.onair-card-inner {
  background: linear-gradient(160deg, #0e1f3a 0%, #0a1628 60%, #0d2245 100%);
  border: 1px solid rgba(0,200,255,.35);
  border-radius: 12px;
  padding: 0 0 14px;
  width: 172px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow:
    inset 0 1px 0 rgba(0,200,255,.15),
    inset 0 0 30px rgba(0,200,255,.04);
}

/* ON AIR label strip */
.onair-label {
  width: 100%;
  background: linear-gradient(135deg, #c00, #f02020);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-align: center;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 10px;
}
.onair-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: livePulse 1.2s ease-in-out infinite;
}

/* Show image */
.onair-img-wrap {
  width: 148px;
  height: 148px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(0,200,255,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  position: relative;
}
.onair-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}
.onair-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #0a1628, #0d2040);
}

/* Show name */
.onair-show-name {
  font-family: 'Orbitron', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  color: var(--cyan-light);
  text-align: center;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: .05em;
  padding: 0 10px;
}

/* Host row */
.onair-host {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .65rem;
  color: rgba(200,230,255,.55);
  margin-bottom: 6px;
  padding: 0 10px;
}
.onair-host-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(0,200,255,.35);
  flex-shrink: 0;
}

/* Time */
.onair-time {
  font-family: 'Orbitron', sans-serif;
  font-size: .48rem;
  color: var(--cyan);
  letter-spacing: .12em;
  font-weight: 700;
  text-align: center;
}

@media(max-width:900px) {
  .onair-card { right: 24px; top: 40px; }
}

.onair-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* ── Mobile: switch from floating card to inline horizontal banner ── */
@media(max-width:700px) {
  .onair-card {
    position: static;
    transform: none !important;
    animation: onairEntrance .6s .3s ease both, onairGlow 3s 1s ease-in-out infinite;
    margin: 28px auto 0;
    width: 90%;
    max-width: 360px;
  }
  @keyframes onairEntrance {
    from { opacity: 0; transform: translateY(16px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .onair-card-inner {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border-radius: 12px;
    gap: 0;
  }
  .onair-label {
    display: none; /* replaced by a small badge on the image */
  }
  .onair-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 10px 0 0 10px;
    margin-bottom: 0;
    flex-shrink: 0;
    position: relative;
  }
  /* ON AIR badge overlaid on image corner */
  .onair-img-wrap::after {
    content: '● ON AIR';
    position: absolute;
    top: 6px; left: 6px;
    background: linear-gradient(135deg, #c00, #f02020);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: .38rem;
    font-weight: 700;
    letter-spacing: .15em;
    padding: 3px 6px;
    border-radius: 4px;
  }
  .onair-img-wrap::before { display: none; }
  .onair-img { border-radius: 10px 0 0 10px; }
  /* Text block */
  .onair-show-name {
    font-size: .65rem;
    text-align: left;
    padding: 0 0 4px 0;
    margin-bottom: 4px;
  }
  .onair-host {
    padding: 0;
    margin-bottom: 3px;
    font-size: .62rem;
  }
  .onair-time {
    font-size: .52rem;
    text-align: left;
  }
  /* Wrapper for text items */
  /* Text block takes remaining space */
  .onair-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    gap: 3px;
  }
  .onair-show-name {
    font-size: .65rem;
    text-align: left;
    padding: 0;
    margin: 0;
  }
  .onair-host {
    padding: 0;
    margin: 0;
    font-size: .62rem;
  }
  .onair-time {
    font-size: .52rem;
    text-align: left;
  }
}


/* ═══════════════════════════════════════════
   MEDIA LIBRARY
   ═══════════════════════════════════════════ */

/* Show filter tabs */
.media-show-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.media-tab {
  font-family: var(--font-display); font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  padding: 9px 18px; border-radius: 8px;
  border: 1px solid rgba(0,200,255,.18); color: rgba(200,230,255,.55);
  display: flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.media-tab:hover, .media-tab.active {
  background: rgba(0,200,255,.1); border-color: var(--cyan); color: var(--cyan);
  text-decoration: none;
}
.media-tab-count {
  background: rgba(0,200,255,.15); border-radius: 20px;
  padding: 1px 7px; font-size: .5rem;
}

/* Show section */
.media-show-section {
  margin-bottom: 60px;
}
.media-show-header {
  display: flex; align-items: flex-start; gap: 22px; margin-bottom: 20px;
  padding: 24px; background: rgba(10,22,40,.6);
  border: 1px solid rgba(0,200,255,.12); border-radius: 14px;
}
.media-show-img {
  width: 90px; height: 90px; border-radius: 10px; object-fit: cover;
  border: 1px solid rgba(0,200,255,.2); flex-shrink: 0; background: var(--navy);
}
.media-show-img-placeholder {
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.media-show-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 900;
  background: linear-gradient(135deg,#fff,var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.media-show-host { font-size: .82rem; color: var(--cyan-light); margin-bottom: 8px; }
.media-show-desc { font-size: .82rem; color: rgba(200,230,255,.5); line-height: 1.6; margin-bottom: 8px; }
.media-show-meta { font-size: .72rem; color: rgba(200,230,255,.3); font-family: var(--font-display); letter-spacing: .1em; }

/* Recording row */
.media-recordings { display: flex; flex-direction: column; gap: 6px; }
.media-rec {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(5,13,26,.7); border: 1px solid rgba(0,200,255,.08);
  transition: background .2s, border-color .2s;
}
.media-rec:hover { background: rgba(10,22,40,.9); border-color: rgba(0,200,255,.2); }
.media-rec:target { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,200,255,.15); }

.media-rec-num {
  font-family: var(--font-display); font-size: .65rem; color: rgba(200,230,255,.25);
  width: 24px; text-align: center; flex-shrink: 0;
}
.media-rec-cover {
  width: 48px; height: 48px; border-radius: 8px; overflow: hidden;
  flex-shrink: 0; background: var(--navy); border: 1px solid rgba(0,200,255,.15);
}
.media-rec-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.media-rec-info { flex: 1; min-width: 0; }
.media-rec-title { font-weight: 700; font-size: .9rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-rec-meta  { font-size: .72rem; color: rgba(200,230,255,.38); margin-top: 2px; }
.media-rec-desc  { font-size: .76rem; color: rgba(200,230,255,.45); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Mini audio player in each row */
.media-player { margin-top: 8px; }
.media-player-track {
  height: 3px; border-radius: 2px; background: rgba(255,255,255,.08);
  cursor: pointer; overflow: hidden; position: relative;
}
.media-player-fill {
  height: 100%; border-radius: 2px; width: 0%;
  background: linear-gradient(90deg, var(--blue-mid), var(--cyan));
  transition: width .5s linear;
}
.media-player-times {
  display: flex; justify-content: space-between;
  font-family: var(--font-sub); font-size: .65rem; color: rgba(200,230,255,.35);
  margin-top: 3px;
}

/* Play button */
.media-rec-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.media-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  border: none; color: #fff; font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(0,200,255,.25); transition: box-shadow .2s, transform .1s;
  flex-shrink: 0;
}
.media-play-btn:hover { box-shadow: 0 0 28px rgba(0,200,255,.5); transform: scale(1.05); }
.media-play-btn .pause-ico { display: none; }
.media-play-btn.playing .play-ico  { display: none; }
.media-play-btn.playing .pause-ico { display: inline; }

.media-dl-btn {
  width: 36px; height: 36px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(0,200,255,.08); border: 1px solid rgba(0,200,255,.2);
  color: var(--cyan-light); text-decoration: none; font-size: .9rem;
  transition: background .2s; flex-shrink: 0;
}
.media-dl-btn:hover { background: rgba(0,200,255,.18); }

@media(max-width:600px) {
  .media-show-header { flex-direction: column; }
  .media-rec { padding: 12px; gap: 10px; }
  .media-rec-num { display: none; }
  .media-rec-title { font-size: .82rem; }
}


/* ═══════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(0,200,255,.25);
  border-radius: 8px;
  padding: 7px 8px;
  cursor: pointer;
  margin-left: auto;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.hamburger:hover {
  border-color: var(--cyan);
  background: rgba(0,200,255,.08);
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan-light);
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   MOBILE OVERLAY
   ═══════════════════════════════════════════ */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: rgba(2,4,8,.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .35s ease;
}
#mobile-nav-overlay.visible {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   MOBILE SLIDE PANEL
   ═══════════════════════════════════════════ */
#mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);

  /* Glass effect */
  background: rgba(8,18,36,.88);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-left: 1px solid rgba(0,200,255,.18);
  box-shadow: -8px 0 48px rgba(0,0,0,.7), inset 1px 0 0 rgba(0,200,255,.08);

  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#mobile-nav.open {
  transform: translateX(0);
}

/* Close button */
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0,200,255,.08);
  border: 1px solid rgba(0,200,255,.2);
  color: var(--cyan-light);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.mobile-nav-close:hover { background: rgba(0,200,255,.18); color: var(--cyan); }

/* Logo inside panel */
.mobile-nav-logo {
  display: flex;
  justify-content: center;
  padding: 40px 24px 24px;
  border-bottom: 1px solid rgba(0,200,255,.1);
}
.mobile-nav-logo img {
  height: 70px;
  filter: drop-shadow(0 0 16px rgba(0,200,255,.45));
}

/* Nav links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(200,230,255,.65);
  padding: 16px 28px;
  border-bottom: 1px solid rgba(0,200,255,.06);
  transition: color .2s, background .2s, padding-left .2s;
  position: relative;
}
.mobile-nav-links a::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cyan);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity .2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--cyan);
  background: rgba(0,200,255,.06);
  padding-left: 36px;
}
.mobile-nav-links a.active::before,
.mobile-nav-links a:hover::before {
  opacity: 1;
}

/* Footer strip */
.mobile-nav-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(0,200,255,.1);
}
.mobile-nav-station {
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  background: linear-gradient(135deg, var(--cyan), #2d8fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.mobile-nav-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  color: rgba(200,230,255,.35);
}
.mobile-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f44;
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SHOW HAMBURGER ON MOBILE, HIDE DESKTOP LINKS
   ═══════════════════════════════════════════ */
@media(max-width:768px) {
  /* Show hamburger */
  .hamburger { display: flex; }

  /* Hide desktop nav links and dropdown */
  #main-nav .nav-link,
  #main-nav .nav-dropdown { display: none; }

  /* Keep nav bar visible for hamburger */
  .nav-inner {
    justify-content: flex-end;
    padding: 0 16px;
  }
}

/* Fallback logo in show card — contain instead of cover */
.show-fallback-img {
  object-fit: contain !important;
  padding: 20px !important;
  background: var(--navy) !important;
}
