/* Garantir que o player fique visível */
.tda-radio-player {
    z-index: 999999 !important;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .tda-radio-player {
        bottom: 10px !important;
        right: 10px !important;
        left: auto !important;
    }
}

/* Ícones FontAwesome - Garantir que carreguem */
.fa, .fas, .far {
    font-family: "Font Awesome 6 Free" !important;
}

/* Fallback se ícones não carregarem */
.tda-radio-btn i, .tda-radio-btn-large i {
    font-style: normal;
}

/* Animação de pulso */
.playing-pulse {
    animation: radioPulse 0.5s ease-in-out;
}

@keyframes radioPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}