
:root{
  --bg:#070b14;
  --panel:rgba(255,255,255,.05);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --ok:#2bffb4;
  --warn:#ffb020;
  --bad:#ff3355;
  --r:22px;
  --shadow: 0 24px 80px rgba(0,0,0,.55);
  --glass: linear-gradient(180deg, rgba(10,16,32,.88) 0%, rgba(7,11,20,.78) 100%);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;color:var(--text);
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(43,211,255,.14), transparent 60%),
    radial-gradient(800px 420px at 85% 20%, rgba(36,255,154,.12), transparent 60%),
    linear-gradient(180deg,#070b14 0%,#050810 100%);
  padding-bottom:92px;
}
a{color:inherit}
.wrap{max-width:1280px;margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.tiny{font-size:11px;font-weight:900;letter-spacing:.06em}

.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(7,11,20,.82);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{display:flex;align-items:center;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;min-width:320px;text-decoration:none}
.brand__logo{
  width:86px;height:44px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(120% 120% at 30% 30%, rgba(43,211,255,.45), rgba(36,255,154,.14)),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.12));
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}
.brand__title{font-weight:900;letter-spacing:.06em;font-size:13px}
.brand__tag{color:var(--muted);font-size:12px;margin-top:2px}

.nav{display:flex;gap:10px;flex:1;justify-content:center;align-items:center}
.nav__link{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
}
.nav__link:hover{background:rgba(255,255,255,.06);color:var(--text)}
.nav__link.is-active{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.10);color:var(--text)}
.nav__link--btn{appearance:none}

.nav__item{position:relative}
.chev{opacity:.7;margin-left:6px;font-weight:900}

/* Dropdown PRO */
.dropdown{
  position:absolute;top:calc(100% + 12px);left:0;
  min-width:260px;padding:10px 0;
  background:var(--glass);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.65), 0 0 0 1px rgba(0,190,255,.08), inset 0 1px 0 rgba(255,255,255,.06);
  opacity:0;transform:translateY(10px) scale(.98);
  pointer-events:none;
  transition:opacity .18s ease, transform .22s ease;
  z-index:9999;
}
.dropdown a{
  display:flex;align-items:center;gap:10px;
  padding:12px 18px;
  color:rgba(255,255,255,.72);
  font-size:14px;font-weight:700;
  text-decoration:none;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.dropdown a + a{border-top:1px solid rgba(255,255,255,.05)}
.dropdown a:hover{
  color:rgba(255,255,255,.95);
  background:linear-gradient(90deg, rgba(0,190,255,.16) 0%, rgba(36,255,154,.10) 70%, rgba(255,176,32,.06) 100%);
  transform:translateX(6px);
  text-shadow:0 0 10px rgba(0,190,255,.25);
}
.nav__item:hover .dropdown{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}

/* Right */
.topbar__right{display:flex;justify-content:flex-end;min-width:180px}
.live__pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  background:rgba(255,51,85,.12);
  border:1px solid rgba(255,51,85,.35);
  font-weight:950;font-size:12px;letter-spacing:.06em;
}
.live__dot{width:8px;height:8px;border-radius:999px;background:var(--bad);box-shadow:0 0 0 6px rgba(255,51,85,.12)}

/* strip */
.strip{display:flex;justify-content:space-between;align-items:center;gap:14px;padding:10px 0 14px}
.strip__left{display:flex;gap:12px;align-items:center;flex:1;min-width:0}
.strip__right{display:flex;gap:10px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.chip{
  display:inline-flex;align-items:center;
  padding:10px 14px;border-radius:999px;
  background:linear-gradient(180deg, rgba(255,51,85,.95), rgba(255,51,85,.55));
  border:1px solid rgba(255,255,255,.10);
  font-weight:950;font-size:11px;letter-spacing:.10em;
}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  font-size:12px;font-weight:900;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.80);
}
.pill .dot{width:8px;height:8px;border-radius:999px;background:var(--warn);box-shadow:0 0 0 6px rgba(255,176,32,.12)}
#pillApi[data-state="ok"] .dot{background:var(--ok);box-shadow:0 0 0 6px rgba(43,255,180,.12)}
#pillApi[data-state="bad"] .dot{background:var(--bad);box-shadow:0 0 0 6px rgba(255,51,85,.12)}
#pillApi[data-state="warn"] .dot{background:var(--warn);box-shadow:0 0 0 6px rgba(255,176,32,.12)}

.ticker{position:relative;flex:1;min-width:0;height:40px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.04);overflow:hidden}
.ticker__fade{position:absolute;inset:0;background:linear-gradient(90deg, rgba(7,11,20,1) 0%, rgba(7,11,20,0) 14%, rgba(7,11,20,0) 86%, rgba(7,11,20,1) 100%);pointer-events:none}
.ticker__track{display:inline-flex;gap:14px;align-items:center;padding:0 20px;height:40px;white-space:nowrap;animation:ticker 28s linear infinite;will-change:transform}
.sep{opacity:.35}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* preprod bar */
.noticebar{margin:8px 0 14px}
.noticebar__inner{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 14px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.noticebar .warn{display:inline-grid;place-items:center;width:26px;height:26px;border-radius:10px;background:rgba(255,176,32,.16);border:1px solid rgba(255,176,32,.28)}
.ghost{background:transparent;border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.78);padding:8px 10px;border-radius:12px;font-weight:800;cursor:pointer}
.ghost:hover{background:rgba(255,255,255,.06);color:#fff}

main{padding-bottom:28px}

.card, .panel{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}
.hero{
  margin-top:18px;
  overflow:hidden;
}
.hero__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:18px;padding:22px}
.badges{display:flex;gap:10px;flex-wrap:wrap}
.badge{font-size:11px;font-weight:900;padding:8px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06)}
.badge--ghost{background:rgba(0,0,0,.18);color:var(--muted)}
.h1{font-size:44px;line-height:1.04;margin:14px 0 10px}
.lead{color:var(--muted);max-width:62ch;line-height:1.6;margin:0 0 16px}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.btn{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:var(--text);padding:11px 14px;border-radius:14px;font-weight:950;font-size:13px;cursor:pointer}
.btn--primary{border-color:rgba(43,211,255,.24);background:radial-gradient(120% 120% at 30% 30%, rgba(43,211,255,.24), rgba(36,255,154,.10))}
.btn:hover{background:rgba(255,255,255,.08)}
.minirow{display:flex;gap:10px;flex-wrap:wrap}
.mini{border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.18);border-radius:16px;padding:10px 12px;min-width:160px}
.mini__k{font-size:11px;color:rgba(255,255,255,.60);font-weight:900;letter-spacing:.06em}
.mini__v{margin-top:6px;font-weight:950}
.defcon{display:inline-flex;gap:6px;align-items:center}
.defcon span{width:22px;height:22px;display:grid;place-items:center;border-radius:8px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);font-weight:950;color:rgba(255,255,255,.78);font-size:12px}
.defcon--small span{width:20px;height:20px;border-radius:7px;font-size:11px}
.defcon span.is-active{border-color:rgba(255,176,32,.38);background:rgba(255,176,32,.18);color:rgba(255,255,255,.92)}

