/* =========================
   AHORA EN VIVO WIDGET
   SOLO afecta #ahoraEnVivo
========================= */

#ahoraEnVivo{
    font-family: Arial, sans-serif;
    color:#fff;
}

#ahoraEnVivo .titulo{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:20px;
}

#ahoraEnVivo .titulo h2{
    font-size:24px;
}

#ahoraEnVivo .punto{
    width:10px;
    height:10px;
    background:red;
    border-radius:50%;
    animation:blink .8s infinite;
    margin-right:8px;
}

@keyframes blink{
    0%,100%{opacity:1}
    50%{opacity:.2}
}

#ahoraEnVivo #programasVivos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:15px;
}

#ahoraEnVivo .tarjeta{
    background:#111827;
    border-radius:15px;
    padding:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

#ahoraEnVivo .logoRadio{
    width:100%;
    max-height:60px;
    object-fit:contain;
    margin-bottom:10px;
}

#ahoraEnVivo .nombreRadio{
    font-size:20px;
    font-weight:bold;
}

#ahoraEnVivo .programa{
    color:#38bdf8;
    margin:5px 0;
}

#ahoraEnVivo .horario{
    font-size:13px;
    opacity:.8;
}

#ahoraEnVivo .restante{
    margin:8px 0;
    background:#065f46;
    padding:6px 10px;
    border-radius:20px;
    display:inline-block;
    font-size:12px;
}

#ahoraEnVivo .botones{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-top:10px;
}

#ahoraEnVivo .botones a,
#ahoraEnVivo .botones button{
    flex:1;
    text-align:center;
    background:#2563eb;
    color:white;
    padding:6px;
    border:none;
    border-radius:8px;
    font-size:12px;
    cursor:pointer;
    text-decoration:none;
}

#ahoraEnVivo .player iframe{
    width:100%;
    height:200px;
    border:none;
    margin-top:10px;
    border-radius:10px;
}

/* SIN PROGRAMACIÓN */

#ahoraEnVivo #sinProgramacion{
    background:#111827;
    padding:20px;
    border-radius:15px;
    text-align:center;
}

#ahoraEnVivo .selectorRadios{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
    margin:15px 0;
}

#ahoraEnVivo .radioBtn{
    background:#374151;
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:20px;
    cursor:pointer;
}

#ahoraEnVivo .radioBtn.activo{
    background:#2563eb;
}

#ahoraEnVivo .iframeRadio iframe{
    width:100%;
    height:350px;
    border:none;
    border-radius:10px;
}