.elementor-1664 .elementor-element.elementor-element-2a17b4a{--display:flex;}.elementor-1664 .elementor-element.elementor-element-47938b6{z-index:5000;}/* Start custom CSS for html, class: .elementor-element-47938b6 */#radio-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
    /* Cambio: Borde rojo de 3px y ajuste de sombra */
    border-top: 3px solid #e31b23; 
    box-shadow: 0 -4px 15px rgba(0,0,0,0.6);
}

#radio-player-ui {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

#play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #e31b23; /* Rojo de tu marca */
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Iconos de Play/Pausa */
#play-btn.paused::before {
    content: '▶';
    color: white;
    font-size: 18px;
    margin-left: 3px;
}

#play-btn.playing::before {
    content: '❙❙'; /* Usando un glifo más limpio para pausa */
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.player-info {
    display: flex;
    flex-direction: column;
}

.status {
    font-size: 10px;
    text-transform: uppercase;
    color: #ff0000;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    /* Aplicamos la animación */
    animation: pulsar 2s ease-in-out infinite;
}

/* Punto rojo parpadeante opcional antes del texto */
.status::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
}

/* Definición del movimiento de la luz */
@keyframes pulsar {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}/* End custom CSS */