/* DEFCON colors (NRE operativo) */
.defcon[data-level="1"] span.is-active{border-color:rgba(255,255,255,.45);background:rgba(255,255,255,.16);color:#fff}
.defcon[data-level="2"] span.is-active{border-color:rgba(255,0,64,.45);background:rgba(255,0,64,.18);color:#fff}
.defcon[data-level="3"] span.is-active{border-color:rgba(255,210,64,.45);background:rgba(255,210,64,.20);color:#fff}
.defcon[data-level="4"] span.is-active{border-color:rgba(52,211,153,.45);background:rgba(52,211,153,.18);color:#fff}
.defcon[data-level="5"] span.is-active{border-color:rgba(77,163,255,.45);background:rgba(77,163,255,.18);color:#fff}


.side{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,16,32,.55);
  border-radius:var(--r);
  padding:16px;
}
.pillStatus{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-size:12px;font-weight:950;
}
.pillStatus .dot{width:8px;height:8px;border-radius:999px;background:var(--warn);box-shadow:0 0 0 6px rgba(255,176,32,.12)}
.pillStatus[data-state="ok"] .dot{background:var(--ok);box-shadow:0 0 0 6px rgba(43,255,180,.12)}
.pillStatus[data-state="bad"] .dot{background:var(--bad);box-shadow:0 0 0 6px rgba(255,51,85,.12)}
.now{display:grid;grid-template-columns:156px 1fr;gap:14px;align-items:center;margin-top:12px}
.now img{width:156px;height:156px;border-radius:22px;border:1px solid rgba(255,255,255,.14);object-fit:cover;background:rgba(255,255,255,.05)}

.now > div{min-width:0;padding-left:6px}
.title{font-weight:950;font-size:18px;margin-top:6px;line-height:1.15;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.artist{color:rgba(255,255,255,.78);font-weight:800;margin-top:4px;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sub{color:rgba(255,255,255,.60);font-weight:700;margin-top:8px;font-size:12px}
.hr{height:1px;background:rgba(255,255,255,.08);margin:14px 0}
pre{margin:0;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace;font-size:12px;white-space:pre-wrap;line-height:1.55;color:rgba(255,255,255,.75)}

.grid2{margin-top:14px;display:grid;grid-template-columns:1fr 1fr;gap:14px}
.box{border:1px solid rgba(255,255,255,.08);border-radius:var(--r);background:rgba(255,255,255,.04);padding:16px}
.box__t{font-weight:950;margin-bottom:6px}
.box__b{color:rgba(255,255,255,.74);line-height:1.6}
.box__hint{margin-top:10px;color:rgba(255,255,255,.55);font-size:12px}

/* Schedule page */
.pageTitle{margin:22px 0 6px;font-size:44px;line-height:1.04;font-weight:950}
.pageSub{margin:0 0 14px;color:rgba(255,255,255,.70)}
.scheduleWrap{padding:18px}
.scheduleTop{display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap;margin-bottom:12px}
.liveLine{
  display:flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.78);font-weight:900
}
.liveLine .dot{width:10px;height:10px;border-radius:999px;background:var(--ok);box-shadow:0 0 0 8px rgba(43,255,180,.10)}
.tableShell{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(0,0,0,.22);
  overflow:hidden;
}
.tableScroll{
  max-height:540px;
  overflow:auto;
}
.tableScroll::-webkit-scrollbar{width:10px}
.tableScroll::-webkit-scrollbar-track{background:rgba(255,255,255,.04)}
.tableScroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,.14);border-radius:999px}
.tableScroll::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.22)}

table{width:100%;border-collapse:separate;border-spacing:0}
th,td{padding:14px 14px;vertical-align:top;border-bottom:1px solid rgba(255,255,255,.06)}
thead th{
  position:sticky;top:0;z-index:3;
  background:rgba(7,11,20,.92);
  backdrop-filter:blur(12px);
  font-size:14px;font-weight:950;color:rgba(255,255,255,.90);
}
th:first-child, td:first-child{
  position:sticky;left:0;z-index:2;
  background:rgba(7,11,20,.92);
  backdrop-filter:blur(12px);
  font-weight:950;
}
thead th:first-child{z-index:4}
.slot{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px 12px;
  min-height:84px;
}
.slot__t{font-weight:950}
.slot__s{color:rgba(255,255,255,.70);margin-top:6px}
.slot--live{border-color:rgba(43,255,180,.22);box-shadow:0 0 0 1px rgba(43,255,180,.10), 0 14px 50px rgba(0,0,0,.35)}
.slot--next{border-color:rgba(0,190,255,.22)}
.badgeMini{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.20);font-weight:950;font-size:11px;color:rgba(255,255,255,.80)}
.badgeMini .dot{width:8px;height:8px;border-radius:999px;background:var(--ok);box-shadow:0 0 0 6px rgba(43,255,180,.10)}
.scheduleFoot{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;margin-top:12px;color:rgba(255,255,255,.60)}

/* Dock */
.dock{
  position:fixed;left:0;right:0;bottom:0;z-index:60;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(7,11,20,.92);
  backdrop-filter:blur(14px);
}
.dock__inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.dock__left{display:flex;align-items:center;gap:12px;min-width:320px}
.dock__left img{width:44px;height:44px;border-radius:14px;border:1px solid rgba(255,255,255,.12);object-fit:cover}
.dock__line{font-weight:950}
.dock__sub{color:rgba(255,255,255,.62);font-size:12px;font-weight:700}
.dock__center{display:flex;align-items:center;gap:12px;flex:1;justify-content:center}
.iconbtn{width:44px;height:44px;border-radius:16px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:var(--text);font-weight:950;cursor:pointer}
.vu{display:flex;align-items:center;gap:8px;min-width:240px}
.bar{width:84px;height:10px;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.22);overflow:hidden}
.fill{height:100%;width:0%;background:linear-gradient(90deg, rgba(43,211,255,.75), rgba(36,255,154,.70), rgba(255,176,32,.70), rgba(255,51,85,.75));transition:width .1s linear}
.peak{font-size:11px;font-weight:950;color:rgba(255,255,255,.70);padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);opacity:.55}
.vol{display:flex;align-items:center;gap:10px}
.dock__right{display:flex;align-items:center;gap:10px}
select{border-radius:14px;padding:10px 12px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:rgba(255,255,255,.88);font-weight:900;font-size:12px}

.footer{
  margin-top:22px;
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 200px at 20% 0%, rgba(0,190,255,.10), transparent 60%),
    radial-gradient(900px 200px at 80% 0%, rgba(36,255,154,.08), transparent 60%),
    linear-gradient(180deg, rgba(7,11,20,.65) 0%, rgba(7,11,20,.92) 100%);
  backdrop-filter: blur(10px);
}
.footer__grid{display:grid;grid-template-columns:1.2fr .7fr 1fr;gap:36px;align-items:start}
.footer__title{margin:0 0 10px;font-size:14px;font-weight:900;letter-spacing:.04em;color:rgba(255,255,255,.92)}
.footer p{margin:0 0 10px;line-height:1.7;color:rgba(255,255,255,.70);max-width:60ch}
.footer__links{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px}
.footer a{color:rgba(255,255,255,.72);text-decoration:none;font-weight:800;display:inline-flex;align-items:center;gap:10px;padding:6px 0;transition:color .18s ease, transform .18s ease, text-shadow .18s ease}
.footer a:hover{color:#fff;transform:translateX(4px);text-shadow:0 0 10px rgba(0,190,255,.20)}

@media (max-width: 980px){
  .nav{display:none}
  .hero__grid{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr;gap:18px}
  .dock__inner{flex-direction:column;align-items:stretch}
  .dock__center{justify-content:space-between}
}

/* ===== Programa en emisión (banner debajo del hero) ===== */
.showBanner{
  margin-top:14px;
  border-radius: var(--r);
  background:
    radial-gradient(700px 220px at 20% 30%, rgba(0,190,255,.12), transparent 60%),
    radial-gradient(700px 220px at 80% 40%, rgba(36,255,154,.10), transparent 60%),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.showBanner__inner{
  display:flex;
  gap:16px;
  align-items:center;
  padding:16px;
}
.showBanner__artWrap{
  position:relative;
  width:140px;
  height:140px;
  flex:0 0 140px;
}
.showBanner__artWrap img{
  width:140px;height:140px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.14);
  object-fit:cover;
  background:rgba(0,0,0,.22);
}
.showBanner__tag{
  position:absolute;
  left:10px; bottom:10px;
  padding:8px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  background:rgba(43,255,180,.14);
  border:1px solid rgba(43,255,180,.28);
  color:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.showBanner__meta{flex:1;min-width:0}
.showBanner__kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
}
.showBanner__title{
  margin-top:8px;
  font-size:22px;
  font-weight:950;
  line-height:1.15;
}
.showBanner__sub{
  margin-top:6px;
  color:rgba(255,255,255,.72);
  font-weight:700;
  line-height:1.55;
  max-width: 80ch;
}
.showBanner__row{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:12px;
}
.pill--mini{
  padding:9px 12px;
  font-size:12px;
}
.pill--link{
  text-decoration:none;
  border-color:rgba(0,190,255,.18);
  background:rgba(0,190,255,.08);
}
.pill--link:hover{background:rgba(0,190,255,.12); color:#fff}

@media (max-width: 980px){
  .showBanner__inner{flex-direction:column;align-items:flex-start}
  .showBanner__artWrap{width:120px;height:120px;flex:0 0 120px}
  .showBanner__artWrap img{width:120px;height:120px}
}

/* ===== Noticias + Actualidad Musical (6 + 6) ===== */
.newsModules{
  margin-top:18px;
  padding:18px 0 6px;
}
.modsHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.modsKicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
}
.modsTitle{
  margin:8px 0 6px;
  font-size:28px;
  font-weight:950;
}
.modsSub{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.6;
  max-width: 78ch;
}
.modsActions{display:flex;gap:10px;flex-wrap:wrap}

.modsGrid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.modsPanel{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);
  background:rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:14px;
  overflow:hidden;
}
.modsPanel__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.modsPanel__title{font-weight:950}
.modsPanel__meta{color:rgba(255,255,255,.55);font-size:12px}

