:root{
  --bg: #070b12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --text: #eef4ff;
  --muted: rgba(238,244,255,0.74);
  --line: rgba(255,255,255,0.14);
  --brand: #1e88e5;      /* Jet Radio Blue */
  --brand2:#ff2aa6;      /* Jet Radio Magenta */
  --warn:#ffcc66;
  --danger:#ff3b6e;      /* Magenta-red accent */
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --focus: 0 0 0 3px rgba(30,136,229,.35);
}


* { box-sizing: border-box; }
html { scroll-padding-top: 80px; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(30,136,229,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(255,42,166,.14), transparent 60%),
    linear-gradient(180deg, #070b12 0%, #0b1220 45%, #070b12 100%);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width: 100%; display:block; }

.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip-link{
  position: absolute; left: 12px; top: -999px;
  background: #fff; color:#111; padding: 10px 12px; border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ top: 12px; outline: none; box-shadow: var(--focus); }

/* Header / Nav */
header{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(11,18,32,.92), rgba(11,18,32,.70));
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.brand{
  display:flex; align-items:center; gap: 12px;
  min-width: 210px;
}
.logo{
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.25);
  display:grid; place-items:center;
  overflow:hidden;
}
.logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
}
.brand h1{ font-size: 15px; margin: 0; letter-spacing: .6px; font-weight: 900; }
.brand p{ margin: 0; font-size: 12px; color: var(--muted); }

nav{ width: auto; }
nav ul{
  list-style: none; padding: 0; margin: 0;
  display:flex; align-items:center; gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
nav a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
  text-decoration: none;
}

.nav-cta{
  display:flex; gap: 10px; align-items:center;
  justify-content: flex-end;
}

.btn{
  appearance:none; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  display:inline-flex; align-items:center; gap: 10px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }
.btn:focus{ outline:none; box-shadow: var(--focus); }
.btn.primary{
  background: linear-gradient(135deg, rgba(30,136,229,.98), rgba(255,42,166,.92));
  border-color: rgba(255,255,255,.22);
  color: #06101a;
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(30,136,229,1), rgba(255,42,166,.98));
}
.btn.danger{
  background: rgba(255,107,107,.10);
  border-color: rgba(255,107,107,.28);
  color: #ffdede;
}
.btn.danger:hover{ background: rgba(255,107,107,.16); }

.menu-toggle{ display:none; }
.menu-btn{ display:none; }

/* Page layout */
main{ padding-bottom: 86px; } /* room for sticky player */
section{ padding: 16px 0; }

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-head{
  display:flex; justify-content: space-between; gap: 14px; align-items:flex-end;
  margin-bottom: 12px;
}
.section-head h2, .section-head h3{
  margin:0;
  letter-spacing: -0.2px;
}
.section-head h2{ font-size: 26px; }
.section-head h3{ font-size: 20px; }
.section-head p{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  max-width: 80ch;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.panel{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.panel h4{ margin: 0 0 6px; font-size: 15px; }
.panel p{ margin: 0; color: var(--muted); font-size: 13px; }

.badge{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.badge strong{ color: var(--text); }

.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.note{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 13px;
}

.helpbox{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,204,102,.28);
  background: rgba(255,204,102,.10);
  color: #ffe9bf;
  font-size: 13px;
}
.helpbox strong{ color: #fff; }

/* Hero (Home) - Premium */
.hero{ padding: 44px 0 24px; }
.hero-premium{
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 72px 0;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7,11,18,.92) 0%, rgba(11,18,32,.85) 50%, rgba(7,11,18,.92) 100%),
    radial-gradient(900px 400px at 20% 20%, rgba(30,136,229,.28), transparent 55%),
    radial-gradient(800px 350px at 90% 15%, rgba(255,42,166,.2), transparent 55%);
}
.hero-inner{ position: relative; z-index: 2; }
.hero-content{ max-width: 680px; }
.hero-premium .kicker{ margin-bottom: 8px; }
.hero-premium .hero-content h2{
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.hero-mission{
  font-size: 17px;
  line-height: 1.6;
  margin: 12px 0 24px;
}
.btn-lg{
  padding: 16px 26px;
  font-size: 15px;
  border-radius: 14px;
}
.hero-grid{
  display:grid; grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}
.hero-main{
  padding: 22px;
  overflow:hidden;
  position: relative;
  min-height: 320px;
}
.hero-main::before{
  content:"";
  position:absolute; inset: -2px;
  background:
    radial-gradient(700px 280px at 20% 10%, rgba(87,199,255,.22), transparent 60%),
    radial-gradient(600px 320px at 95% 15%, rgba(124,242,154,.16), transparent 60%);
  pointer-events:none;
  z-index: 0;
}
.kicker{
  display:inline-flex; gap: 10px; align-items:center;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}
.kicker .dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand2);
  box-shadow: 0 0 0 4px rgba(255,42,166,.18);
}
.hero h2{
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.6px;
}
.hero p{
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions{
  display:flex; gap: 10px; flex-wrap: wrap;
  margin-top: 16px;
}
.hero-meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.stat{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
}
.stat .num{ font-weight: 1000; font-size: 16px; letter-spacing: .3px; }
.stat .lbl{ font-size: 12px; color: var(--muted); }

.hero-side{
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.media{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(circle at 30% 25%, rgba(87,199,255,.22), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(124,242,154,.14), transparent 55%);
  min-height: 164px;
  position: relative;
}
.media::after{
  content:"";
  position:absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.22) 70%);
  pointer-events:none;
}
.media-label{
  position:absolute; left: 14px; bottom: 14px;
  font-weight: 1000; letter-spacing: .2px;
  z-index: 2;
}

