/* Contenedor principal tipo salchicha */
#radio-widget {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    padding: 12px 20px;
    background:#f5f5f5;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* Logo redondo */
.radio-logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* Bot¨®n de reproducci¨®n */
#radio-play {
    padding: 8px 16px;
    background: #000;
    color: #8000ff;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

/* Hover bot¨®n */
#radio-play:hover {
    background: #222;
    color: #8000ff;
}

/* Estado ¡°Live¡± */
#radio-status.online {
    color: #fff;
    background: #ff2b00;
    padding: 2px 8px;
font-size: 12px;
    border-radius: 40px;
    font-weight: bold;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Ocultar el audio nativo */
#radio-stream {
    display: none;
}

/* Ajustes m¨®viles */
@media (max-width: 768px) {
    #radio-widget {
        width: 95%;
        padding: 10px 16px;
        bottom: 80px;
    }
    .radio-logo img { width: 36px; height: 36px; }
    #radio-play { padding: 8px 14px; font-size: 15px; }
}