.cards6{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
.cardNews{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  background:rgba(0,0,0,.20);
  overflow:hidden;
  min-height: 186px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.cardNews:hover{
  transform: translateY(-2px);
  border-color: rgba(0,190,255,.22);
  box-shadow: 0 18px 60px rgba(0,0,0,.40), 0 0 0 1px rgba(0,190,255,.10);
}
.cardNews__img{
  width:100%;
  height:104px;
  object-fit:cover;
  display:block;
  background:rgba(255,255,255,.06);
}
.cardNews__body{padding:12px 12px 12px}
.cardNews__title{
  font-weight:950;
  line-height:1.25;
  font-size:13px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.cardNews__meta{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:rgba(255,255,255,.62);
  font-size:11px;
  font-weight:800;
}
.pillTag{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.pillTag .dot{width:7px;height:7px;border-radius:999px;background:rgba(0,190,255,.9);box-shadow:0 0 0 6px rgba(0,190,255,.10)}

.cardNews.is-skeleton{
  background:linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.08), rgba(255,255,255,.04));
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
  border-color: rgba(255,255,255,.08);
}
@keyframes shimmer{from{background-position:200% 0}to{background-position:-200% 0}}

@media (max-width: 1100px){
  .cards6{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 980px){
  .modsGrid2{grid-template-columns:1fr}
  .cards6{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 560px){
  .cards6{grid-template-columns:1fr}
}


/* ===== FIX: ticker centrado (vertical y óptico) ===== */
.ticker{
  display:flex;
  align-items:center;
}
.ticker__track{
  display:flex;              /* no inline-flex para evitar baseline raro */
  align-items:center;
  height:40px;
  line-height:40px;          /* centra el texto en cápsula */
  transform: translateZ(0);  /* suaviza */
}
.ticker__track span{
  line-height:40px;
}
.strip__left{
  align-items:center;
}
/* Compensación óptica por font-weight y blur (muy leve) */
.ticker__track{
  padding-top: 0px;
}


/* ===== FIX: módulos noticias verticales y centrados ===== */

/* contenedor principal */
.newsModules{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* header centrado */
.modsHead{
  width:100%;
  max-width:1100px;
  margin:0 auto 18px auto;
  text-align:center;
  justify-content:center;
}

/* grid pasa a columna */
.modsGrid2{
  display:flex;
  flex-direction:column;
  gap:18px;
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

/* panel centrado */
.modsPanel{
  width:100%;
}

/* cabecera panel centrada */
.modsPanel__head{
  justify-content:center;
  text-align:center;
  flex-direction:column;
  gap:4px;
}

/* cards centradas */
.cards6{
  justify-content:center;
}

/* limitar ancho para que no quede gigante */
@media (min-width:1200px){
  .modsGrid2{
    max-width:1100px;
  }
}


/* ===== FIX DEFINITIVO TICKER CENTRADO ===== */

.strip{
  display:flex;
  align-items:center;
}

.strip__left{
  display:flex;
  align-items:center;
  width:100%;
}

.ticker{
  display:flex;
  align-items:center;
  justify-content:center;
  height:40px;
  overflow:hidden;
}

.ticker__track{
  display:flex;
  align-items:center;
  height:40px;
  line-height:40px;
  white-space:nowrap;
}

.ticker__track span{
  display:inline-flex;
  align-items:center;
  height:40px;
  line-height:40px;
}

/* ajuste fino visual */
.ticker__track{
  transform: translateY(1px);
}


/* ===== PREPRODUCCION (EN OBRAS) CENTRADO — SOLO ESTE BLOQUE ===== */
.noticebar__inner{
  justify-content:center;   /* centra el texto */
  text-align:center;
  position:relative;
}
.noticebar__inner > span{
  text-align:center;
}
.noticebar__inner .ghost{
  position:absolute;
  right:12px;
}
@media (max-width: 720px){
  .noticebar__inner{
    padding-right:76px; /* deja espacio al botón sin desplazar texto */
  }
}

/* ===== Reloj en topbar (junto a EN DIRECTO) ===== */
.pill--clock{
  padding:10px 14px;
  font-weight:950;
  letter-spacing:.04em;
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.12);
}
.pill--clock #clockText{
  white-space:nowrap;
}
.pillLed{
  width:8px;height:8px;border-radius:999px;
  background:rgba(0,190,255,.95);
  box-shadow:0 0 0 6px rgba(0,190,255,.10);
}
.topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-end;
}


/* ===== PREPRODUCCION: CENTRADO REAL (NO SE MUEVE NADA MAS) =====
   Hace el texto absolutamente centrado aunque haya icono a la izquierda y botón a la derecha.
*/
.noticebar__inner{
  justify-content:center !important;
  text-align:center !important;
  position:relative;
  padding-left:54px;   /* hueco icono */
  padding-right:96px;  /* hueco botón */
}
.noticebar__inner .warn{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
}
.noticebar__inner > span:not(.warn){
  display:block;
  margin:0 auto;
  text-align:center;
}
.noticebar__inner .ghost{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
}
@media (max-width: 720px){
  .noticebar__inner{
    padding-left:48px;
    padding-right:78px;
  }
}

/* PREPROD CENTER FINAL */
.noticebar__inner{position:relative;display:flex;align-items:center;height:44px;}
.noticebar__inner .warn{position:absolute;left:12px;top:50%;transform:translateY(-50%);} 
.noticebar__inner .ghost{position:absolute;right:12px;top:50%;transform:translateY(-50%);} 
.noticebar__text{position:absolute;left:50%;transform:translateX(-50%);text-align:center;width:70%;}


/* ===== CENTRAR CONTENEDOR PREPRODUCCION ===== */

/* contenedor externo */
.noticebar{
  display:flex;
  justify-content:center; /* centra todo el bloque */
}

/* ancho controlado tipo layout */
.noticebar__inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}


/* ===== AJUSTE TIPOGRAFIA PREPRODUCCION ===== */

/* fuente más estilizada */
.noticebar__text{
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.02em;
  line-height:1.4;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* en pantallas pequeñas baja aún más */
@media (max-width: 900px){
  .noticebar__text{
    font-size:12px;
  }
}

/* ===== HERO LOGO GRANDE ===== */
.hero{
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../assets/nre_logo_big.png') center/contain no-repeat;
  opacity:0.08; /* suave */
  pointer-events:none;
}

/* versión más visible si quieres */
.hero.logo-strong::before{
  opacity:0.18;
}

/* ===== LOGO HEADER ===== */
.logoHeader{
  height:42px;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 0 6px rgba(0,190,255,.4));
}

/* en móvil más pequeño */
@media (max-width:768px){
  .logoHeader{
    height:34px;
  }
}

/* ===== LOGO EN CAJA HEADER ===== */

.brandBox{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.logoBox{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(1.1);
}

/* quitar padding interno si lo hubiera */
.brandBox img{
  max-width:100%;
  max-height:100%;
}


/* ===== Fondo programa en emisión (NRE NON STOP) ===== */
.showBanner{
  position:relative;
  overflow:hidden;
}
.showBanner::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background: var(--showBannerBg, url('../assets/nre_nonstop_bg.png')) center/cover no-repeat;
  opacity:0.2;
  pointer-events:none;
}
.showBanner__inner{
  position:relative;
  z-index:1;
}


/* ===== HERO RIGHT ANTENNA BG ===== */
.heroRight{
  position:relative;
  overflow:hidden;
}

.heroRight > *{
  position:relative;
  z-index:1;
}



.infoPanel{
  position:relative;
  overflow:hidden;
}

.infoPanel::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../assets/antenna_panel.png') right center / contain no-repeat;
  opacity:0.18;
  pointer-events:none;
  filter:drop-shadow(0 0 25px rgba(0,180,255,.35));
}

/* contenido por encima */
.infoPanel > *{
  position:relative;
  z-index:1;
}



.heroRight{
  position:relative;
  overflow:hidden;
}



.heroRight > *{
  position:relative;
  z-index:1;
}


@keyframes antennaPulse{
  0%{ opacity:.18; transform:translateX(0) translateY(0) scale(1); filter:drop-shadow(0 0 22px rgba(0,180,255,.35)); }
  45%{ opacity:.30; transform:translateX(-6px) translateY(-1px) scale(1.01); filter:drop-shadow(0 0 34px rgba(0,200,255,.55)); }
  100%{ opacity:.18; transform:translateX(0) translateY(0) scale(1); filter:drop-shadow(0 0 22px rgba(0,180,255,.35)); }
}

@keyframes waveSweep{
  0%{ opacity:0; transform:translateX(18px) scale(.98); }
  30%{ opacity:.22; }
  70%{ opacity:.10; }
  100%{ opacity:0; transform:translateX(-18px) scale(1.02); }
}

.heroRight{
  position:relative;
  overflow:hidden;
}

/* antena */


/* ondas (capa extra, transparente) */


.heroRight > *{
  position:relative;
  z-index:1;
}


/* ===== ANIMACION ANTENA (HERO DERECHA - SOLO ANTENA) ===== */
@keyframes antennaPulse{
  0%{ opacity:.18; transform:translateX(0) translateY(0) scale(1); filter:drop-shadow(0 0 22px rgba(0,180,255,.35)); }
  45%{ opacity:.30; transform:translateX(-6px) translateY(-1px) scale(1.01); filter:drop-shadow(0 0 34px rgba(0,200,255,.55)); }
  100%{ opacity:.18; transform:translateX(0) translateY(0) scale(1); filter:drop-shadow(0 0 22px rgba(0,180,255,.35)); }
}

@keyframes waveSweep{
  0%{ opacity:0; transform:translateX(18px) scale(.98); }
  30%{ opacity:.22; }
  70%{ opacity:.10; }
  100%{ opacity:0; transform:translateX(-18px) scale(1.02); }
}

.heroRight{
  position:relative;
  overflow:hidden;
}

/* antena SOLO */


/* ondas */


.heroRight > *{ position:relative; z-index:1; }


/* ===== ANTENA HERO ARRIBA DERECHA (POSICION CORRECTA) ===== */
.heroRight{
  position:relative;
  overflow:hidden;
}

/* antena fija arriba derecha */
.heroRight::after{
  content:"";
  position:absolute;
  top:10px;
  right:10px;
  width:260px;
  height:260px;
  background:url('../assets/antenna_hero.png') center/contain no-repeat;
  pointer-events:none;
  opacity:.28;
  animation: antennaPulse 3.2s ease-in-out infinite;
}

/* ondas desde antena */
.heroRight::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:400px;
  height:400px;
  background:
    radial-gradient(circle at 85% 15%, rgba(0,200,255,.18) 0 2px, transparent 3px 40px),
    radial-gradient(circle at 85% 15%, rgba(0,200,255,.10) 0 1px, transparent 2px 60px),
    radial-gradient(circle at 85% 15%, rgba(255,180,60,.08) 0 1px, transparent 2px 80px);
  pointer-events:none;
  mix-blend-mode: screen;
  animation: waveSweep 2.8s ease-in-out infinite;
}