/* Tables */
table{
  width: 100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
th, td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
  text-align: left;
  vertical-align: top;
}
th{ color: var(--muted); font-weight: 1000; background: rgba(0,0,0,.18); }
tr:last-child td{ border-bottom: none; }

/* Forms */
form{ display:grid; gap: 10px; }
label{ font-size: 12px; color: var(--muted); font-weight: 900; }
input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font-size: 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus{ box-shadow: var(--focus); border-color: rgba(87,199,255,.45); }
textarea{ min-height: 120px; resize: vertical; }
.form-row{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Sticky player bar */
.player-bar{
  position: sticky;
  bottom: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(11,18,32,.2), rgba(11,18,32,.92));
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.player{
  display:flex; align-items:center; justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.player-left{
  display:flex; align-items:center; gap: 12px;
  min-width: 260px;
}
.live-pill{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .4px;
}
.live-pill .blink{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(255,107,107,.20);
  animation: pulse 1.2s infinite ease-in-out;
}
@keyframes pulse{
  0%{ transform: scale(.95); opacity: .8; }
  50%{ transform: scale(1.12); opacity: 1; }
  100%{ transform: scale(.95); opacity: .8; }
}
.now-playing{
  display:flex; flex-direction: column;
  line-height: 1.2;
}
.now-playing span{ font-size: 12px; color: var(--muted); }
.now-playing strong{ font-size: 13px; }

.player audio{
  width: min(520px, 100%);
  border-radius: 999px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}
.player-right{
  display:flex; gap: 10px; align-items:center;
  justify-content: flex-end;
  min-width: 240px;
  flex-wrap: wrap;
}

/* Footer */
footer{
  border-top: 1px solid var(--line);
  padding: 22px 0 18px;
  color: var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  align-items: start;
}
.footer-links{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .player{ flex-direction: column; align-items: stretch; }
  .player-left, .player-right{ min-width: auto; justify-content: space-between; }
  .player audio{ width: 100%; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-links{ justify-content: flex-start; }
}

@media (max-width: 860px){
  nav ul{ display:none; }
  .menu-btn{ display:inline-flex; }
  .menu-toggle:checked ~ .nav nav ul{
    display:flex;
    margin-top: 10px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.22);
    width: 100%;
    justify-content: flex-start;
  }
  nav{ width: 100%; }
  .nav-cta{ width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce){
  .btn{ transition:none; }
  .live-pill .blink{ animation:none; }
}


/* =======================
   Unified Card System
   (Match Radio Card look)
======================= */
.premium-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.premium-card.pad{ padding: 16px; }

/* Gallery cards */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .gallery-grid{ grid-template-columns: 1fr; }
}
.gallery-card{
  overflow:hidden;
}
.gallery-card img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}
@media (max-width: 640px){
  .gallery-card img{ height: 240px; }
}

/* Make default .panel closer to premium-card (without breaking layout) */
.panel{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Listen Live side-by-side layout */
.listen-grid{ align-items: start; }
@media (max-width: 980px){
  .listen-grid{ grid-template-columns: 1fr; }
}


/* ========= Option 1: Compact Premium ========= */
.section-head{ margin-bottom: 10px; }

/* Equalize Listen Live cards */
.listen-grid{
  align-items: stretch;
}
.listen-grid .premium-card.pad{
  min-height: 420px; /* keeps radio + tv visually aligned */
}
@media (max-width: 980px){
  .listen-grid .premium-card.pad{ min-height: auto; }
}

/* TV fixed height (compact broadcast) */
.tv-frame{
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  background:#000;
}
.tv-frame video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Gallery: consistent premium cards */
.gallery-card img{
  height: 300px;
  transition: transform .18s ease;
}
.gallery-card:hover img{
  transform: scale(1.03);
}
@media (max-width: 640px){
  .gallery-card img{ height: 220px; }
}

/* Welcome, Schedule, Support sections */
.welcome-section,
.schedule-section,
.support-section,
.who-serve-section{ padding: 32px 0; }
.welcome-card,
.schedule-card,
.support-card,
.who-serve-card,
.get-help-card{
  padding: 24px;
}
.welcome-card h3,
.who-serve-card h3,
.get-help-card h3{ margin: 0 0 12px; font-size: 20px; }
.welcome-card p,
.who-serve-card p,
.get-help-card p{ margin: 0 0 12px; color: var(--muted); line-height: 1.65; }
.who-serve-card ul,
.get-help-card ul{
  margin: 12px 0;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.8;
}
.who-serve-card li{ margin-bottom: 6px; }
.support-card .btn{ margin-right: 8px; margin-bottom: 8px; }

/* Listen Live grid */
.listen-section{ padding: 32px 0; }
.listen-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}
@media (max-width: 980px){
  .listen-grid{ grid-template-columns: 1fr; }
}
.listen-card{
  padding: 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.listen-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* TV frame */
.tv-frame{
  flex: 1;
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.12);
}
.tv-frame video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Radio card */
.radio-card {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  --accent: var(--brand2);
  --text-color: var(--text);
  --text-muted: var(--muted);
}
#radio-player {
  display: flex;
  gap: 14px;
  color: var(--text-color, #fff);
  font-family: inherit;
  align-items: center;
}
.radio-left img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}
.radio-center { flex: 1; min-width: 0; }
.radio-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.radio-badge {
  background: var(--accent, #22c55e);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .4px;
}
.waveform {
  display: flex;
  gap: 3px;
  height: 14px;
  align-items: flex-end;
}
.waveform span {
  width: 3px;
  background: var(--accent, #22c55e);
  animation: wave 1s infinite ease-in-out;
}
.waveform span:nth-child(2) { animation-delay: .1s }
.waveform span:nth-child(3) { animation-delay: .2s }
.waveform span:nth-child(4) { animation-delay: .3s }
.waveform span:nth-child(5) { animation-delay: .4s }
@keyframes wave {
  0%,100% { height: 4px }
  50% { height: 14px }
}
#radio-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-muted, #cbd5e1);
}
.radio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
#playPause {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--accent, #22c55e);
  color: #000;
  font-size: 16px;
  cursor: pointer;
  font-weight: 900;
}
#volume {
  flex: 1;
  height: 4px;
  appearance: none;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
}
#volume::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--accent, #22c55e);
  border-radius: 50%;
  cursor: pointer;
}

