
:root{
  --purple:#6b2bd9;
  --red:#e30000;
  --cover:url("default-cover.png");
  --menuBg:#123ea8;
  --menuBorder:rgba(255,255,255,.14);
}

*{box-sizing:border-box;margin:0;padding:0}

html,body{
  height:100%;
  overflow:hidden;
  font-family:Arial,Helvetica,sans-serif;
}

body{
  background:#000;
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:-30px;
  background-color:#202020;
  background-image:var(--cover);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:blur(34px) brightness(.55);
  transform:scale(1.16);
  z-index:-2;
  transition:background-image .35s ease;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 40%,
    #ffffff 40%,
    #ffffff 100%);
  z-index:-1;
}

.app{
  width:100%;
  height:100dvh;
  display:flex;
  justify-content:center;
}

.phone{
  width:min(100vw,430px);
  height:100dvh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:16px 0;
  position:relative;
}

.title{
  font-size:clamp(24px,5vw,34px);
  font-weight:900;
  color:white;
  text-shadow:0 3px 8px rgba(0,0,0,.5);
}


.coverBox{
  margin-top:24px;
  position:relative;
  width:min(68vw,320px);
  height:min(68vw,320px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.wave{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:16px;
  border:3px solid rgba(255,255,255,0.6);
  animation:pulse 2s infinite;
}

.wave:nth-child(2){animation-delay:.6s}
.wave:nth-child(3){animation-delay:1.2s}

@keyframes pulse{
  0%{transform:scale(.9);opacity:.6}
  70%{transform:scale(1.35);opacity:0}
  100%{opacity:0}
}

.cover{
  width:100%;
  height:100%;
  border-radius:16px;
  border:6px solid white;
  background-image:var(--cover);
  background-size:cover;
  background-position:center;
  z-index:2;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
  transition:background-image .35s ease;
}

.play{
  position:absolute;
  right:-10px;
  bottom:-30px;
  width:70px;
  height:70px;
  background:var(--red);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  cursor:pointer;
  z-index:3;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
}

.play::before{
  content:"";
  display:block;
  width:0;
  height:0;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  border-left:22px solid white;
  margin-left:4px;
}

.play.playing::before{
  content:"";
  display:block;
  width:18px;
  height:20px;
  border:none;
  margin-left:0;
  background:
  linear-gradient(to right,
  white 0 6px,
  transparent 6px 12px,
  white 12px 18px);
}

.metaRow{
  margin-top:44px;
  width:min(94%,390px);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}

.liveMetaBadge{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:24px;
  padding:0 8px;
  border-radius:8px;
  background:#e40000;
  color:#fff;
  font-weight:900;
  font-size:10px;
  letter-spacing:.3px;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(228,0,0,.28);
}

.liveIcon{
  position:relative;
  width:16px;
  height:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.liveIcon::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:4px;
  height:4px;
  margin-top:-2px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 0 8px rgba(255,255,255,.8);
}
.liveIcon i,
.liveIcon b{
  position:absolute;
  left:3px;
  top:50%;
  border:2px solid transparent;
  border-left:none;
  border-radius:0 999px 999px 0;
  transform:translateY(-50%);
}
.liveIcon i{
  width:7px;
  height:7px;
  border-right-color:#fff;
  animation:liveSignal 1.2s ease-in-out infinite;
}
.liveIcon b{
  width:12px;
  height:12px;
  border-right-color:#fff;
  opacity:.9;
  animation:liveSignal 1.2s ease-in-out infinite .2s;
}
@keyframes liveSignal{
  0%,100%{opacity:.35;transform:translateY(-50%) scale(.92)}
  50%{opacity:1;transform:translateY(-50%) scale(1.08)}
}

.songWrap{
  margin-top:0;
  width:100%;
  flex:1 1 auto;
  background:rgba(0,0,0,.55);
  color:white;
  border-radius:10px;
  backdrop-filter:blur(6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}

.marquee{
  display:flex;
  align-items:center;
  min-height:50px;
  white-space:nowrap;
  overflow:hidden;
  position:relative;
}

.marqueeTrack{
  display:inline-block;
  padding-left:100%;
  animation:scrollText 16s linear infinite;
  font-weight:900;
  font-size:clamp(16px,4vw,22px);
  will-change:transform;
}

.marqueeTrack span{
  display:inline-block;
  padding-right:70px;
}

@keyframes scrollText{
  0%{transform:translateX(0)}
  100%{transform:translateX(-100%)}
}

/* ecualizador recto y más transparente */
.visualizer{
  position:relative;
  z-index:2;
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:2px;
  padding:8px;
  pointer-events:none;
  z-index:1;
  opacity:.35;
}

.bar{
  flex:1;
  min-width:3px;
  max-width:6px;
  height:10px;
  background:#fff;
  opacity:.55;
}

.socialRow{
  position:absolute;
  left:12px;
  right:12px;
  bottom:170px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  z-index:12;
  width:auto;
  max-width:none;
}

.social{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:nowrap;
  flex:1 1 auto;
  min-width:0;
}

.icon{
  width:38px;
  height:38px;
  min-width:38px;
  flex:0 0 38px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:bold;
  font-size:20px;
  position:relative;
  overflow:visible;
  margin-left:0;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.social .icon:first-child{
  margin-left:0;
}

.icon img{
  width:31px;
  height:31px;
  object-fit:contain;
  display:block;
  position:relative;
  z-index:2;
}

.icon::before,
.icon::after{
  content:"";
  position:absolute;
  border-radius:16px;
  pointer-events:none;
}

.icon::before{
  inset:1px;
  border:3px solid rgba(255,255,255,.40);
  opacity:.95;
  box-shadow:0 0 6px rgba(255,255,255,.10);
  animation:socialPulseOuter 1.5s ease-in-out infinite;
}

.icon::after{
  inset:-1px;
  border:2px solid rgba(255,255,255,.28);
  opacity:.95;
  animation:socialPulseInner 1.5s ease-in-out infinite;
}

@keyframes socialPulseOuter{
  0%,100%{opacity:.95;transform:scale(1)}
  50%{opacity:.55;transform:scale(1.035)}
}

@keyframes socialPulseInner{
  0%,100%{opacity:.85;transform:scale(1)}
  50%{opacity:.35;transform:scale(1.06)}
}

.chatLiveBtn{
  --chatBg:#ffffff;
  --chatFg:#111111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:0 10px 0 5px;
  min-height:36px;
  min-width:0;
  max-width:132px;
  flex:0 1 132px;
  border-radius:999px;
  background:var(--chatBg);
  color:var(--chatFg);
  font-weight:900;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.15px;
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.22);
  animation:chatLiveColors 8s linear infinite, chatLiveFloat 1.8s ease-in-out infinite;
  transition:transform .2s ease, box-shadow .2s ease;
}

.chatLiveIcon{
  width:30px;
  height:30px;
  border-radius:16px;
  background:currentColor;
  position:relative;
  flex:0 0 auto;
  animation:chatIconPulse 1.2s ease-in-out infinite;
}

.chatLiveIcon::before{
  content:"";
  position:absolute;
  inset:6px 7px 8px 7px;
  background:var(--chatBg);
  border-radius:9px;
}

.chatLiveIcon::after{
  content:"";
  position:absolute;
  left:9px;
  top:11px;
  width:4px;
  height:4px;
  border-radius:16px;
  background:currentColor;
  box-shadow:6px 0 0 currentColor, 12px 0 0 currentColor;
}

.chatLiveIcon i{
  position:absolute;
  left:8px;
  bottom:5px;
  width:0;
  height:0;
  border-left:4px solid transparent;
  border-right:0 solid transparent;
  border-top:6px solid var(--chatBg);
  }

.chatLiveIcon span{
  position:absolute;
  inset:-4px;
  border-radius:16px;
  border:2px solid currentColor;
  opacity:0;
  animation:chatRing 1.4s ease-out infinite;
}

.chatLiveText{
  display:inline-block;
  color:inherit;
}

@keyframes chatLiveColors{
  0%{--chatBg:#ffffff;--chatFg:#111111}
  12.5%{--chatBg:#ff2d55;--chatFg:#ffffff}
  25%{--chatBg:#ffcc00;--chatFg:#111111}
  37.5%{--chatBg:#19c37d;--chatFg:#111111}
  50%{--chatBg:#00c2ff;--chatFg:#111111}
  62.5%{--chatBg:#3559ff;--chatFg:#ffffff}
  75%{--chatBg:#8b2eff;--chatFg:#ffffff}
  87.5%{--chatBg:#111111;--chatFg:#ffffff}
  100%{--chatBg:#ffffff;--chatFg:#111111}
}

@keyframes chatLiveFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-2px)}
}

@keyframes chatIconPulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.08)}
}

@keyframes chatRing{
  0%{opacity:.75;transform:scale(.82)}
  100%{opacity:0;transform:scale(1.28)}
}


.socialLink{
  text-decoration:none;
}

.icon svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
  position:relative;
  z-index:2;
}

.icon img{
  display:none !important;
}

.social-facebook, [data-social="facebook"] { background: #1877f2 !important; }
.social-whatsapp, [data-social="whatsapp"] { background: #25d366 !important; }
.social-tiktok, [data-social="tiktok"] { background: #000000 !important; }
.social-youtube, [data-social="youtube"] { background: #ff0000 !important; }
.social-instagram, [data-social="instagram"] { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
.social-twitterx, [data-social="twitterx"] { background: #000000 !important; border: 1px solid rgba(255,255,255,0.2) !important; }
.social-web, [data-social="web"] { background: #2563eb !important; }

.fb,.ig,.tw,.tk{background:transparent}




.playerBar{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:80px;
  width:min(95vw,420px);
  height:74px;
  border-radius:20px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  z-index:45;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  overflow:hidden;
  background:none;
}
.playerBar::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:inherit;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:blur(24px) brightness(.55);
  transform:scale(1.2);
  z-index:0;
}
.playerBar::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.28);
  z-index:1;
}
.playerBar::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.38);
  pointer-events:none;
  z-index:1;
}

.playerBar img{
  position:relative;
  z-index:2;
  width:52px;
  height:52px;
  border-radius:12px;
  object-fit:cover;
  background:#2f3b3b;
  flex:0 0 52px;
}

.barInfo{
  position:relative;
  z-index:2;
  flex:1 1 auto;
  min-width:0;
  overflow:hidden;
}

#barTitle{
  font-size:14px;
  font-weight:900;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  line-height:1.15;
}

#barArtist{
  font-size:12px;
  color:rgba(255,255,255,.8);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  margin-top:4px;
}

.barEq{
  position:relative;
  z-index:2;
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  display:flex;
  align-items:flex-end;
  justify-content:space-evenly;
  gap:3px;
  padding:10px 14px;
  pointer-events:none;
  z-index:1;
  opacity:.38;
}

.barEq span{
  flex:1 1 auto;
  max-width:6px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
  height:8px;
  transform-origin:bottom center;
  transition:height .12s linear, opacity .12s linear;
  opacity:.45;
}

#barPlay{
  position:relative;
  z-index:2;
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fff;
  border:none;
  cursor:pointer;
  position:relative;
  flex:0 0 46px;
}

#barPlay::before{
  content:"";
  position:absolute;
  left:18px;
  top:13px;
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:15px solid #111;
}

#barPlay.playing::before{
  width:12px;
  height:16px;
  border:none;
  left:17px;
  top:15px;
  background:linear-gradient(to right,#111 0 4px,transparent 4px 8px,#111 8px 12px);
}


.playerFull{
  position:fixed;
  left:0;
  right:0;
  bottom:-100%;
  height:100dvh;
  background:linear-gradient(180deg,#5a2bd8 0%, #2b145f 70%, #4f4470 100%);
  transition:bottom .4s ease;
  z-index:120;
  border-top-left-radius:28px;
  border-top-right-radius:28px;
  overflow:hidden;
}
.playerFull.active{
  bottom:0;
}
.playerFull::before{
  content:"";
  position:absolute;
  inset:-30px;
  background-image:var(--cover);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:blur(36px) brightness(.42);
  transform:scale(1.18);
  opacity:1;
  z-index:0;
}
.playerFull canvas#particlesCanvas{mix-blend-mode:screen;}
.fullHeader{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:18px 18px 8px;
  color:#fff;
  font-size:24px;
  font-weight:900;
}
.fullHandle{
  display:inline-block;
  cursor:pointer;
  line-height:1;
}
.fullContent{
  position:relative;
  z-index:2;
  height:calc(100% - 56px);
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:10px 24px 30px;
  color:#fff;
}
.fullTopLogo{
  width:220px;
  max-width:78%;
  object-fit:contain;
  margin:6px auto 20px;
  display:block;
display:none !important;
}
.fullCover{
  width:min(78vw,320px);
  height:min(78vw,320px);
  border-radius:28px;
  background:rgba(255,255,255,.04) center/cover no-repeat;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
}
.fullLiveRow{
  width:min(92vw,460px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:18px 0 20px;
}
.fullLiveLine{
  flex:1;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
}
.fullLiveBadge{
  background:#fff;
  color:#111;
  border-radius:12px;
  padding:8px 14px;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
}
.fullMeta{
  width:min(86vw,360px);
  text-align:left;
  margin-top:2px;
}
#fullTitle{
  font-size:22px;
  line-height:1.15;
  font-weight:900;
  color:#fff;
}
#fullArtist{
  font-size:18px;
  color:rgba(255,255,255,.9);
  margin-top:4px;
}
.fullProgress{
  width:min(86vw,360px);
  margin-top:24px;
}
.fullProgressLine{
  height:4px;
  background:rgba(255,255,255,.95);
  border-radius:999px;
  width:100%;
}
.fullTime{
  color:#fff;
  font-size:12px;
  font-weight:700;
  margin-top:12px;
}
.fullControls{
  margin-top:auto;
  width:min(96vw,520px);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}
.fullMainControls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  width:100%;
}
.fullPrev,.fullNext{
  width:42px;
  height:42px;
  border:none;
  background:transparent;
  color:rgba(255,255,255,.55);
  font-size:34px;
  line-height:1;
}
.fullPlay{
  width:96px;
  height:96px;
  border-radius:50%;
  border:none;
  background:#fff;
  position:relative;
  box-shadow:0 16px 30px rgba(0,0,0,.25);
}
.fullPlay::before{
  content:"";
  position:absolute;
  left:39px;
  top:30px;
  width:0;
  height:0;
  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
  border-left:26px solid #352274;
}
.fullPlay.playing::before{
  content:"";
  position:absolute;
  width:22px;
  height:30px;
  border:none;
  left:37px;
  top:33px;
  background:linear-gradient(to right,#352274 0 8px,transparent 8px 14px,#352274 14px 22px);
}
.fullVolumeWrap{
  width:100%;
  max-width:420px;
  display:grid;
  grid-template-columns:40px 1fr 40px;
  align-items:center;
  gap:12px;
}
.fullVolumeBtn{
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}
.fullVolumeBtn svg{
  width:28px;
  height:28px;
  display:block;
  stroke:#fff;
  fill:none;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.fullVolumeMiddle{
  width:100%;
}
#fullVolumeSlider{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:16px;
  border-radius:999px;
  background:linear-gradient(to right,#ffffff 0%,#ffffff 73%,rgba(255,255,255,.28) 73%,rgba(255,255,255,.28) 100%);
  outline:none;
}
#fullVolumeSlider::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#fff;
  border:none;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
  cursor:pointer;
}
#fullVolumeSlider::-moz-range-thumb{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#fff;
  border:none;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
  cursor:pointer;
}
#fullVolumeSlider::-moz-range-track{
  height:16px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.28);
}
.fullVolumeText{
  color:#fff;
  opacity:.9;
  font-size:11px;
  margin-top:6px;
  text-align:center;
}