.heroRight > *{
  position:relative;
  z-index:1;
}


/* ===== PROGRAMA EN EMISIÓN: MÁS ALTO + FONDO NRE NON-STOP ===== */
.showBanner{
  min-height: 220px;
  padding: 22px 22px;
}
@media (min-width: 1100px){
  .showBanner{ min-height: 250px; padding: 26px 26px; }
}

/* Fondo propio del programa */
.showBanner::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../assets/nre_nonstop_bg.png') right center / cover no-repeat;
  opacity:0.22;
  pointer-events:none;
}


/* ===== PROGRAMA EN EMISIÓN MÁS ALTO (AJUSTE EXTRA) ===== */
.showBanner{
  min-height: 280px;
  padding: 28px 28px;
}
@media (min-width: 1100px){
  .showBanner{
    min-height: 320px;
    padding: 32px 32px;
  }
}

/* ===== Programa en emisión: horario + anterior/siguiente ===== */
.showTimeline{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  font-size:13px;
  color:rgba(255,255,255,.80);
}
.showTimeline__time{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,190,255,.10);
  border:1px solid rgba(0,190,255,.22);
  font-weight:800;
  letter-spacing:.02em;
}
.showTimeline__sep{
  opacity:.45;
}
.showTimeline__prev, .showTimeline__next{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.showTimeline strong{
  color:#fff;
  font-weight:850;
}
@media (max-width: 820px){
  .showTimeline{ font-size:12px; }
}

/* ===== NRE: Cambios visibles EXACTOS (sin tocar otras secciones) ===== */
@keyframes nreBlink{
  0%,55%{opacity:1}
  56%,100%{opacity:.20}
}

/* ÚLTIMAS NOTICIAS: solo el badge exacto */
.nreBreakingBadge{
  background: rgba(255,0,0,.92) !important;
  border-color: rgba(255,0,0,.92) !important;
  color:#fff !important;
  box-shadow: 0 0 0 1px rgba(255,0,0,.35), 0 14px 44px rgba(255,0,0,.18);
}
.nreBreakingBadge *{
  color:#fff !important;
  animation: nreBlink 1.1s steps(1,end) infinite;
}

/* EN DIRECTO: solo el punto del pill exacto */
.nreLivePill .brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:54px;
  height:54px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  background-image: url('/assets/nre_logo_big.png');
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  box-shadow: 0 0 0 1px rgba(0,190,255,.10), 0 18px 40px rgba(0,0,0,.28);
}
@media (max-width: 768px){
  .brand__logo{ width:44px; height:44px; border-radius:12px; }
}


/* ===== LOGO HEADER GRANDE SIN CAJA ===== */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

/* quitamos la caja visual */
.brand__logo{
  width:160px;          /* tamaño grande */
  height:60px;
  background:none !important;
  border:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  padding:0 !important;

  background-image:url('/assets/nre_logo_big.png');
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
}

/* ajuste en móvil */
@media (max-width:768px){
  .brand__logo{
    width:120px;
    height:48px;
  }
}


/* ===== LOGO PREMIUM + ANIMACION SUAVE ===== */
@keyframes nreLogoGlow{
  0%{ filter: drop-shadow(0 0 10px rgba(0,190,255,.18)) drop-shadow(0 0 28px rgba(0,190,255,.08)); opacity: .92; }
  50%{ filter: drop-shadow(0 0 16px rgba(0,210,255,.35)) drop-shadow(0 0 46px rgba(0,210,255,.14)); opacity: 1; }
  100%{ filter: drop-shadow(0 0 10px rgba(0,190,255,.18)) drop-shadow(0 0 28px rgba(0,190,255,.08)); opacity: .92; }
}

.brand__logo{
  width: 190px;
  height: 64px;
  background-position:left center;
  background-size:contain;
  animation: nreLogoGlow 3.6s ease-in-out infinite;
}

/* en pantallas grandes, un pelín más */
@media (min-width: 1300px){
  .brand__logo{ width: 210px; height: 68px; }
}

/* móvil */
@media (max-width:768px){
  .brand__logo{ width: 135px; height: 50px; }
}


/* ===== FIX LOGO: asegurar que la imagen SIEMPRE se vea ===== */
.brand__logo{
  width: 200px;
  height: 66px;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background: url('/assets/nre_logo_big.png') left center / contain no-repeat !important;
}
@media (min-width: 1300px){
  .brand__logo{ width: 220px; height: 70px; }
}
@media (max-width: 768px){
  .brand__logo{ width: 140px; height: 52px; }
}


/* ===== FIX SEGURO LOGO (NO ROMPE LAYOUT) ===== */
/* SOLO tocamos tamaño, no tocamos contenedores */
.brand__logo{
  width: 220px !important;
  height: 68px !important;
  background: url('/assets/nre_logo_big.png') left center / contain no-repeat !important;
}

/* responsive */
@media (max-width:768px){
  .brand__logo{
    width:140px !important;
    height:52px !important;
  }
}


/* ===== LOGO UN POCO MÁS GRANDE (SIN ROMPER) ===== */
.brand__logo{
  width: 235px !important;
  height: 72px !important;
}

@media (max-width:768px){
  .brand__logo{
    width:150px !important;
    height:56px !important;
  }
}


/* ===== AJUSTE FINO: logo un poco más grande + texto a la izquierda ===== */

/* un pelín más de logo sin romper */
.brand__logo{
  width: 245px !important;
  height: 74px !important;
}

/* acerca el texto al logo (sin tocar layout global) */
.brand{
  gap: 8px; /* antes más grande */
}