/* Section link styling */
.section-head a{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-head a:hover{ color: var(--brand2); }

/* ========== HOME PAGE PREMIUM ========== */
.welcome-section{ padding: 40px 0 32px; }
.welcome-card{
  padding: 32px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 48px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.welcome-card p:last-of-type{ margin-bottom: 0; }
.hero-stats{ margin-top: 28px; gap: 16px; }
.hero-stats .stat{
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.2);
  transition: border-color .2s ease, transform .2s ease;
}
.hero-stats .stat:hover{
  border-color: rgba(255,42,166,.3);
  transform: translateY(-2px);
}
.hero-stats .stat .num{ font-size: 18px; }
.hero-stats .stat .lbl{ font-size: 13px; }

/* Quick links grid */
.home-quick-links{ margin-top: 32px; }
.home-quick-links h4{ margin: 0 0 16px; font-size: 16px; color: var(--muted); font-weight: 800; letter-spacing: .3px; }
.quick-links-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px){ .quick-links-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .quick-links-grid{ grid-template-columns: 1fr; } }
.quick-link-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: all .2s ease;
  text-decoration: none;
}
.quick-link-card:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,42,166,.25);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.quick-link-icon{ font-size: 20px; }

/* Listen Live - Premium side-by-side */
.listen-section{ padding: 44px 0; }
.listen-section .section-head h3{ font-size: 22px; }
.live-badge{ background: rgba(34,197,94,.2); border-color: rgba(34,197,94,.4); color: #86efac; }
.live-dot{
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s ease-in-out infinite;
}
.listen-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}
.listen-card{
  padding: 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 12px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.listen-card:hover{
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.listen-card-head h4{ font-size: 16px; font-weight: 900; }
.tv-frame{
  flex: 1;
  min-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 30px rgba(0,0,0,.5);
}
@media (max-width: 980px){
  .listen-grid{ grid-template-columns: 1fr; }
  .listen-card{ min-height: 300px; }
}

/* Schedule premium */
.schedule-section{ padding: 44px 0; }
.schedule-premium{
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 48px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.schedule-intro{ margin: 0 0 20px; color: var(--muted); line-height: 1.6; }
.schedule-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px){ .schedule-grid{ grid-template-columns: 1fr; } }
.schedule-item{
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.schedule-time{ font-weight: 900; font-size: 14px; }
.schedule-desc{ font-size: 13px; color: var(--muted); }

/* Support section premium */
.support-section{ padding: 44px 0 56px; }
.support-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px){ .support-grid{ grid-template-columns: 1fr; } }
.support-card h4{ margin: 0 0 10px; font-size: 17px; }
.support-card p{ margin: 0 0 16px; color: var(--muted); line-height: 1.6; }
.support-actions{ display: flex; gap: 12px; flex-wrap: wrap; }
.support-cta .btn{ margin-top: 8px; }
.support-card{
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