.bottomMenu{
  position:fixed;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(100vw,430px);
  height:65px;
  background:var(--menuBg);
  transition:background .45s ease, border-color .45s ease, box-shadow .45s ease;
  display:flex;
  align-items:flex-start;
  justify-content:space-around;
  padding:6px 8px 6px;
  border-top:1px solid var(--menuBorder);
  box-shadow:0 -6px 18px rgba(0,0,0,.18);
  z-index:50;
}

.menuItem{
  flex:1;
  text-decoration:none;
  color:rgba(255,255,255,.95);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  font-size:11px;
  font-weight:500;
}

.menuItem svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.menuItem .label{
  line-height:1;
}

.bottom{
  height:140px;
  flex:0 0 auto;
}

.metaRow,
.coverBox,
.title{
  position:relative;
  z-index:8;
}


.newsScreen{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  top:0;
  bottom:156px;
  width:min(100vw,430px);
  z-index:44;
  display:none;
  flex-direction:column;
  background:#ececec;
  color:#111827;
  overflow:hidden;
}
.newsScreen.active{display:flex}
.newsTop{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:18px 16px 14px;
  box-shadow:0 2px 10px rgba(0,0,0,.12);
  background:transparent;
  isolation:isolate;
  display:flex;
  align-items:center;
  gap:10px;
}
.newsTop::before{content:"";position:absolute;inset:-12px;background-image:var(--cover);background-size:cover;background-position:center;filter:blur(22px) brightness(.55);transform:scale(1.12);z-index:-2}
.newsTop::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.18);z-index:-1}
.newsBtn{
  border:none;
  cursor:pointer;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:26px;
  font-weight:900;
  flex:0 0 44px;
}
.newsTopTitle{flex:1; min-width:0}
.newsTopTitle strong{display:block; font-size:20px; font-weight:900; text-transform:uppercase}
.newsTopTitle span{display:block; font-size:12px; opacity:.85; margin-top:3px}
.newsBody{flex:1; overflow:auto; padding:14px 14px 8px}
.newsStatus{
  display:none; background:#fff; border:1px solid rgba(15,23,42,.08);
  padding:14px; border-radius:12px; margin-bottom:14px;
  box-shadow:0 10px 22px rgba(15,23,42,.06); color:#475569;
}
.newsStatus.show{display:block}
.newsFeatured{
  display:none; background:#eef1f7; border:1px solid rgba(15,23,42,.08); border-left:8px solid #2338d0;
  border-radius:22px; padding:14px; gap:14px; align-items:center;
  box-shadow:0 10px 24px rgba(15,23,42,.06); text-decoration:none; color:#111827; cursor:pointer;
}
.newsFeatured.show{display:flex}
.newsFeaturedThumb{
  width:92px; height:92px; min-width:92px; border-radius:16px;
  background:#d9deea center/cover no-repeat; border:5px solid #2b38c8;
  box-shadow:0 8px 22px rgba(35,56,208,.20); display:none;
}
.newsFeaturedText h2{
  margin:0; font-size:19px; line-height:1.24; font-weight:900;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.newsFeaturedText p{
  margin:8px 0 0; font-size:11px; color:#475569; line-height:1.45;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.newsSection{
  margin-top:18px; display:flex; align-items:center; gap:12px; padding:16px 18px;
  background:#ffffff; color:#fff;
  border-radius:12px; box-shadow:0 12px 28px rgba(3,19,53,.18);
}
.newsSection strong{font-size:18px; font-weight:900; letter-spacing:.4px}
.newsSection svg{width:22px; height:22px; flex:0 0 auto}
.newsSectionLine{flex:1; height:3px; background:#fff; border-radius:999px; margin-left:12px}
.newsGrid{display:grid; grid-template-columns:1fr; gap:14px; margin-top:16px}
.newsCard{
  border-radius:12px; overflow:hidden; background:#0f172a; color:#fff;
  box-shadow:0 12px 30px rgba(15,23,42,.12); cursor:pointer;
}
.newsThumb{
  width:100%; aspect-ratio:16/9; background:#d8dee9 center/cover no-repeat; position:relative; display:none;
}
.newsThumb::after{
  content:""; position:absolute; inset:0;
  background:#ffffff;
}
.newsContent{position:relative; margin-top:-108px; padding:0 16px 16px; z-index:1}
.newsBadge{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:40px; padding:0 16px; border-radius:14px;
  background:#2338d0; color:#fff; font-weight:900; font-size:12px;
  text-transform:uppercase; box-shadow:0 8px 20px rgba(35,56,208,.30); margin-bottom:12px;
}
.newsCard h3{
  margin:0; font-size:18px; line-height:1.26; font-weight:900;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.newsCard p{
  margin:10px 0 0; font-size:11px; line-height:1.45; color:rgba(255,255,255,.92);
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.newsMeta{
  display:flex; justify-content:space-between; gap:10px; margin-top:12px;
  font-size:11px; color:rgba(255,255,255,.88); text-transform:uppercase;
}
.newsLeftMeta{display:flex; align-items:center; gap:8px}
.newsMiniLogo{
  width:28px; height:28px; border-radius:16px;
  background:url("cover.png") center/cover no-repeat;
  border:2px solid rgba(255,255,255,.82);
}
.newsEmpty{
  text-align:center; padding:22px 16px; color:#475569; font-size:14px; background:#fff;
  border-radius:12px; border:1px solid rgba(15,23,42,.08); box-shadow:0 10px 22px rgba(15,23,42,.05);
}
.newsModal{
  position:fixed; inset:0; z-index:220; display:none; background:rgba(2,6,23,.72);
  backdrop-filter:blur(10px); padding:18px 14px;
}
.newsModal.active{display:flex; align-items:flex-start; justify-content:center}
.newsModalBox{
  width:min(100%,430px); max-height:calc(100dvh - 36px); overflow:auto; border-radius:24px;
  background:#fff; box-shadow:0 24px 60px rgba(2,6,23,.35); border:1px solid rgba(15,23,42,.08);
}
.newsModalHead{
  position:sticky; top:0; z-index:3; display:flex; justify-content:space-between; gap:12px;
  padding:14px; background:#ffffff; color:#fff;
}
.newsModalHead strong{font-size:18px; line-height:1.15; font-weight:900}
.newsModalClose{
  border:none; width:42px; height:42px; border-radius:14px; background:rgba(255,255,255,.12);
  color:#fff; font-size:24px; font-weight:900; cursor:pointer;
}
.newsModalCover{width:100%; aspect-ratio:16/9; background:#d8dee9 center/cover no-repeat; display:none}
.newsModalBody{padding:16px 16px 22px}
.newsModalMeta{font-size:12px; color:#64748b; margin-bottom:12px; text-transform:uppercase}
.newsModalText{color:#111827; font-size:17px; line-height:1.65}
.newsModalText p{margin:0 0 14px}
.newsModalText img{max-width:100%; display:block; border-radius:16px; margin:14px 0}


.historyScreen{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  top:0;
  bottom:156px;
  width:min(100vw,430px);
  z-index:44;
  display:none;
  flex-direction:column;
  background:#ececec;
  color:#111827;
  overflow:hidden;
}
.historyScreen.active{display:flex}
.historyTop{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:18px 16px 14px;
  box-shadow:0 2px 10px rgba(0,0,0,.12);
  background:transparent;
  isolation:isolate;
  display:flex;
  align-items:center;
  gap:10px;
}
.historyTop::before{content:"";position:absolute;inset:-12px;background-image:var(--cover);background-size:cover;background-position:center;filter:blur(22px) brightness(.55);transform:scale(1.12);z-index:-2}
.historyTop::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.18);z-index:-1}
.historyBtn{
  border:none;
  cursor:pointer;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:26px;
  font-weight:900;
  flex:0 0 44px;
}
.historyTopTitle{flex:1; min-width:0}
.historyTopTitle strong{display:block; font-size:20px; font-weight:900; text-transform:uppercase}
.historyTopTitle span{display:block; font-size:12px; opacity:.85; margin-top:3px}
.historyBody{flex:1; overflow:auto; padding:14px 14px 8px}
.historyEmpty{
  text-align:center;
  padding:22px 16px;
  color:#475569;
  font-size:14px;
  background:#fff;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 22px rgba(15,23,42,.05);
}
.historyList{display:grid; grid-template-columns:1fr; gap:12px}
.historyCard{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:12px;
  align-items:center;
  padding:10px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 26px rgba(0,0,0,.10),0 5px 12px rgba(0,0,0,.05);
}
.historyThumb{
  width:64px;
  height:64px;
  border-radius:14px;
  background:#d8dee9 center/cover no-repeat;
  box-shadow:inset 0 6px 14px rgba(0,0,0,.10);
}
.historyMeta{min-width:0}
.historySong{
  font-size:15px;
  line-height:1.2;
  font-weight:900;
  color:#111;
  text-transform:uppercase;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.historyArtist{
  margin-top:4px;
  font-size:12px;
  line-height:1.3;
  color:#555;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.historyTime{
  margin-top:6px;
  font-size:11px;
  color:#888;
  font-weight:700;
  text-transform:uppercase;
}
@media (min-width: 992px){
  .historyScreen{display:none !important;}
}


.rankingScreen{position:fixed;left:50%;transform:translateX(-50%);top:0;bottom:156px;width:min(100vw,430px);z-index:44;display:none;flex-direction:column;background:#ececec;color:#111;overflow:hidden}
.rankingScreen.active{display:flex}
.rankingTop{position:relative;overflow:hidden;color:#fff;padding:18px 16px 14px;box-shadow:0 2px 10px rgba(0,0,0,.12);background:transparent;isolation:isolate}
.rankingTop::before{content:"";position:absolute;inset:-12px;background-image:var(--cover);background-size:cover;background-position:center;filter:blur(22px) brightness(.55);transform:scale(1.12);z-index:-2}
.rankingTop::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.18);z-index:-1}
.rankingTopRow{display:flex;align-items:center;justify-content:space-between;gap:10px}
.rankingTitle{font-size:18px;font-weight:300;letter-spacing:.8px;text-transform:uppercase}
.rankingClose{border:none;background:transparent;color:#fff;font-size:28px;line-height:1;cursor:pointer;padding:4px 6px}
.rankingBody{flex:1;overflow:auto;padding:14px 12px 10px}
.rankingGrid{display:grid;grid-template-columns:1fr;gap:12px}
.rankingCard{background:#fff;border-radius:16px;padding:10px 12px;box-shadow:0 12px 26px rgba(0,0,0,.16),0 5px 12px rgba(0,0,0,.08);display:grid;grid-template-columns:42px 120px 1fr;gap:12px;align-items:center;min-height:118px;width:100%}
.rankingNum{width:42px;height:42px;border-radius:12px;background:#111;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:16px}
.rankingVideoWrap{min-width:0}
.rankingThumbBtn{position:relative;display:block;width:100%;aspect-ratio:9/16;border:none;border-radius:12px;overflow:hidden;background:#000;cursor:pointer;box-shadow:inset 0 8px 18px rgba(0,0,0,.18);padding:0}
.rankingThumbBtn img{width:100%;height:100%;object-fit:cover;display:block}
.rankingThumbBtn::after{content:"▶";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:38px;height:38px;border-radius:50%;background:rgba(0,0,0,.55);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:900;backdrop-filter:blur(4px)}
.rankingFrame{position:relative;width:100%;aspect-ratio:9/16;border-radius:12px;overflow:hidden;background:#000;box-shadow:inset 0 8px 18px rgba(0,0,0,.18)}
.rankingFrame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.rankingMeta{min-width:0;display:flex;flex-direction:column;justify-content:center;align-self:stretch}
.rankingArtist{font-size:17px;line-height:1.15;font-weight:900;color:#111;text-transform:uppercase;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.rankingSong{margin-top:6px;font-size:12px;color:#555;line-height:1.25;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.rankingEmpty{background:#fff;border-radius:16px;padding:18px;text-align:center;color:#666;font-size:14px}
@media (max-width:380px){.rankingCard{grid-template-columns:38px 102px 1fr;gap:10px;padding:10px}.rankingNum{width:38px;height:38px;font-size:14px}}

.programsScreen{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  top:0;
  bottom:156px;
  width:min(100vw,430px);
  z-index:44; display:none; flex-direction:column;
  background:#ececec; color:#111; overflow:hidden;
}
.programsScreen.active{display:flex}
.programsTop{position:relative;overflow:hidden;color:#fff;padding:18px 16px 14px;box-shadow:0 2px 10px rgba(0,0,0,.12);background:transparent;isolation:isolate}
.programsTop::before{content:"";position:absolute;inset:-12px;background-image:var(--cover);background-size:cover;background-position:center;filter:blur(22px) brightness(.55);transform:scale(1.12);z-index:-2}
.programsTop::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.18);z-index:-1}
.programsTopRow{display:flex;align-items:center;justify-content:space-between;gap:10px}
.programsTitle{font-size:18px;font-weight:300;letter-spacing:.8px;text-transform:uppercase}
.programsClose{border:none;background:transparent;color:#fff;font-size:28px;line-height:1;cursor:pointer;padding:4px 6px}
.programsDays{margin-top:14px;display:flex;overflow:auto;gap:4px;-ms-overflow-style:none;scrollbar-width:none}
.programsDays::-webkit-scrollbar{display:none}
.programDay{border:none;background:transparent;color:rgba(255,255,255,.72);min-width:56px;padding:10px 8px 12px;font-size:14px;cursor:pointer;position:relative}
.programDay.active{color:#fff}
.programDay.active::after{content:"";position:absolute;left:8px;right:8px;bottom:0;height:3px;border-radius:999px;background:#fff}
.programsBody{flex:1;overflow:auto;padding:12px 10px 8px}
.programsList{display:flex;flex-direction:column;gap:12px}
.programCard{display:grid;grid-template-columns:90px 96px 1fr;align-items:stretch;border-radius:18px;overflow:hidden;background:#ffffff;box-shadow:0 12px 26px rgba(0,0,0,.16),0 5px 12px rgba(0,0,0,.08);min-height:116px;transform:translateZ(0);transition:transform .25s ease, box-shadow .25s ease}
.programTime{position:relative;overflow:hidden;background:#f4f4f4;color:#111;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:900;border-right:1px solid #ececec}.programTime::before,.programTime::after{display:none}
.programThumbWrap{background:#fff;display:flex;align-items:center;justify-content:center;padding:10px;border-right:1px solid #f1f1f1}
.programThumb{width:74px;height:74px;border-radius:18px;background:#c76f23 center/cover no-repeat;box-shadow:inset 0 6px 14px rgba(0,0,0,.14)}
.programInfo{position:relative;overflow:hidden;background:#ffffff;padding:16px 14px;display:flex;flex-direction:column;justify-content:center}.programInfo::before,.programInfo::after{display:none}
.programTitle{font-size:17px;line-height:1.12;font-weight:900;color:#111;text-transform:uppercase}
.programDesc{font-size:12px;margin-top:6px;color:#444;text-transform:uppercase}
.programEmpty{background:#fff;border-radius:16px;padding:18px;text-align:center;color:#666;font-size:14px}
.programCard:hover{transform:translateY(-3px) scale(1.01);box-shadow:0 18px 40px rgba(0,0,0,.25),0 8px 18px rgba(0,0,0,.12)}
.liveBadge{display:inline-flex;align-items:center;gap:6px;align-self:flex-start;background:#e30000;color:#fff;font-weight:900;font-size:10px;padding:5px 9px;border-radius:999px;margin-bottom:8px;box-shadow:0 6px 14px rgba(227,0,0,.35);animation:livePulse 1.2s infinite}
.liveBadgeDot{width:7px;height:7px;border-radius:50%;background:#fff;box-shadow:0 0 10px rgba(255,255,255,.95)}
@keyframes livePulse{0%{transform:scale(1)}50%{transform:scale(1.08)}100%{transform:scale(1)}}

.locutoresScreen{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  top:0;
  bottom:156px;
  width:min(100vw,430px);
  z-index:44;
  display:none;
  flex-direction:column;
  background:#ececec;
  color:#111;
  overflow:hidden;
}
.locutoresScreen.active{display:flex}
.locutoresTop{position:relative;overflow:hidden;color:#fff;padding:18px 16px 14px;box-shadow:0 2px 10px rgba(0,0,0,.12);background:transparent;isolation:isolate}
.locutoresTop::before{content:"";position:absolute;inset:-12px;background-image:var(--cover);background-size:cover;background-position:center;filter:blur(22px) brightness(.55);transform:scale(1.12);z-index:-2}
.locutoresTop::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.18);z-index:-1}
.locutoresTopRow{display:flex;align-items:center;justify-content:space-between;gap:10px}
.locutoresTitle{font-size:18px;font-weight:300;letter-spacing:.8px;text-transform:uppercase}
.locutoresClose{border:none;background:transparent;color:#fff;font-size:28px;line-height:1;cursor:pointer;padding:4px 6px}
.locutoresBody{flex:1;overflow:auto;padding:14px 12px 10px}
.locutoresGrid{display:grid;grid-template-columns:1fr;gap:12px}
.locutorCard{background:#fff;border-radius:16px;padding:10px 12px;box-shadow:0 12px 26px rgba(0,0,0,.16),0 5px 12px rgba(0,0,0,.08);display:flex;align-items:center;gap:14px;text-align:left;min-height:160px;width:100%}
.locutorPhoto{width:95px;height:150px;flex:0 0 95px;border-radius:0;background:#ddd center/cover no-repeat;box-shadow:inset 0 8px 18px rgba(0,0,0,.14)}
.locutorInfo{min-width:0;flex:1;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;text-align:left}
.locutorName{font-size:17px;line-height:1.15;font-weight:900;color:#111;text-transform:uppercase;text-align:left;width:100%}
.locutorRole{margin-top:5px;font-size:12px;color:#555;text-transform:none;line-height:1.25;text-align:left;width:100%}
.locutoresEmpty{background:#fff;border-radius:16px;padding:18px;text-align:center;color:#666;font-size:14px}
@media (max-width:380px){
  .locutorPhoto{width:90px;height:140px;flex-basis:90px}
}


.barEq{left:74px !important;right:14px !important;top:auto !important;bottom:10px !important;height:24px !important;padding:0 !important;z-index:1 !important;opacity:.22 !important}
.playerBar img,.barInfo,#barPlay{z-index:3 !important}


@media (max-width: 380px){
  .socialRow{
    left:12px;
    right:10px;
    gap:6px;
  }

  .social{
    gap:6px;
  }

  .icon{
    width:34px;
    height:34px;
    min-width:34px;
    flex:0 0 34px;
  }

  .icon img{
    width:24px;
    height:24px;
  }

  .chatLiveBtn{
    max-width:110px;
    flex-basis:110px;
    font-size:10px;
    padding:0 8px 0 5px;
  }

  .chatLiveIcon{
    width:24px;
    height:24px;
    min-width:24px;
    flex:0 0 24px;
  }
}





.sliderPanel::before,



.sliderPanel img:hover{
  transform:scale(1.03);
}

.sliderPanel:hover::after{
  opacity:1;
}








.sliderLabel{
  position:absolute;
  top:-25px;
  left:5%;
  font-weight:900;
  font-size:14px;
  color:#000;
}





.sliderTitle{
  width:80%;
  margin:14px auto 8px auto;
  font-weight:900;
  font-size:14px;
  color:#111;
  display:flex;
  align-items:center;
  gap:8px;
  text-transform:uppercase;
  line-height:1.1;
}

.sliderPanel{
  margin-top:0;
  width:80%;
  height:110px;
  margin-left:auto;
  margin-right:auto;
  border-radius:12px;
  overflow:hidden;
}

.slideTrack{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .7s ease-in-out;
  will-change:transform;
}

.slideTrack img, 
.slideTrack a{
  width:100%;
  height:100%;
  object-fit:cover;
  flex:0 0 100%;
  display:block;
}

.sliderPanel img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


.coverMeta{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  padding:14px;
  background:linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color:#fff;
  font-weight:900;
}

#songTitle{
  font-size:18px;
  line-height:1.2;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

#songArtist{
  font-size:14px;
  opacity:.85;
  margin-top:4px;
}


.liveTag{
  background:#e30000;
  color:#fff;
  font-size:11px;
  font-weight:900;
  padding:4px 8px;
  border-radius:6px;
  display:inline-block;
  margin-bottom:6px;
}


/* ARREGLO: ocultar solo la barra negra y "EMITIENDO EN DIRECTO" sin tocar sliders */
.liveMetaBadge,
.songWrap{
  display:none !important;
}
.metaRow{
  margin-top:0 !important;
  gap:0 !important;
  min-height:0 !important;
}


.logoTop{
  width:200px;
  max-width:80%;
  display:block;
  margin:auto;
  object-fit:contain;
}


#particlesCanvas{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:1;opacity:0;transition:opacity .25s ease;}
.visualizer{z-index:0 !important;}
.barEq{z-index:10 !important;}
.playerBar{z-index:20 !important;}

.play{display:none !important;}


/* ocultar boton rojo superior sin romper JS */
.play{
  display:none !important;
}


/* ocultar logo principal cuando el panel sube */
.playerFull.active ~ .app .logoTop,
.playerFull.active ~ .app .title,
body.panel-open .logoTop,
body.panel-open .title{
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}


.tvLiveBtn{
  position:absolute;
  top:10px;
  right:10px;
  background:#fff;
  color:#111;
  font-weight:900;
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  z-index:25;
  cursor:pointer;
  border:none;
}

.tvIcon{
  width:22px;
  height:16px;
  background:#e30000;
  border-radius:5px;
  position:relative;
  display:inline-block;
  flex:0 0 auto;
}

.tvIcon::after{
  content:"";
  position:absolute;
  left:8px;
  top:4px;
  width:0;
  height:0;
  border-top:4px solid transparent;
  border-bottom:4px solid transparent;
  border-left:7px solid #fff;
}

.tvLiveBtn:hover{
  transform:scale(1.03);
}


.tvScreen{
  position:fixed;
  inset:0;
  width:100%;
  height:100dvh;
  background:#000;
  z-index:9999;
  display:none;
  overflow:hidden;
}
.tvScreen.active{
  display:block;
}


/* TV PC estilo interno tipo modal */
@media (min-width: 992px){
  body.desktop-pc-mode .tvScreen.active{
    display:block !important;
    background:#e2a700 !important;
    z-index:999999 !important;
  }



  body.desktop-pc-mode .tvDiagonalOverlay{
    position:absolute !important;
    inset:0 !important;
    z-index:0 !important;
    pointer-events:none !important;
    overflow:hidden !important;
    display:none !important;
  }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalOverlay{
    display:block !important;
  }
  body.desktop-pc-mode .tvDiagonalText{
  animation: peruplayDiagonalDrift 4s linear infinite !important;

    position:absolute !important;
    left:-22vw !important;
    width:150vw !important;
    color:rgba(255,255,255,.18) !important;
    font-weight:900 !important;
    font-size:58px !important;
    line-height:1 !important;
    letter-spacing:2px !important;
    white-space:nowrap !important;
    text-align:center !important;
    transform:rotate(-28deg) !important;
    transform-origin:center !important;
    animation:peruplayDiagonalDrift 16s linear infinite !important;
    user-select:none !important;
  }
  body.desktop-pc-mode .tvDiagonalText.r1{ top:4% !important; animation-delay:0s !important; }
  body.desktop-pc-mode .tvDiagonalText.r2{ top:22% !important; animation-delay:-3s !important; }
  body.desktop-pc-mode .tvDiagonalText.r3{ top:40% !important; animation-delay:-6s !important; }
  body.desktop-pc-mode .tvDiagonalText.r4{ top:58% !important; animation-delay:-9s !important; }
  body.desktop-pc-mode .tvDiagonalText.r5{ top:76% !important; animation-delay:-12s !important; }


  100%{
    transform: translate(600px, -600px) rotate(-28deg);
  }
}
  100%{ transform:translate3d(90px, -90px, 0) rotate(-28deg); }
}

  body.desktop-pc-mode .tvHeader{
    position:absolute !important;
    inset:0 !important;
    height:auto !important;
    min-height:0 !important;
    background:transparent !important;
    backdrop-filter:none !important;
    padding:0 !important;
    border-radius:0 !important;
    display:block !important;
    z-index:3 !important;
  }
  body.desktop-pc-mode .tvHeader span{display:none !important;}
  body.desktop-pc-mode .tvBackBtn{
    position:absolute !important;
    top:6px !important;
    right:8px !important;
    left:auto !important;
    width:34px !important;
    height:34px !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.18) !important;
    color:#fff !important;
    font-size:28px !important;
    line-height:1 !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    backdrop-filter:blur(4px);
  }
  body.desktop-pc-mode .tvVideoWrap{
    position:absolute !important;
    left:50% !important;
    top:52% !important;
    transform:translate(-50%,-50%) !important;
    width:min(64vw, 795px) !important;
    aspect-ratio:16 / 9 !important;
    height:auto !important;
    border-radius:0 !important;
    overflow:hidden !important;
    background:#000 !important;
    z-index:2 !important;
    box-shadow:none !important;
  }
  body.desktop-pc-mode #tvVideo{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    transform:none !important;
    object-fit:contain !important;
    background:#000 !important;
  }
  body.desktop-pc-mode .tvScreen.active .tvListenLiveBtn{
    display:inline-flex !important;
    position:absolute !important;
    left:50% !important;
    bottom:44px !important;
    transform:translateX(-50%) !important;
    min-height:42px !important;
    padding:0 18px !important;
    border-radius:999px !important;
    border:2px solid #fff !important;
    background:transparent !important;
    color:#fff !important;
    font-weight:900 !important;
    font-size:13px !important;
    align-items:center !important;
    gap:10px !important;
    z-index:3 !important;
    box-shadow:none !important;
  }
  body.desktop-pc-mode .tvScreen.active .tvListenLiveBtn i{
    width:30px;
    height:30px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#e2a700;
    font-style:normal;
    font-size:16px;
    line-height:1;
  }
}
.tvListenLiveBtn{display:none;}
.tvHeader{
  position:absolute;
  top:10px;
  left:10px;
  right:10px;
  z-index:10001;
  height:50px;
  min-height:50px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 14px;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(8px);
  color:#fff;
  font-weight:900;
  font-size:16px;
  letter-spacing:.3px;
  border-radius:16px;
}
.tvBackBtn{
  border:none;
  background:transparent;
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  padding:0 6px 0 0;
}
.tvVideoWrap{
  position:relative;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
  background:#000;
}
#tvVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  background:#000;
}


.chatScreen{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  top:0;
  bottom:156px;
  width:min(100vw,430px);
  z-index:44;
  display:none;
  flex-direction:column;
  background:#ececec;
  overflow:hidden;
}
.chatScreen.active{display:flex}
.chatBody{flex:1;overflow:hidden;background:#fff;}
.chatBody iframe{width:100%;height:100%;border:none;background:#fff;display:block;}


@media (min-width: 768px) and (orientation: landscape){

  html, body{
    width:100% !important;
    height:100% !important;
    overflow:hidden !important;
    background:#000 !important;
  }

  body::before,
  .app,
  .phone,
  .bottomMenu,
  .playerBar{
    display:none !important;
  }

  body::after{
    content:"" !important;
    position:fixed !important;
    inset:0 !important;
    background:rgba(0,0,0,.18) !important;
    z-index:9998 !important;
  }

  .playerFull{
    position:fixed !important;
    inset:0 !important;
    width:100vw !important;
    height:100vh !important;
    display:block !important;
    bottom:0 !important;
    left:0 !important;
    right:0 !important;
    border-radius:0 !important;
    z-index:9999 !important;
    background:transparent !important;
  }

  .playerFull.active{
    bottom:0 !important;
  }

  .fullHeader{
    display:none !important;
  }

  .fullContent{
    position:relative !important;
    z-index:2 !important;
    width:100% !important;
    height:100vh !important;
    padding:40px 70px !important;
    display:grid !important;
    grid-template-columns: 320px 1fr 340px !important;
    grid-template-rows:auto auto auto !important;
    column-gap:56px !important;
    row-gap:18px !important;
    align-items:center !important;
    justify-items:start !important;
    justify-content:center !important;
  }

  .fullCover{
    grid-column:1 !important;
    grid-row:1 / span 3 !important;
    width:320px !important;
    height:320px !important;
    min-width:320px !important;
    margin:0 !important;
    border-radius:26px !important;
    box-shadow:0 18px 42px rgba(0,0,0,.35) !important;
    align-self:center !important;
    justify-self:start !important;
  }

  .fullLiveRow{
    grid-column:2 !important;
    grid-row:1 !important;
    width:100% !important;
    max-width:520px !important;
    margin:0 !important;
    justify-content:flex-start !important;
    gap:18px !important;
  }

  .fullLiveLine{
    flex:0 0 72px !important;
    width:72px !important;
    max-width:72px !important;
    height:4px !important;
    background:rgba(255,255,255,.98) !important;
  }

  .fullLiveBadge{
    background:#fff !important;
    color:#111 !important;
    border-radius:12px !important;
    padding:10px 18px !important;
    font-size:12px !important;
    font-weight:900 !important;
    white-space:nowrap !important;
  }

  .fullMeta{
    grid-column:2 !important;
    grid-row:2 !important;
    width:100% !important;
    max-width:520px !important;
    margin:0 !important;
    text-align:left !important;
    align-self:start !important;
  }

  #fullTitle{
    font-size:28px !important;
    line-height:1.08 !important;
    font-weight:900 !important;
    color:#fff !important;
    max-width:500px !important;
  }

  #fullArtist{
    font-size:20px !important;
    line-height:1.2 !important;
    color:rgba(255,255,255,.92) !important;
    margin-top:8px !important;
    max-width:500px !important;
  }

  .fullProgress{
    grid-column:2 !important;
    grid-row:3 !important;
    width:100% !important;
    max-width:380px !important;
    margin:0 !important;
    align-self:start !important;
  }

  .fullProgressLine{
    height:4px !important;
    background:rgba(255,255,255,.96) !important;
    border-radius:999px !important;
  }

  .fullTime{
    margin-top:8px !important;
    font-size:12px !important;
    font-weight:800 !important;
    color:#fff !important;
  }

  .fullControls{
    grid-column:3 !important;
    grid-row:1 / span 3 !important;
    width:340px !important;
    max-width:340px !important;
    margin:0 !important;
    align-self:center !important;
    justify-self:end !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:24px !important;
  }

  .fullMainControls{
    width:100% !important;
    justify-content:center !important;
    align-items:center !important;
    gap:34px !important;
  }

  .fullPrev,.fullNext{
    width:44px !important;
    height:44px !important;
    font-size:34px !important;
    color:rgba(255,255,255,.58) !important;
  }

  .fullPlay{
    width:96px !important;
    height:96px !important;
  }

  .fullVolumeWrap{
    width:100% !important;
    max-width:260px !important;
    grid-template-columns:34px 1fr 34px !important;
    gap:10px !important;
  }

  .fullVolumeText{
    text-align:left !important;
    font-size:12px !important;
    margin-top:6px !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){

  /* AJUSTE POSICIÓN EN DIRECTO MÁS CERCA */
  .fullLiveRow{
    margin-bottom: -10px !important;
    gap:10px !important;
  }

  .fullLiveLine{
    width:50px !important;
    flex:0 0 50px !important;
  }

  /* METADATA MÁS PEGADO */
  .fullMeta{
    margin-top: -10px !important;
  }

  /* MOVER CONTROLES DEBAJO DEL METADATA */
  .fullControls{
    grid-column:2 !important;
    grid-row:4 !important;
    width:100% !important;
    max-width:420px !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
    gap:18px !important;
  }

  /* PROGRESS ARRIBA DEL PLAY */
  .fullProgress{
    grid-column:2 !important;
    grid-row:3 !important;
  }

  /* CONTROLES MÁS PEGADOS */
  .fullMainControls{
    justify-content:flex-start !important;
  }

}


@media (min-width: 768px) and (orientation: landscape){

  .fullMeta{
    margin-bottom: 10px !important;
  }

  .fullProgress{
    margin-top: -10px !important;
  }

  .fullControls{
    margin-top: -20px !important;
  }

}


@media (min-width: 768px) and (orientation: landscape){

  .fullContent{
    grid-template-columns: 320px 1fr !important;
    grid-template-rows:auto auto auto auto !important;
  }

  .fullCover{
    grid-column:1 !important;
    grid-row:1 / span 4 !important;
  }

  .fullLiveRow{
    grid-column:2 !important;
    grid-row:1 !important;
    margin-bottom:0 !important;
  }

  .fullMeta{
    grid-column:2 !important;
    grid-row:2 !important;
    margin:0 !important;
  }

  .fullProgress{
    grid-column:2 !important;
    grid-row:3 !important;
    margin-top:6px !important;
  }

  .fullControls{
    grid-column:2 !important;
    grid-row:4 !important;
    margin-top:10px !important;
    align-items:flex-start !important;
  }

  .fullMainControls{
    justify-content:flex-start !important;
  }

}


@media (min-width: 768px) and (orientation: landscape){

  .fullContent{
    grid-template-columns: 320px 520px !important;
    grid-template-rows: auto auto auto auto !important;
    column-gap: 56px !important;
    row-gap: 12px !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .fullCover{
    grid-column: 1 !important;
    grid-row: 1 / span 4 !important;
    align-self: center !important;
  }

  .fullLiveRow{
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 !important;
    justify-content: flex-start !important;
  }

  .fullMeta{
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .fullProgress{
    grid-column: 2 !important;
    grid-row: 3 !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 !important;
    justify-self: start !important;
  }

  .fullControls{
    grid-column: 2 !important;
    grid-row: 4 !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 !important;
    margin-top: 6px !important;
    justify-self: start !important;
    align-self: start !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .fullMainControls{
    width: 100% !important;
    max-width: 320px !important;
    justify-content: flex-start !important;
    gap: 26px !important;
  }

  .fullVolumeWrap{
    width: 100% !important;
    max-width: 260px !important;
    margin-left: 0 !important;
  }

  .fullVolumeText{
    text-align: left !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullContent{ row-gap: 6px !important; }
  .fullControls{ margin-top: -12px !important; }
  .fullProgress{ margin-bottom: 2px !important; }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullControls{ margin-top: -30px !important; }
  .fullProgress{ margin-bottom: -4px !important; }
}


@media (min-width: 768px) and (orientation: landscape){

  /* SUBIR TIEMPO Y BARRA */
  .fullProgress{
    margin-bottom: -12px !important;
  }

  .fullTime{
    position:relative !important;
    top:-8px !important;
  }

  /* VOLUMEN MÁS ABAJO */
  .fullVolumeWrap{
    margin-top: 6px !important;
  }

}


@media (min-width: 768px) and (orientation: landscape){

  /* INTERCAMBIAR POSICIONES */
  .fullProgress{
    grid-row:4 !important;
  }

  .fullControls{
    grid-row:3 !important;
    margin-top:0 !important;
  }

}


@media (min-width: 768px) and (orientation: landscape){
  .fullMeta{
    margin-top: 20px !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullContent{
    row-gap: 22px !important;
  }

  .fullLiveRow{
    margin-bottom: 18px !important;
  }

  .fullMeta{
    grid-row: 2 !important;
    align-self: start !important;
    margin: 26px 0 0 0 !important;
    transform: translateY(28px) !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullControls{
    transform: translateY(-40px) !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullProgress{
    transform: translateY(-40px) !important;
  }
  .fullTime{
    transform: translateY(-40px) !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullProgress{
    transform: translateY(-55px) !important;
  }
  .fullTime{
    transform: translateY(-55px) !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullLiveRow{
    transform: translateY(20px) !important;
  }
}


@media (min-width: 768px) and (orientation: landscape){
  .fullLiveRow{
    transform: translateY(50px) !important;
  }
}



/* ===== DISEÑO SOLO PC ===== */
.desktop-vraem-shell{display:none;}
@media (min-width: 992px){
  html,body{overflow:hidden !important;}
  body.desktop-pc-mode{background:#eef0ec !important;}
  body.desktop-pc-mode::before{
    inset:0 !important;
    filter:none !important;
    transform:none !important;
    background:radial-gradient(circle at 20% 15%, rgba(171,187,174,.35), transparent 32%),
               linear-gradient(90deg,#ececeb 0%,#eff1ee 30%,#f3f4f2 60%,#edf0ed 100%) !important;
    background-image:none !important;
    z-index:0 !important;
  }
  body.desktop-pc-mode::after{display:none !important;}
  body.desktop-pc-mode .app,
  body.desktop-pc-mode .bottomMenu,
  body.desktop-pc-mode .playerBar,
  body.desktop-pc-mode .playerFull,
  body.desktop-pc-mode .programsScreen,
  body.desktop-pc-mode .newsScreen,
  body.desktop-pc-mode .rankingScreen,
  body.desktop-pc-mode .locutoresScreen,
  body.desktop-pc-mode .tvScreen,
  body.desktop-pc-mode .chatScreen{display:none !important;}

  body.desktop-pc-mode .desktop-vraem-shell{
    display:flex !important;
    position:fixed;
    inset:0;
    z-index:99999;
    align-items:center;
    justify-content:center;
    padding:32px 34px;
  }

  .desktop-vraem-wrap{
    width:min(1180px, calc(100vw - 60px));
    display:grid;
    grid-template-columns: 390px minmax(0,1fr);
    gap:54px;
    align-items:center;
  }

  .desktop-vraem-card{
    width:390px;
    height:390px;
    background:#030303;
    border-radius:34px;
    border:6px solid rgba(255,255,255,.86);
    box-shadow:0 18px 40px rgba(0,0,0,.18), 0 0 0 7px rgba(215,221,216,.55);
    position:relative;
    overflow:hidden;
    padding:24px 24px 22px;
  }

  .desktop-vraem-cover{
    position:absolute;
    inset:0;
    background:center/cover no-repeat;
    opacity:1;
  }

  .desktop-vraem-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.10);
  }

  .desktop-vraem-socials{
    position:absolute;
    left:0; right:0; bottom:22px;
    display:flex;
    justify-content:center;
    gap:12px;
    z-index:3;
  }

  .desktop-vraem-socials a{
    width:44px; height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    color:#fff;
    text-decoration:none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(3px);
  }

  .desktop-vraem-socials a svg{width:21px;height:21px;fill:currentColor;}

  .desktop-vraem-right{min-width:0;}

  .desktop-vraem-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#0bb11e;
    color:#fff;
    border-radius:999px;
    padding:9px 18px;
    font-weight:900;
    font-size:14px;
    letter-spacing:.4px;
    text-transform:uppercase;
    box-shadow:0 10px 22px rgba(11,177,30,.22);
  }

  .desktop-vraem-badge .bolt{font-size:17px;line-height:1;}

  .desktop-vraem-title{
    margin-top:28px;
    font-size:clamp(36px, 4vw, 54px);
    line-height:1.02;
    font-weight:900;
    color:#0d0d0d;
    letter-spacing:-1px;
    text-transform:uppercase;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }

  .desktop-vraem-artist{
    margin-top:22px;
    font-size:clamp(20px, 2vw, 34px);
    color:#27313a;
    font-weight:500;
    text-transform:uppercase;
    min-height:1.2em;
  }

  .desktop-vraem-actions{
    margin-top:34px;
    display:flex;
    flex-wrap:wrap;
    gap:16px;
  }

  .desktop-vraem-btn{
    border:none;
    min-width:194px;
    height:54px;
    padding:0 26px;
    border-radius:999px;
    background:#171717;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    text-transform:uppercase;
    box-shadow:0 10px 20px rgba(0,0,0,.10);
  }

  .desktop-vraem-btn svg{width:21px;height:21px;fill:#fff;stroke:none;}

  .desktop-vraem-btn.playing .desktop-vraem-play-icon{display:none;}
  .desktop-vraem-btn:not(.playing) .desktop-vraem-pause-icon{display:none;}

  .desktop-vraem-btn:active{transform:translateY(1px);}

  body.desktop-pc-mode .desktop-vraem-shell{
    flex-direction:column;
    gap:38px;
  }

  .desktop-vraem-topbar{
    width:min(1180px, calc(100vw - 60px));
  }

  .desktop-vraem-topbar-inner{
    min-height:96px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:10px 18px;
    border-radius:18px;
    background:rgba(233,233,233,.58);
    backdrop-filter:blur(8px);
    box-shadow:0 10px 26px rgba(0,0,0,.06);
  }

  .desktop-vraem-top-logo{
    border:none;
    background:transparent;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }

  .desktop-vraem-top-logo img{
    width:74px;
    height:auto;
    display:block;
    object-fit:contain;
  }

  .desktop-vraem-menu{
    flex:1;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:26px;
    flex-wrap:wrap;
  }

  .desktop-vraem-menu-link{
    border:none;
    background:transparent;
    padding:0;
    position:relative;
    color:#333;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    text-transform:uppercase;
  }

  .desktop-vraem-menu-link.active{
    color:#05b20f;
  }

  .desktop-vraem-menu-link.active::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-8px;
    height:3px;
    border-radius:999px;
    background:#05b20f;
  }

  .desktop-vraem-top-actions{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .desktop-vraem-top-icon{
    width:40px;
    height:40px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#333;
  }

  .desktop-vraem-top-icon svg{
    width:20px;
    height:20px;
    stroke:currentColor;
    fill:none;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .desktop-vraem-top-icon:first-child svg{
    fill:currentColor;
    stroke:none;
  }

}



/* ===== WEB PC DEBAJO DEL REPRODUCTOR ===== */
@media (min-width: 992px){
  html,body{overflow:auto !important;height:auto !important;}
  body.desktop-pc-mode .desktop-vraem-shell{
    position:relative !important;
    inset:auto !important;
    min-height:100vh;
    padding:26px 34px 70px !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    overflow:visible !important;
  }
  .desktop-vraem-topbar{
    position:sticky;
    top:18px;
    z-index:20;
  }
  .desktop-vraem-wrap{
    margin-top:20px;
    align-items:center;
  }
  .desktop-web-section{
    width:min(1180px, calc(100vw - 60px));
    margin-top:34px;
    position:relative;
  }
  .desktop-web-watermark{
    position:absolute;
    left:120px;
    top:-34px;
    font-size:84px;
    font-weight:900;
    letter-spacing:1px;
    color:rgba(0,0,0,.05);
    text-transform:uppercase;
    pointer-events:none;
    user-select:none;
  }
  .desktop-web-heading{
    position:relative;
    z-index:1;
    font-size:clamp(34px,4vw,52px);
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    color:#080808;
    margin-bottom:22px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  .desktop-web-heading .green{color:#06b512;}
  .desktop-locutores-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
  }
  .desktop-locutor-card{
    height:314px;
    border-radius:6px;
    overflow:hidden;
    position:relative;
    background:#10b300;
    box-shadow:0 16px 28px rgba(0,0,0,.08);
  }
  .desktop-locutor-photo{
    position:absolute;
    inset:0;
    background:center top/cover no-repeat;
  }
  .desktop-locutor-photo::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,176,0,.16) 0%, rgba(0,176,0,.12) 55%, rgba(0,176,0,.45) 72%, rgba(255,255,255,.88) 100%);
  }
  .desktop-locutor-overlay{
    position:absolute;
    left:18px;
    right:18px;
    bottom:20px;
    z-index:2;
  }
  .desktop-locutor-tag,
  .desktop-locutor-name{
    display:inline-block;
    background:#f4f1ec;
    color:#111;
    font-weight:900;
    text-transform:capitalize;
    padding:7px 10px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
  }
  .desktop-locutor-tag{
    font-size:14px;
    margin-bottom:6px;
  }
  .desktop-locutor-name{
    display:block;
    width:max-content;
    max-width:100%;
    background:#050505;
    color:#fff;
    font-size:17px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}
@media (max-width: 1190px) and (min-width: 992px){
  .desktop-locutores-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}





/* ===== ANUNCIOS / SLIDERS SOLO PC AL FINAL ===== */
@media (min-width: 992px){
  .desktop-anuncios-section{margin-top:54px;}
  .desktop-anuncios-watermark{position:absolute;right:40px;top:-34px;left:auto;font-size:84px;font-weight:900;letter-spacing:1px;color:rgba(0,0,0,.05);text-transform:uppercase;pointer-events:none;user-select:none;}
  .desktop-slider-wrap{
    width:100%;
    border-radius:22px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 14px 34px rgba(0,0,0,.10);
    border:1px solid rgba(0,0,0,.06);
  }
  .desktop-slider-panel{
    width:100%;
    height:420px;
    overflow:hidden;
    position:relative;
    background:#efefef;
  }
  .desktop-slide-track{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .7s ease-in-out;
    will-change:transform;
  }
  .desktop-slide-track img{
    width:100%;
    height:100%;
    flex:0 0 100%;
    object-fit:cover;
    display:block;
    background:#ececec;
  }
}

/* ===== PROGRAMACION WEB PC ===== */
@media (min-width: 992px){
  .desktop-programs-section{margin-top:54px;}
  .desktop-program-days{
    display:grid;
    grid-template-columns:repeat(7, minmax(0,1fr));
    background:#f5f5f5;
    border-radius:999px;
    overflow:hidden;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.06);
    margin-bottom:24px;
  }
  .desktop-program-day{
    border:none;
    background:transparent;
    min-height:42px;
    font-weight:900;
    font-size:14px;
    cursor:pointer;
    color:#050505;
  }
  .desktop-program-day.active{
    background:#09b300;
    color:#fff;
  }
  .desktop-program-list{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
  }
  .desktop-program-card{
    position:relative;
    min-height:200px;
    border-radius:0;
    overflow:hidden;
    background:#111 center/cover no-repeat;
    box-shadow:0 10px 20px rgba(0,0,0,.16);
    isolation:isolate;
  }
  .desktop-program-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 38%, rgba(0,0,0,.06) 70%, rgba(0,0,0,0) 100%);
    z-index:0;
  }
  .desktop-program-card::after{
    content:"";
    position:absolute;
    left:0;right:0;bottom:0;
    height:96px;
    background:linear-gradient(to top, rgba(255,255,255,.50), rgba(255,255,255,0));
    z-index:0;
    pointer-events:none;
  }
  .desktop-program-badge{
    position:absolute;
    top:10px;
    left:10px;
    z-index:2;
    background:#ffc400;
    color:#fff;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    padding:7px 12px;
    border-radius:0;
    line-height:1;
  }
  .desktop-program-overlay{
    position:absolute;
    left:14px;
    right:14px;
    bottom:16px;
    z-index:2;
  }
  .desktop-program-title{
    display:inline-block;
    background:#fff;
    color:#050505;
    font-size:17px;
    line-height:1.05;
    font-weight:900;
    padding:7px 11px;
    text-transform:none;
    max-width:100%;
  }
  .desktop-program-time{
    display:inline-block;
    margin-top:6px;
    background:#050505;
    color:#fff;
    font-size:14px;
    font-weight:800;
    padding:8px 11px;
    line-height:1.1;
    max-width:100%;
  }
  .desktop-program-desc{
    display:none;
  }
}
@media (max-width: 1320px) and (min-width: 992px){
  .desktop-program-list{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width: 1120px) and (min-width: 992px){
  .desktop-program-list{grid-template-columns:repeat(2,minmax(0,1fr));}
}


@media (min-width:1024px){
  .programCard.liveActive::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:90px;
    background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    z-index:2;
    pointer-events:none;
  }
}


@media (min-width:1024px){
  .programCard{
    position:relative !important;
    overflow:hidden !important;
    min-height:240px !important;
    height:240px !important;
    border-radius:18px !important;
  }
  .programCard.liveActive::before{
    content:"" !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    height:120px !important;
    background:linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 30%, rgba(0,0,0,.38) 65%, rgba(0,0,0,0) 100%) !important;
    z-index:3 !important;
    pointer-events:none !important;
  }
  .programCard .live,
  .programCard .programInfo,
  .programCard .programDesc,
  .programCard .programTitle,
  .programCard .programTime,
  .programCard .programThumbWrap,
  .programCard .programThumb{
    position:relative !important;
    z-index:4 !important;
  }
}



/* DEGRADADO REAL SOLO EN LA TARJETA PC QUE ESTA AL AIRE */
@media (min-width: 992px){
  .desktop-program-card.liveActive{
    position:relative !important;
    overflow:hidden !important;
  }

  .desktop-program-card.liveActive::after{
    content:"" !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    height:100% !important;
    pointer-events:none !important;
    z-index:1 !important;
    background:linear-gradient(
      to top,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.82) 18%,
      rgba(0,0,0,0.56) 36%,
      rgba(0,0,0,0.22) 52%,
      rgba(0,0,0,0.00) 72%
    ) !important;
  }

  .desktop-program-card.liveActive .desktop-program-badge,
  .desktop-program-card.liveActive .desktop-program-overlay,
  .desktop-program-card.liveActive .desktop-program-title,
  .desktop-program-card.liveActive .desktop-program-time{
    position:relative !important;
    z-index:3 !important;
  }
}


/* NARANJA + TEXTO ABAJO SOLO PC */
@media (min-width: 992px){
  .desktop-program-card.liveActive{
    position:relative !important;
    overflow:hidden !important;
  }

  .desktop-program-card.liveActive::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:100%;
    pointer-events:none;
    z-index:1;
    background:linear-gradient(
      to top,
      rgba(255,140,0,0.95) 0%,
      rgba(255,140,0,0.75) 25%,
      rgba(255,140,0,0.4) 50%,
      rgba(255,140,0,0) 75%
    );
  }

  .desktop-program-overlay{
    bottom:8px !important;
  }

  .desktop-program-badge,
  .desktop-program-title,
  .desktop-program-time{
    position:relative;
    z-index:3;
  }
}



/* ===== NOTICIAS WEB PC NUEVO HOME + DETALLE ===== */
@media (min-width: 992px){
  .desktop-news-section{margin-top:54px;}
  .desktop-news-status{
    background:#fff;
    padding:16px 18px;
    border-radius:16px;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
    font-weight:900;
    color:#333;
  }
  .desktop-news-home{display:block;}
  .desktop-news-home-grid{
    display:grid;
    grid-template-columns:1.55fr 1fr 1fr;
    gap:2px;
    overflow:hidden;
    border-radius:18px;
    background:#ddd;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
  }
  .desktop-news-col{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:2px;
    background:#ddd;
  }
  .desktop-news-home-hero,
  .desktop-news-home-item{
    position:relative;
    overflow:hidden;
    text-decoration:none;
    background:#111 center/cover no-repeat;
    min-height:290px;
    cursor:pointer;
  }
  .desktop-news-home-item{min-height:144px;}
  .desktop-news-home-hero::before,
  .desktop-news-home-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 34%, rgba(0,0,0,.10) 72%, rgba(0,0,0,0) 100%);
    z-index:1;
  }
  .desktop-news-home-badge{
    position:absolute;
    left:18px;
    top:18px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:24px;
    padding:0 11px;
    border-radius:999px;
    background:#11c40f;
    color:#fff;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
  }
  .desktop-news-home-content{
    position:absolute;
    left:18px;
    right:18px;
    bottom:16px;
    z-index:2;
    color:#fff;
  }
  .desktop-news-home-title{
    margin:0;
    font-size:23px;
    line-height:1.16;
    font-weight:900;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .desktop-news-home-item .desktop-news-home-title{
    font-size:16px;
    line-height:1.18;
  }
  .desktop-news-home-meta{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin-top:10px;
    color:rgba(255,255,255,.94);
    font-size:12px;
    font-weight:700;
  }
  .desktop-news-dot{width:4px;height:4px;border-radius:50%;background:#fff;display:inline-block;}
  .desktop-news-detail{display:none;}
  .desktop-news-backbar{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
  }
  .desktop-news-backbtn{
    width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    background:#fff;
    box-shadow:0 10px 24px rgba(0,0,0,.10);
    font-size:22px;
    font-weight:900;
    cursor:pointer;
  }
  .desktop-news-backlabel{
    font-size:16px;
    font-weight:900;
    color:#111;
  }
  .desktop-news-detail-layout{
    display:grid;
    grid-template-columns:52px minmax(0,1fr) 300px;
    gap:20px;
    align-items:start;
  }
  .desktop-news-sharebar{
    position:sticky;
    top:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .desktop-news-sharebtn{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    color:#fff;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(0,0,0,.12);
  }
  .desktop-news-sharebtn.fb{background:#1877f2;}
  .desktop-news-sharebtn.x{background:#111;}
  .desktop-news-sharebtn.wa{background:#25d366;}
  .desktop-news-sharebtn.tg{background:#229ed9;}
  .desktop-news-article{min-width:0;}
  .desktop-news-headline{
    margin:0 0 14px;
    background:#ff8c00;
    color:#fff;
    padding:16px 18px;
    font-size:26px;
    line-height:1.12;
    font-weight:900;
  }
  .desktop-news-meta-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:14px;
  }
  .desktop-news-chips{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .desktop-news-chip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:26px;
    padding:0 12px;
    border-radius:6px;
    background:#11c40f;
    color:#fff;
    font-size:12px;
    font-weight:900;
  }
  .desktop-news-date{
    font-size:13px;
    color:#444;
    font-weight:700;
  }
  .desktop-news-cover{
    display:block;
    width:100%;
    max-height:430px;
    object-fit:cover;
    background:#ddd;
    box-shadow:0 12px 28px rgba(0,0,0,.10);
  }
  .desktop-news-body{
    margin-top:16px;
    background:#fff;
    padding:18px 20px;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
    color:#111;
    font-size:17px;
    line-height:1.72;
  }
  .desktop-news-body p{margin:0 0 16px;}
  .desktop-news-body img{display:none !important;}
  .desktop-news-sidebar{
    position:sticky;
    top:18px;
    background:#fff;
    padding:14px;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
  }
  .desktop-news-side-title{
    display:inline-block;
    margin:0 0 12px;
    background:#11c40f;
    color:#fff;
    padding:8px 12px;
    font-size:16px;
    font-weight:900;
  }
  .desktop-news-side-list{
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  .desktop-news-side-item{
    display:grid;
    grid-template-columns:84px 1fr;
    gap:10px;
    align-items:start;
    cursor:pointer;
  }
  .desktop-news-side-thumb{
    width:84px;
    height:64px;
    object-fit:cover;
    background:#ddd;
  }
  .desktop-news-side-item h4{
    margin:0;
    font-size:14px;
    line-height:1.24;
    font-weight:900;
    color:#111;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .desktop-news-side-item p{
    margin:6px 0 0;
    font-size:12px;
    color:#666;
    font-weight:700;
  }
  .desktop-news-empty{
    min-height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
    font-size:18px;
    font-weight:900;
    color:#444;
  }
}
@media (max-width: 1120px) and (min-width: 992px){
  .desktop-news-home-grid{grid-template-columns:1fr;}
  .desktop-news-col{grid-template-columns:1fr 1fr;grid-template-rows:none;}
}
@media (max-width: 980px){
  .desktop-news-detail-layout{grid-template-columns:1fr;}
  .desktop-news-sharebar{position:static;flex-direction:row;}
  .desktop-news-sidebar{position:static;}
}
  .desktop-news-side{grid-template-rows:repeat(2,150px);}
  .desktop-news-main-title{font-size:22px;}
}


@media (min-width: 992px){
  .videoItem.active{outline:3px solid #14b80a;background:#f3f8f2 !important;}
}


@media (min-width: 992px){
  body.desktop-news-detail-active .desktop-vraem-topbar,
  body.desktop-news-detail-active .desktop-vraem-wrap,
  body.desktop-news-detail-active .desktop-web-section:not(.desktop-news-section),
  body.desktop-news-detail-active .desktop-programs-section,
  body.desktop-news-detail-active .desktop-anuncios-section{
    display:none !important;
  }

  body.desktop-news-detail-active .desktop-news-section{
    margin-top:0 !important;
    width:min(1180px, calc(100vw - 60px)) !important;
  }

  body.desktop-news-detail-active .desktop-vraem-shell{
    padding-top:26px !important;
  }
}


@media (min-width: 992px){
  .desktop-news-closebtn{
    display:none;
    position:fixed;
    top:22px;
    right:22px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#000;
    color:#fff;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
    z-index:999999;
    box-shadow:0 10px 24px rgba(0,0,0,.18);
  }
  .desktop-news-sharebtn svg{display:block}
  body.desktop-news-detail-active .desktop-news-closebtn{display:flex !important;align-items:center;justify-content:center}
  body.desktop-news-detail-active .desktop-web-watermark,
  body.desktop-news-detail-active .desktop-web-heading,
  body.desktop-news-detail-active .desktop-news-status{
    display:none !important;
  }
}


.newsModalClose{
  position:relative;
  z-index:99999 !important;
  pointer-events:auto !important;
}
.newsModal{
  pointer-events:auto !important;
}


/* ==== FIX REAL CENTRADO PC ==== */
@media (min-width: 992px){
  body.desktop-pc-mode .desktop-vraem-topbar,
  body.desktop-pc-mode .desktop-vraem-wrap,
  body.desktop-pc-mode .desktop-web-section{
    margin-left:auto !important;
    margin-right:auto !important;
  }

  body.desktop-pc-mode .desktop-vraem-shell{
    width:100% !important;
    align-items:center !important;
  }
}


/* ===== FIX TV DIAGONAL ANIMATION ===== */
@media (min-width: 992px){
  body.desktop-pc-mode .tvDiagonalOverlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    overflow:hidden;
    display:block;
    z-index:0;
  }

  body.desktop-pc-mode .tvDiagonalText{
    position:absolute;
    left:-30vw;
    width:170vw;
    color:rgba(255,255,255,.18);
    font-weight:900;
    font-size:64px;
    white-space:nowrap;
    transform:rotate(-28deg);
    animation:peruplayDiagonalDrift 6s linear infinite;
  }

  .tvDiagonalText.r1{ top:2%; }
  .tvDiagonalText.r2{ top:16%; animation-delay:-1s; }
  .tvDiagonalText.r3{ top:30%; animation-delay:-2s; }
  .tvDiagonalText.r4{ top:44%; animation-delay:-3s; }
  .tvDiagonalText.r5{ top:58%; animation-delay:-4s; }
  .tvDiagonalText.r6{ top:72%; animation-delay:-5s; }
  .tvDiagonalText.r7{ top:86%; animation-delay:-6s; }
}


  100%{ transform:translate(420px,-420px) rotate(-28deg); }
}


/* ===== FIX TEXTO PERÚ PLAY ANIMADO ===== */
.tvDiagonalOverlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:9999;
}

.tvDiagonalText{
  position:absolute;
  left:-50%;
  width:200%;
  font-weight:900;
  font-size:60px;
  white-space:nowrap;
  transform:rotate(-28deg);
  color:rgba(255,255,255,0.18);
  animation:moverTexto 6s linear infinite;
}

.tvDiagonalText.r1{top:5%;}
.tvDiagonalText.r2{top:20%;}
.tvDiagonalText.r3{top:35%;}
.tvDiagonalText.r4{top:50%;}
.tvDiagonalText.r5{top:65%;}
.tvDiagonalText.r6{top:80%;}

@keyframes moverTexto{
  0%{transform:translateX(0) rotate(-28deg);}
  100%{transform:translateX(500px) rotate(-28deg);}
}



/* === AJUSTE SOLO ANIMACION TV MOVIL, SIN TOCAR LO DEMAS === */
.tvScreen.active{
  background:#e2a700 !important;
}
.tvScreen.active .tvDiagonalOverlay{
  display:block !important;
}
.tvScreen.active .tvDiagonalText{
  animation:peruplayDiagonalDrift 12s linear infinite !important;
}
.tvScreen.active .tvDiagonalText.r1{ top:4% !important; animation-delay:0s !important; }
.tvScreen.active .tvDiagonalText.r2{ top:20% !important; animation-delay:-2s !important; }
.tvScreen.active .tvDiagonalText.r3{ top:36% !important; animation-delay:-4s !important; }
.tvScreen.active .tvDiagonalText.r4{ top:52% !important; animation-delay:-6s !important; }
.tvScreen.active .tvDiagonalText.r5{ top:68% !important; animation-delay:-8s !important; }
.tvScreen.active .tvDiagonalText.r6{ top:84% !important; animation-delay:-10s !important; }
@keyframes peruplayDiagonalDrift{
  0%{ transform:translate3d(-220px,220px,0) rotate(-28deg); }
  100%{ transform:translate3d(780px,-780px,0) rotate(-28deg); }
}



/* ===== MENU ANCLADO ARRIBA EN PC ===== */
@media (min-width: 992px){
  body.desktop-pc-mode .desktop-vraem-topbar{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:999999 !important;
    margin:0 !important;
    padding:14px 34px 0 !important;
    display:flex !important;
    justify-content:center !important;
    pointer-events:none;
  }

  body.desktop-pc-mode .desktop-vraem-topbar-inner{
    width:min(1180px, calc(100vw - 60px)) !important;
    pointer-events:auto;
  }

  body.desktop-pc-mode .desktop-vraem-shell{
    padding-top:128px !important;
  }
}


/* ===== BARRA PC TIPO TASKBAR ===== */
.pcMobileBar{
  display:none;
}
@media (min-width: 992px){
  body.desktop-pc-mode .pcMobileBar{
    display:flex !important;
    position:fixed !important;
    left:50% !important;
    bottom:12px !important;
    transform:translateX(-50%) !important;
    width:min(1180px, calc(100vw - 32px)) !important;
    min-height:62px !important;
    padding:0 16px !important;
    gap:14px !important;
    align-items:center !important;
    border-radius:0 !important;
    overflow:hidden !important;
    z-index:2147483646 !important;
    box-shadow:0 8px 22px rgba(0,0,0,.28) !important;
    background:linear-gradient(90deg, rgba(5,8,26,.98) 0%, rgba(7,10,28,.98) 100%) !important;
    border:1px solid rgba(255,255,255,.06) !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }
  body.desktop-pc-mode .pcMobileBar::before,
  body.desktop-pc-mode .pcMobileBar::after{
    display:none !important;
  }
  body.desktop-pc-mode #pcBarPlay{
    position:relative;
    z-index:3;
    width:36px;
    height:36px;
    border-radius:50%;
    border:none;
    background:#efefef;
    cursor:pointer;
    flex:0 0 36px;
    box-shadow:none;
  }
  body.desktop-pc-mode #pcBarPlay::before{
    content:"";
    position:absolute;
    left:14px;
    top:10px;
    width:0;
    height:0;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
    border-left:12px solid #161616;
  }
  body.desktop-pc-mode #pcBarPlay.playing::before{
    width:10px;
    height:14px;
    border:none;
    left:13px;
    top:11px;
    background:linear-gradient(to right,#111 0 4px,transparent 4px 6px,#111 6px 10px);
  }
  body.desktop-pc-mode .pcProgramBtn{
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-width:150px;
    height:40px;
    padding:0 14px;
    border:none;
    background:#f1b400;
    color:#111;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
  }
  body.desktop-pc-mode .pcProgramIcon{
    width:18px;
    height:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 18px;
  }
  body.desktop-pc-mode .pcProgramIcon svg{
    width:18px;
    height:18px;
    stroke:#111;
    fill:none;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
    display:block;
  }
  body.desktop-pc-mode .pcProgramText{
    white-space:nowrap;
    line-height:1;
  }
  body.desktop-pc-mode .pcBarDivider{
    position:relative;
    z-index:3;
    width:4px;
    height:34px;
    border-radius:0;
    background:#f1b400;
    flex:0 0 4px;
  }
  body.desktop-pc-mode .pcBarCover{
    position:relative;
    z-index:3;
    width:42px;
    height:42px;
    object-fit:cover;
    border-radius:4px;
    flex:0 0 42px;
    background:#1d2238;
    border:1px solid rgba(255,255,255,.08);
  }
  body.desktop-pc-mode .pcMobileBarInfo{
    position:relative;
    z-index:3;
    flex:1 1 auto;
    min-width:0;
    overflow:hidden;
  }
  body.desktop-pc-mode #pcBarTitle{
    font-size:18px;
    line-height:1.12;
    font-weight:900;
    color:#fff;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  body.desktop-pc-mode #pcBarArtist{
    margin-top:4px;
    font-size:12px;
    line-height:1.15;
    color:rgba(255,255,255,.82);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  body.desktop-pc-mode .desktop-vraem-shell{
    padding-bottom:100px !important;
  }
  body.desktop-pc-mode .pcBarVolume{
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
    min-width:180px;
  }
  body.desktop-pc-mode .pcVolumeBtn{
    width:34px;
    height:34px;
    border:none;
    background:transparent;
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    cursor:pointer;
    flex:0 0 34px;
  }
  body.desktop-pc-mode .pcVolumeBtn svg{
    width:22px;
    height:22px;
    display:block;
    stroke:currentColor;
    fill:none;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  body.desktop-pc-mode #pcVolumeSlider{
    -webkit-appearance:none;
    appearance:none;
    width:120px;
    height:6px;
    border-radius:999px;
    outline:none;
    background:linear-gradient(to right,#ffffff 0%,#ffffff 73%,rgba(255,255,255,.22) 73%,rgba(255,255,255,.22) 100%);
    cursor:pointer;
    flex:0 0 120px;
  }
  body.desktop-pc-mode #pcVolumeSlider::-webkit-slider-thumb{
    -webkit-appearance:none;
    appearance:none;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ffffff;
    border:none;
    box-shadow:0 2px 8px rgba(0,0,0,.28);
  }
  body.desktop-pc-mode #pcVolumeSlider::-moz-range-thumb{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ffffff;
    border:none;
    box-shadow:0 2px 8px rgba(0,0,0,.28);
  }
  body.desktop-pc-mode #pcVolumeSlider::-moz-range-track{
    height:6px;
    border:none;
    border-radius:999px;
    background:rgba(255,255,255,.22);
  }

  body.desktop-pc-mode .tvScreen.active ~ .pcMobileBar{
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }
}


/* ===== AJUSTE TV PC DIAGONAL PERU PLAY ===== */
@media (min-width: 992px){
  body.desktop-pc-mode .tvScreen.active .tvDiagonalOverlay{
    display:block !important;
    opacity:1 !important;
  }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText{
    display:block !important;
    font-size:60px !important;
    line-height:1 !important;
    letter-spacing:1px !important;
    color:rgba(255,255,255,.22) !important;
    white-space:nowrap !important;
    transform:rotate(-28deg) translate3d(0,0,0) !important;
    transform-origin:center !important;
    animation:peruPlayDiagonalFlow 12s linear infinite !important;
    text-transform:uppercase !important;
    font-family:Arial, Helvetica, sans-serif !important;
  }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText .tvPeru{
    font-weight:900 !important;
  }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText .tvPlay{
    font-weight:300 !important;
    margin-left:2px !important;
  }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText.r1{ top:4% !important; animation-delay:0s !important; }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText.r2{ top:20% !important; animation-delay:-2s !important; }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText.r3{ top:36% !important; animation-delay:-4s !important; }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText.r4{ top:52% !important; animation-delay:-6s !important; }
  body.desktop-pc-mode .tvScreen.active .tvDiagonalText.r5{ top:68% !important; animation-delay:-8s !important; }
}
@keyframes peruPlayDiagonalFlow{
  0%{ transform:translate3d(-140px, 140px, 0) rotate(-28deg); }
  100%{ transform:translate3d(220px, -220px, 0) rotate(-28deg); }
}


/* ===== MODAL INSTALACION PWA ===== */
.installPromptOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.42);
  z-index:1000000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.installPromptOverlay.show{display:flex;}
.installPromptModal{
  width:min(92vw,560px);
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
  padding:28px 24px 24px;
  position:relative;
  text-align:center;
}
.installPromptClose{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:transparent;
  color:#8a8a8a;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.installPromptTitle{
  margin:4px 0 12px;
  font-size:clamp(28px, 2.4vw, 40px);
  line-height:1.12;
  font-weight:900;
  color:#3173e8;
}
.installPromptText{
  margin:0 auto;
  max-width:420px;
  font-size:17px;
  line-height:1.45;
  color:#5f6368;
}
.installPromptBtn{
  margin-top:26px;
  min-width:168px;
  min-height:44px;
  padding:0 24px;
  border:none;
  border-radius:10px;
  background:linear-gradient(90deg,#4d7bf3 0%, #6b5cf1 100%);
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(91,104,241,.24);
}
.installPromptBtn.secondary{
  background:#eef2ff;
  color:#3458d4;
  box-shadow:none;
}
.installPromptGuide{
  margin-top:16px;
  font-size:14px;
  line-height:1.5;
  color:#6b7280;
}
@media (max-width: 768px){
  .installPromptModal{
    width:min(94vw,420px);
    padding:24px 18px 22px;
    border-radius:16px;
  }
  .installPromptTitle{font-size:clamp(24px,6vw,32px);}
  .installPromptText{font-size:15px;}
  .installPromptBtn{width:auto; min-width:150px;}
}



/* performance */
img{max-width:100%;height:auto;}
#desktopLocutoresSection,#desktopProgramasSection,#desktopNoticiasSection,#desktopAnunciosSection,#desktopVideosSection{content-visibility:auto;contain-intrinsic-size:900px;}