/* si hay título/subtítulo dentro de brand, lo acercamos un poco */
.brand__title,
.brand__text,
.brand h1,
.brand .title{
  margin-left: -2px;
}

/* responsive */
@media (max-width:768px){
  .brand__logo{
    width:155px !important;
    height:58px !important;
  }
  .brand{ gap:6px; }
}


/* ===== TEXTO MÁS A LA IZQUIERDA (AJUSTE FINO FINAL) ===== */

/* reducimos más el espacio entre logo y texto */
.brand{
  gap: 4px !important;
}

/* empujamos el texto un poco más a la izquierda */
.brand__title,
.brand__text,
.brand h1,
.brand .title{
  margin-left: -6px !important;
}

/* móvil */
@media (max-width:768px){
  .brand{
    gap:3px !important;
  }
  .brand__title,
  .brand__text{
    margin-left:-4px !important;
  }
}


/* ===== TEXTO MUCHO MÁS A LA IZQUIERDA (AJUSTE FUERTE) ===== */

.brand{
  gap: 0px !important;
}

.brand__title,
.brand__text,
.brand h1,
.brand .title{
  margin-left: -12px !important;
}

/* móvil */
@media (max-width:768px){
  .brand{
    gap:0 !important;
  }
  .brand__title,
  .brand__text{
    margin-left:-8px !important;
  }
}


/* ===== TEXTO EXTREMO IZQUIERDA ===== */

.brand{
  gap: 0 !important;
}

.brand__title,
.brand__text,
.brand h1,
.brand .title{
  margin-left: -20px !important;
}

/* móvil */
@media (max-width:768px){
  .brand__title,
  .brand__text{
    margin-left:-12px !important;
  }
}

/* ===== BLOQUE PROGRAMA EN EMISION ===== */
.showTimeBlock{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.showNow{
  font-size:18px;
  font-weight:700;
  color:#fff;
}
.showRange{
  font-size:14px;
  color:#00d0ff;
  font-weight:600;
}
.showEnd{
  font-size:12px;
  color:#aaa;
}

/* ===== BLOQUE PROGRAMA A LA DERECHA ===== */
.showBanner__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.showTimeBlock{
  margin-top:0;
  margin-left:auto;
  text-align:right;
  align-items:flex-end;
}

/* ===== DIAS DE EMISION ===== */
.showDays{
  font-size:12px;
  color:#00d0ff;
  opacity:.9;
  font-weight:600;
}

/* ===== BLOQUE PROGRAMA ULTRA ===== */
.showNext{
  font-size:12px;
  color:#fff;
  opacity:.8;
}
.showCountdown{
  font-size:14px;
  font-weight:700;
  color:#00ffcc;
}
.showProgress{
  width:140px;
  height:6px;
  background:rgba(255,255,255,.1);
  border-radius:6px;
  overflow:hidden;
  margin-top:6px;
}
.showProgress .bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#00d0ff,#00ffcc);
  transition:width .5s linear;
}


/* ===== SWAP IZQUIERDA / DERECHA PROGRAMA ===== */

/* contenedor principal */
.showBanner__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* bloque principal (info programa) a la derecha */
.showBanner__left,
.showInfo,
.showContent{
  order:2;
  margin-left:auto;
  text-align:right;
}

/* bloque tiempo / ultra a la izquierda */
.showTimeBlock{
  order:1;
  margin-left:0;
  margin-right:auto;
  text-align:left;
  align-items:flex-start;
}

/* ajuste responsive */
@media (max-width:768px){
  .showBanner__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .showTimeBlock,
  .showBanner__left{
    order:initial;
    width:100%;
    text-align:left;
  }
}

/* ===== PROGRESS ABAJO ===== */
.showProgress{
  order: 99;
  width:100%;
  margin-top:10px;
}

/* asegurar stack vertical dentro bloque */
.showTimeBlock{
  display:flex;
  flex-direction:column;
}

/* PROGRAMA ANTERIOR */
.showPrev{
  font-size:12px;
  color:#aaa;
  opacity:.8;
}

/* ===== CABECERA NOTICIAS NRE ===== */
.newsTitle{
  font-size:22px;
  font-weight:800;
  color:#fff;
  margin-bottom:14px;
  letter-spacing:.5px;
  text-transform:uppercase;
}

/* ===== SUBTITULO NOTICIAS ===== */
.newsSubtitle{
  font-size:14px;
  color:#00d0ff;
  margin-top:6px;
  margin-bottom:8px;
  letter-spacing:.4px;
  font-weight:600;
}

/* ===== NOTICIAS: FUENTE (sustituye Endpoint) ===== */
.modsPanel__meta{
  text-align:right;
}
.modsPanel__meta .srcLabel{ opacity:.85; }
.modsPanel__meta .srcSub{
  margin-top:2px;
  font-size:11px;
  color:#00d0ff;
  opacity:.85;
  font-weight:600;
}
.box__hint--src{
  text-align:right;
}
.box__hint--src .srcSub{
  margin-top:2px;
  font-size:11px;
  color:#00d0ff;
  opacity:.85;
  font-weight:600;
}


/* ===== FIX: 'Fuente' pegada a la derecha del todo ===== */
/* Si la fila es flex, esto la empuja al final */
.newsMeta{
  margin-left:auto !important;
  text-align:right !important;
  display:block !important;
  max-width: 360px;
}

/* Forzamos que el contenedor inmediato sea una fila que permita empuje a la derecha.
   (sin depender del nombre exacto: si existe un wrapper típico de cabecera, lo hacemos flex) */
.newsHeader,
.newsHeaderRow,
.newsSectionHeader,
.newsBlockHeader,
.newsTop,
.newsHeading{
  display:flex;
  align-items:flex-end;
  gap:14px;
}

/* Si el meta está dentro de un <small> o similar, mantenemos el alineado */
.newsMetaSub{
  display:block;
  text-align:right;
}

/* ===== TOP ART BIGGER (carátula superior) ===== */
@media (max-width: 820px){
  .now{grid-template-columns:112px 1fr;}
  .now img{width:112px;height:112px;border-radius:20px;}
}

/* ===== RAW DEBUG (plegable) ===== */
.rawBox{
  margin-top:10px;
  width:100%;
  max-width:520px;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:10px 12px;
  backdrop-filter: blur(10px);
}
.rawBox summary{
  cursor:pointer;
  font-weight:800;
  letter-spacing:.04em;
  color:rgba(255,255,255,.88);
  list-style:none;
}
.rawBox summary::-webkit-details-marker{ display:none; }
.rawBox summary::after{
  content:"▼";
  float:right;
  opacity:.65;
}
.rawBox[open] summary::after{ content:"▲"; }
.rawBox pre{
  margin:10px 0 0 0;
  white-space:pre-wrap;
  word-break:break-word;
  font-size:11px;
  line-height:1.35;
  color:rgba(255,255,255,.82);
  max-height:220px;
  overflow:auto;
}

/* ===== LOCUTOR ART RING ===== */
.showBanner__artWrap img#showArt{
  box-shadow: 0 0 0 2px rgba(0,208,255,.18), 0 18px 46px rgba(0,0,0,.35);
}


/* ===== FOOTER REFINADO (más compacto) ===== */
.footer, footer{
  padding: 18px 20px !important;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(10,14,24,.8), rgba(8,12,20,.95));
}

.footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.footer h3, .footer h4{
  font-size: 14px !important;
  letter-spacing: .4px;
  margin-bottom: 6px;
  color: #fff;
}

.footer p, .footer a, .footer li{
  font-size: 12px !important;
  line-height: 1.45;
  color: rgba(255,255,255,.7);
}

.footer a:hover{
  color:#00d0ff;
}

.footer__col{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer .brandMini{
  font-size: 13px;
  font-weight:700;
  color:#fff;
}

.footer__bottom{
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.08);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-align:center;
}

@media (max-width: 820px){
  .footer__inner{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer{
    padding:14px 14px !important;
  }
}

/* FOOTER LOGO */
.footerLogoWrap{
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}
.footerLogoNRE{
  max-width:180px;
  opacity:.9;
  filter: drop-shadow(0 0 8px rgba(0,180,255,.4));
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse{
  0%,100%{ filter: drop-shadow(0 0 6px rgba(0,180,255,.3));}
  50%{ filter: drop-shadow(0 0 18px rgba(0,180,255,.7));}
}

/* AUDIO WAVE */
.footerWave{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:3px;
  height:20px;
  margin-top:6px;
}
.footerWave span{
  width:3px;
  height:6px;
  background:#00d0ff;
  display:block;
  border-radius:2px;
  animation: wave 1s infinite ease-in-out;
}
.footerWave span:nth-child(2){animation-delay:.1s}
.footerWave span:nth-child(3){animation-delay:.2s}
.footerWave span:nth-child(4){animation-delay:.3s}
.footerWave span:nth-child(5){animation-delay:.4s}
.footerWave span:nth-child(6){animation-delay:.5s}

@keyframes wave{
  0%,100%{height:4px;opacity:.6}
  50%{height:18px;opacity:1}
}

/* ON AIR */
.footerOnAir{
  text-align:center;
  font-size:11px;
  margin-top:6px;
  color:#9adfff;
  letter-spacing:.6px;
}
.footerOnAir::before{
  content:'●';
  color:#00ff6a;
  margin-right:6px;
  animation:blink 1.2s infinite;
}
@keyframes blink{
  0%,100%{opacity:1}
  50%{opacity:.2}
}


/* ===== PREPRODUCCIÓN / EN OBRAS CENTRADO (CONTENEDOR + TEXTO) ===== */
.preprod, .preprodBanner, .preprodNotice, .siteNotice, .devNotice, .noticeDev, .noticePreprod{
  display:flex !important;
  justify-content:center !important;
}

.preprod *, .preprodBanner *, .preprodNotice *, .siteNotice *, .devNotice *, .noticeDev *, .noticePreprod *{
  text-align:center !important;
}

/* Si la barra es full-width, centramos el contenido interno */
.preprod__inner, .preprodBanner__inner, .notice__inner, .siteNotice__inner, .devNotice__inner{
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 1200px !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap: 10px !important;
}

/* Por si el bloque tiene botón "Ocultar" a la derecha: lo dejamos pero sin romper centrado */
.preprod button, .preprodBanner button, .preprodNotice button, .siteNotice button, .devNotice button{
  margin-left: 12px !important;
}

/* ===== PREPRODUCCIÓN: CENTRADO REAL (el botón no desplaza) ===== */
#preprodBar{
  display:flex;
  justify-content:center;
}
#preprodBar .noticebar__inner{
  position:relative;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  padding-right:140px; /* reserva para el botón */
}
#preprodBar .noticebar__text{
  text-align:center;
}
#preprodBar #hidePreprod{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
}

/* ===== PREPROD HARD CENTER (override any other) ===== */
#preprodBar.wrap{max-width:1280px;margin:0 auto;}
#preprodBar.noticebar{width:100%;}
#preprodBar .noticebar__inner{margin:0 auto !important;}


50%{opacity:.2; transform:scale(.8);}
}

/* ===== LED DIRECTO (solo en el botón EN DIRECTO) ===== */
.live__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff2a2a;
  display:inline-block;
  margin-right:8px;
  box-shadow:0 0 10px rgba(255,0,0,.75);
  animation: liveBlink 1s infinite;
}

  50%{opacity:.2; transform:scale(.82);}
}

/* Reloj sin parpadeo */
.clock__dot{ animation:none !important; }

/* CLOCK ICON */
.clockIcon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:8px;
  opacity:.9;
}
.clockIcon svg{
  color:#9adfff;
  filter: drop-shadow(0 0 6px rgba(0,180,255,.35));
}

/* WEATHER ICON */
.weatherIcon{
  display:inline-flex;
  align-items:center;
  margin-right:6px;
  color:#00d0ff;
  filter: drop-shadow(0 0 6px rgba(0,180,255,.4));
}

/* TRAFFIC ICON */
.trafficIcon{
  display:inline-flex;
  align-items:center;
  margin-right:6px;
  color:#ffaa33;
  filter: drop-shadow(0 0 6px rgba(255,170,50,.4));
}


/* ===== EN DIRECTO DOT (SOLO ESTE PARPADEA) ===== */
.live__dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ff2a2a;
  display:inline-block;
  margin-right:10px;
  box-shadow:
    0 0 0 0 rgba(255,0,0,.7),
    0 0 10px rgba(255,0,0,.8);
  animation: livePulse 1.2s infinite;
}

/* pulso broadcast */
@keyframes livePulse{
  0%{
    transform:scale(1);
    box-shadow:
      0 0 0 0 rgba(255,0,0,.7),
      0 0 8px rgba(255,0,0,.8);
  }
  70%{
    transform:scale(1);
    box-shadow:
      0 0 0 8px rgba(255,0,0,0),
      0 0 14px rgba(255,0,0,.6);
  }
  100%{
    transform:scale(1);
    box-shadow:
      0 0 0 0 rgba(255,0,0,0),
      0 0 8px rgba(255,0,0,.8);
  }
}

/* EN DIRECTO EN UNA LINEA */
.live, .live__pill, .enDirecto{
  display:inline-flex !important;
  align-items:center;
  white-space:nowrap;
}

/* ART MAS GRANDE */
.showBanner__artWrap img,
#showArt{
  width:120px !important;
  height:120px !important;
  object-fit:cover;
}

/* TAGLINE (la radio de la gente positiva) en una línea */
.brandTagline, .siteTagline, .headerTagline, .brand__tagline, .logoText small{
  white-space: nowrap;
  display:block;
  max-width: 520px;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* Si el contenedor del logo es estrecho, baja un pelín la letra */
.brandTagline, .siteTagline, .headerTagline, .brand__tagline, .logoText small{
  font-size: 12px;
}

/* ART MÁS GRANDE (hero/right + programa) */
.now img{
  width:152px !important;
  height:152px !important;
  border-radius:24px !important;
}
.showBanner__artWrap img,
#showArt{
  width:140px !important;
  height:140px !important;
  border-radius:26px !important;
}
@media (max-width:820px){
  .now img{width:128px !important;height:128px !important;}
  .showBanner__artWrap img,#showArt{width:120px !important;height:120px !important;}
}

/* ===== TAGLINE SIN MONTAJE ===== */
.brand, .headerBrand, .logoText{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
}

.brandTagline, .siteTagline, .headerTagline, .brand__tagline, .logoText small{
  white-space:nowrap;
  line-height:1.2;
  font-size:12px;
  opacity:.9;
}

/* evitar solapamiento con el logo */
.logoText{
  max-width: 320px;
}

/* en pantallas pequeñas permitir salto limpio */
@media (max-width: 900px){
  .brandTagline, .siteTagline, .headerTagline, .brand__tagline, .logoText small{
    white-space:normal;
  }
}


/* ===== HERO RIGHT PANEL MAQUETADO (como referencia) ===== */
.heroRightCard{
  position:relative;
  padding:18px 18px 16px;
  border-radius:22px;
  background: linear-gradient(180deg, rgba(12,18,32,.72), rgba(10,14,24,.82));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  overflow:hidden;
}
.heroRightCard::after{
  content:'';
  position:absolute;
  inset:-40px -40px auto auto;
  width:280px;
  height:280px;
  background: radial-gradient(circle at 30% 30%, rgba(0,208,255,.18), rgba(0,0,0,0) 60%);
  pointer-events:none;
  transform: rotate(12deg);
  opacity:.9;
}
.heroRightCard .statusPill,
.heroRightCard .status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.heroRightCard .statusPill .dot,
.heroRightCard .status .dot{
  width:10px;height:10px;border-radius:50%;
  background:#ff2a2a;
  box-shadow:0 0 10px rgba(255,0,0,.75);
}
.heroRightCard .topRow{
  display:grid;
  grid-template-columns: 86px 1fr;
  gap:14px;
  align-items:center;
  margin-top:14px;
}
.heroRightCard .topRow img,
.heroRightCard img#heroArt,
.heroRightCard img#showArt{
  width:86px;height:86px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.heroRightCard .station{
  font-size:22px;
  font-weight:800;
  letter-spacing:.2px;
  margin:0;
}
.heroRightCard .subline{
  margin-top:6px;
  color: rgba(255,255,255,.65);
  font-size:14px;
  font-weight:600;
}
.heroRightCard .connecting{
  margin-top:10px;
  color: rgba(255,255,255,.55);
  font-size:13px;
}
.heroRightCard .divider{
  margin:14px 0 12px;
  height:1px;
  background: rgba(255,255,255,.08);
}
.diagPanel h3{
  font-size:18px;
  margin:0 0 10px 0;
  letter-spacing:.2px;
}
.diagPanel .diagList{
  display:grid;
  gap:10px;
}
.diagPanel .diagItem{
  display:grid;
  grid-template-columns: 12px 1fr;
  gap:10px;
  align-items:center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:13px;
  color: rgba(255,255,255,.78);
}
.diagPanel .diagDot{
  width:10px;height:10px;border-radius:50%;
  background:#ff2a2a;
  box-shadow:0 0 10px rgba(255,0,0,.45);
}
.diagPanel .diagDot.ok{ background:#00ff6a; box-shadow:0 0 10px rgba(0,255,106,.45); }
.diagPanel .diagDot.warn{ background:#ffaa33; box-shadow:0 0 10px rgba(255,170,51,.45); }
.diagPanel .diagLine{
  display:flex;
  justify-content:space-between;
  gap:10px;
  white-space:nowrap;
}
.diagPanel .diagLeft{ opacity:.9; }
.diagPanel .diagRight{ opacity:.8; }
.diagPanel .diagRight code{ color: rgba(255,255,255,.8); }
.diagPanel details.rawBox{
  margin-top:12px;
  border-top:1px dashed rgba(255,255,255,.10);
  padding-top:10px;
}
.diagPanel details.rawBox > summary{
  cursor:pointer;
  list-style:none;
  color: rgba(255,255,255,.72);
  font-size:12px;
  letter-spacing:.25px;
}
.diagPanel details.rawBox > summary::-webkit-details-marker{ display:none; }
.diagPanel pre.raw{
  margin-top:10px;
  max-height:220px;
  overflow:auto;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:10px 12px;
  font-size:12px;
  color: rgba(255,255,255,.78);
}


/* ===== NRE patch: nowplaying stats + better fit ===== */
.now .title{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  line-height:1.12;
  max-width:100%;
}
.now .artist{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  line-height:1.15;
}
.npStats{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.84);
  font-weight:800;
  font-size:12.5px;
}
.npStat{display:inline-flex;align-items:center;gap:8px}
.npStat .i{opacity:.9}
.npStat .k{opacity:.72;font-weight:700}
.npStat .v{font-variant-numeric:tabular-nums;font-weight:950}
.npStats .sep{opacity:.35}

.mini__v #qualityMode{font-weight:800;color:rgba(255,255,255,.9)}


/* Pills icons */
.pill{display:inline-flex;align-items:center;gap:8px}
.pill__ic{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;opacity:.9}
.pill__ic svg{width:18px;height:18px;fill:currentColor;opacity:.95}
.pill__tx{display:inline-block}


.showBanner__inner{ position:relative; z-index:1; }

/* ===== 2026-03-12 CLEAN LIFTING OVERRIDES ===== */
body{padding-bottom:220px;}
.mainHome{padding-bottom:22px;}
.hero--main .lead{max-width:62ch;}
.sectionLabel{font-weight:900;margin-bottom:6px;}
.homeStats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.box{border:1px solid rgba(255,255,255,.08);border-radius:22px;background:rgba(255,255,255,.04);box-shadow:var(--shadow);padding:18px;}
.box__t{font-weight:900;font-size:15px;margin-bottom:8px;}
.box__b{color:rgba(255,255,255,.76);line-height:1.55;min-height:54px;}
.box__hint{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;color:rgba(255,255,255,.62);font-size:12px;}

.showBanner{margin-top:16px;padding:0;overflow:hidden;background:linear-gradient(180deg,rgba(10,16,32,.72),rgba(7,11,20,.88));}
.showBanner::before{opacity:.18;}
.showBanner__inner{display:grid;grid-template-columns:210px 148px 1fr;gap:20px;align-items:center;padding:18px 22px;}
.showTimeBlock{border:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.18);border-radius:18px;padding:14px;display:grid;gap:8px;}
.showRange,.showCountdown{font-weight:900;font-size:18px;}
.showMetaLine,.showPrev,.showNext,.showDays,.showEnd{font-size:13px;color:rgba(255,255,255,.70);}
.showProgress{height:8px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden;margin-top:6px;}
.showProgress .bar{height:100%;width:0;background:linear-gradient(90deg,#23c8ff,#38f0a5);border-radius:999px;}
.showBanner__artWrap{position:relative;width:148px;height:148px;display:flex;align-items:center;justify-content:center;}
.showBanner__artWrap img{width:148px;height:148px;border-radius:24px;object-fit:cover;border:1px solid rgba(255,255,255,.12);box-shadow:0 16px 50px rgba(0,0,0,.35);}
.showBanner__tag{position:absolute;left:50%;bottom:-6px;transform:translateX(-50%);padding:10px 16px;border-radius:999px;background:linear-gradient(180deg,#48ff96,#29d26d);color:#03120b;font-weight:900;font-size:12px;letter-spacing:.08em;box-shadow:0 10px 30px rgba(41,210,109,.35);}
.showBanner__meta{min-width:0;}
.showBanner__kicker{font-size:11px;font-weight:900;letter-spacing:.16em;color:rgba(255,255,255,.62);text-transform:uppercase;}
.showBanner__title{font-size:34px;line-height:1.04;font-weight:900;margin-top:6px;}
.showBanner__sub{font-size:15px;color:rgba(255,255,255,.74);margin-top:8px;max-width:60ch;}
.showBanner__row{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}

.newsModules{margin-top:18px;padding:8px 0 0;display:block;}
.newsModules .wrap{max-width:1280px;margin:0 auto;padding:0 18px;}
.modsHead{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;flex-wrap:wrap;margin-bottom:16px;text-align:left;}
.modsGrid2{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:none;}
.modsPanel{padding:16px;border-radius:24px;}
.modsPanel__head{display:flex;align-items:baseline;justify-content:space-between;flex-direction:row;text-align:left;gap:10px;margin-bottom:12px;}
.modsPanel__title{font-size:20px;}
.cards6{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.cardNews{min-height:198px;}
.cardNews__title{font-size:14px;}

.footer{margin-top:18px;padding-top:26px;}
.footer__grid{display:grid;grid-template-columns:1.2fr .8fr .9fr;gap:24px;}
.footer__title{font-weight:900;margin-bottom:10px;}
.footer__links{list-style:none;padding:0;margin:0;display:grid;gap:10px;}
.footer__links a{text-decoration:none;color:rgba(255,255,255,.82);}
.footerWave{display:flex;gap:6px;justify-content:center;align-items:flex-end;height:22px;margin:18px 0 8px;opacity:.75;}
.footerWave span{display:block;width:4px;border-radius:999px;background:linear-gradient(180deg,#23c8ff,#38f0a5);animation:footerWave 1.2s ease-in-out infinite;}
.footerWave span:nth-child(1){height:7px}.footerWave span:nth-child(2){height:12px;animation-delay:.08s}.footerWave span:nth-child(3){height:18px;animation-delay:.16s}.footerWave span:nth-child(4){height:11px;animation-delay:.24s}.footerWave span:nth-child(5){height:16px;animation-delay:.32s}.footerWave span:nth-child(6){height:8px;animation-delay:.4s}
@keyframes footerWave{0%,100%{transform:scaleY(.78);opacity:.7}50%{transform:scaleY(1);opacity:1}}
.footerOnAir{text-align:center;font-family:Rajdhani,Inter,sans-serif;font-weight:700;letter-spacing:.18em;font-size:12px;color:rgba(255,255,255,.62);padding-bottom:10px;text-transform:uppercase;}

.dock--rack{
  position:fixed;left:0;right:0;bottom:0;z-index:60;
  background:linear-gradient(180deg,rgba(6,10,18,.75),rgba(4,8,14,.96));
  backdrop-filter:blur(16px);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 -10px 40px rgba(0,0,0,.45);
}
.dockRack{
  display:grid;
  grid-template-columns:.92fr .68fr .40fr;
  gap:12px;
  padding:10px 18px 14px;
  align-items:stretch;
}
.rackPanel{
  position:relative;
  min-height:118px;
  border:1px solid rgba(95,136,220,.22);
  border-radius:22px;
  background:linear-gradient(180deg,rgba(11,21,45,.86),rgba(5,10,20,.96));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04), inset 0 0 22px rgba(0,0,0,.4), 0 10px 24px rgba(0,0,0,.22);
  overflow:hidden;
  padding:28px 16px 14px;
}
.rackPanel::after{
  content:"";position:absolute;inset:10px;border-radius:18px;border:1px solid rgba(255,255,255,.05);pointer-events:none;
}
.rackPanel__label{position:absolute;top:12px;left:18px;font-family:Rajdhani,Inter,sans-serif;font-size:11px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:rgba(228,235,255,.82);}
.rackScrew{position:absolute;width:16px;height:16px;border-radius:50%;background:radial-gradient(circle at 32% 28%,#f5fbff 0%,#b6c6db 36%,#62748b 64%,#2e3c4f 100%);box-shadow:0 1px 3px rgba(0,0,0,.45);z-index:2;}
.rackScrew::after{content:"";position:absolute;left:3px;right:3px;top:7px;height:1px;background:rgba(22,29,39,.7);transform:rotate(-12deg);} 
.rackScrew--tl{top:9px;left:9px}.rackScrew--tr{top:9px;right:9px}.rackScrew--bl{bottom:9px;left:9px}.rackScrew--br{bottom:9px;right:9px}

.npCompact{display:grid;grid-template-columns:126px 1fr;gap:14px;align-items:center;min-height:76px;}
.npCompact__artWrap{position:relative;width:126px;height:126px;display:flex;align-items:center;justify-content:center;}
.npCompact__artWrap img{width:108px;height:108px;border-radius:22px;object-fit:cover;border:1px solid rgba(255,255,255,.10);box-shadow:0 8px 30px rgba(0,0,0,.35);}
.npCompact__live{position:absolute;left:50%;bottom:8px;transform:translateX(-50%);padding:7px 14px;border-radius:999px;background:linear-gradient(180deg,#52ff95,#36df77);color:#04130b;font-size:11px;font-weight:900;letter-spacing:.08em;box-shadow:0 8px 20px rgba(54,223,119,.35);}
.npCompact__meta{min-width:0;}
.npCompact__kicker{font-family:Rajdhani,Inter,sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;color:rgba(255,255,255,.72);margin-bottom:6px;}
.npCompact__line,.npCompact__sub{min-width:0;overflow:hidden;white-space:nowrap;display:block;}
.npCompact__line{font-size:18px;font-weight:900;line-height:1.1;}
.npCompact__sub{font-size:14px;font-weight:700;color:rgba(255,255,255,.86);margin-top:5px;}
.marqueeWrap{position:relative;overflow:hidden;}
.marqueeText{display:inline-block;min-width:100%;white-space:nowrap;}
.marqueeText.is-marquee{padding-right:42px;animation:nreMarquee 11s linear infinite;}
@keyframes nreMarquee{0%,8%{transform:translateX(0)}92%,100%{transform:translateX(calc(-100% + var(--marquee-view, 0px)))}}

.monitorCompact{display:grid;grid-template-columns:64px 1fr 126px;gap:14px;align-items:center;min-height:76px;}
.rackPlayBtn{width:64px;height:64px;border-radius:20px;border:1px solid rgba(96,145,255,.34);background:linear-gradient(180deg,rgba(28,54,120,.98),rgba(14,24,57,.96));box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 8px 18px rgba(0,0,0,.24);font-size:30px;color:#fff;display:grid;place-items:center;cursor:pointer;}
.monitorCompact__core{border:1px solid rgba(255,255,255,.06);border-radius:22px;background:rgba(0,0,0,.18);padding:12px 14px;display:grid;gap:9px;min-width:0;}
.vuRowCompact{display:grid;grid-template-columns:16px 1fr;align-items:center;gap:10px;}
.vuLabelCompact{font-family:Rajdhani,Inter,sans-serif;font-size:16px;font-weight:700;color:#fff;}
.vuLedTrack{height:12px;border-radius:999px;background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));border:1px solid rgba(255,255,255,.03);padding:2px 3px;position:relative;overflow:hidden;}
.vuLedTrack::before{content:"";position:absolute;inset:2px;background:repeating-linear-gradient(90deg,rgba(42,57,86,.9) 0 7px, transparent 7px 10px);opacity:.95;border-radius:999px;}
.vuLedFill{position:absolute;left:3px;top:2px;bottom:2px;width:0;border-radius:999px;background:repeating-linear-gradient(90deg,#2fff96 0 7px, transparent 7px 10px);filter:drop-shadow(0 0 4px rgba(47,255,150,.45));max-width:calc(100% - 6px);}
.vuPeakCompact{display:flex;align-items:center;justify-content:center;gap:8px;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.03);font-family:Rajdhani,Inter,sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;color:rgba(255,255,255,.72);text-transform:uppercase;}
.peakLed{width:10px;height:10px;border-radius:50%;background:radial-gradient(circle at 35% 35%,#ff6876 0%,#c00d23 55%,#51020e 100%);box-shadow:0 0 10px rgba(255,31,68,.24);}
.monitorCompact__status{display:flex;align-items:center;gap:8px;font-family:Rajdhani,Inter,sans-serif;font-size:11px;font-weight:700;letter-spacing:.10em;color:rgba(221,239,255,.84);text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.statusDot{width:8px;height:8px;border-radius:50%;background:#48ff96;box-shadow:0 0 10px rgba(72,255,150,.5);flex:none;}
.outputCompact{border:1px solid rgba(255,255,255,.05);border-radius:22px;background:rgba(0,0,0,.16);padding:14px 12px;display:grid;gap:12px;align-content:center;min-width:0;}
.outputCompact__label{font-family:Rajdhani,Inter,sans-serif;font-size:12px;font-weight:700;letter-spacing:.16em;color:rgba(255,255,255,.78);text-transform:uppercase;}
#vol{-webkit-appearance:none;appearance:none;width:100%;background:transparent;}
#vol::-webkit-slider-runnable-track{height:8px;border-radius:999px;background:linear-gradient(90deg,#18aaff,#7ec8ff 70%,rgba(255,255,255,.25) 70%,rgba(255,255,255,.25) 100%);}
#vol::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;margin-top:-7px;width:22px;height:22px;border-radius:50%;background:linear-gradient(180deg,#3ab4ff,#1a87db);border:2px solid rgba(6,19,40,.85);box-shadow:0 0 0 4px rgba(58,180,255,.16);}
#vol::-moz-range-track{height:8px;border-radius:999px;background:rgba(255,255,255,.22);}
#vol::-moz-range-thumb{width:22px;height:22px;border:none;border-radius:50%;background:#2ca8ff;box-shadow:0 0 0 4px rgba(58,180,255,.16);}

.sourceCompact{display:grid;gap:10px;}
.sourceButtonsSmall{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
.sourceBtn{position:relative;display:grid;place-items:center;gap:8px;height:56px;border-radius:18px;border:1px solid rgba(55,132,255,.34);background:linear-gradient(180deg,rgba(25,48,110,.96),rgba(10,22,55,.96));color:#fff;font-family:Rajdhani,Inter,sans-serif;font-size:13px;font-weight:700;letter-spacing:.05em;cursor:pointer;padding:8px 10px;}
.sourceBtn--wide{grid-column:1 / -1;height:50px;}
.sourceBtn__led{display:block;width:8px;height:8px;border-radius:50%;background:rgba(28,64,96,.9);box-shadow:inset 0 0 0 2px rgba(255,255,255,.05);margin-top:2px;}
.sourceBtn.sourceBtn--active{border-color:#1da2ff;box-shadow:0 0 0 1px rgba(29,162,255,.18) inset, 0 0 18px rgba(29,162,255,.08);}
.sourceBtn.sourceBtn--active .sourceBtn__led{background:#5cff9e;box-shadow:0 0 8px rgba(92,255,158,.55);}
.activeSourceBox{border:1px solid rgba(255,255,255,.05);border-radius:20px;background:rgba(0,0,0,.18);padding:12px 14px;display:grid;gap:6px;}
.activeSourceBox__kicker{font-family:Rajdhani,Inter,sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;color:rgba(255,255,255,.62);text-transform:uppercase;}
.activeSourceBox__value{font-size:13px;font-weight:900;color:#fff;}

@media (max-width:1180px){
  .hero__grid{grid-template-columns:1fr;}
  .showBanner__inner{grid-template-columns:1fr;}
  .homeStats{grid-template-columns:1fr;}
  .modsGrid2{grid-template-columns:1fr;}
  .cards6{grid-template-columns:repeat(2,minmax(0,1fr));}
  .footer__grid{grid-template-columns:1fr;}
  .dockRack{grid-template-columns:1fr;}
}
@media (max-width:760px){
  body{padding-bottom:320px;}
  .cards6{grid-template-columns:1fr;}
  .npCompact{grid-template-columns:108px 1fr;}
  .monitorCompact{grid-template-columns:56px 1fr;}
  .outputCompact{grid-column:1 / -1;}
}
