/* radio_letra_musica.css */

/* Botão redondo ao lado do TOP 5 */
/* Botão redondo ao lado do TOP 5 */
.btn-letra-radio {
    background: linear-gradient(145deg, #f77810ff, #d35400);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    min-width: 35px; /* Garante que a largura mínima não seja alterada */
    min-height: 35px; /* Garante que a altura mínima não seja alterada */
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(247, 120, 16, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-left: 5px;
    flex-shrink: 0; /* Impede que o celular esprema e achate o botão */
}

.btn-letra-radio:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(247, 120, 16, 0.7);
}

.btn-letra-radio .material-icons {
    font-size: 18px;
}

/* --- CORREÇÃO DE RESPONSIVIDADE PARA CELULAR --- */
@media (max-width: 600px) {
    .btn-letra-radio {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        margin-left: 2px;
    }
    
    .btn-letra-radio .material-icons {
        font-size: 15px; /* Ícone levemente menor no celular */
    }
}

/* Modal da Letra (Estilo similar ao Nosso Louvor) */
.radio-lyrics-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: none; /* Escondido por padrão */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.radio-lyrics-content {
    background: linear-gradient(145deg, #1e1e1e, #111);
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #f77810;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.close-radio-lyrics {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-radio-lyrics:hover {
    color: #f77810;
}

.radio-lyrics-header {
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.radio-lyrics-header h3 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 18px;
}

.radio-lyrics-scroll {
    overflow-y: auto;
    color: #ddd;
    font-size: 15px;
    line-height: 1.6;
    padding-right: 10px;
    flex: 1;
    text-align: center;
    /* Barra de rolagem customizada */
    scrollbar-width: thin;
    scrollbar-color: #f77810 #1a1a1a;
}

.radio-lyrics-scroll::-webkit-scrollbar {
    width: 6px;
}
.radio-lyrics-scroll::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}
.radio-lyrics-scroll::-webkit-scrollbar-thumb {
    background-color: #f77810;
    border-radius: 3px;
}

/* radio_letra_musica.css */

/* ... (seus estilos existentes) ... */

/* Estilo da barra de progressão da introdução instrumental */
.radio-progress-bar-container {
    width: 100%;
    height: 4px; /* Barra fina */
    background: #333; /* Cor de fundo da barra */
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    display: none; /* Escondido por padrão, aparece apenas quando há introdução */
}

.radio-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #ff5722); /* Laranja brilhante */
    width: 0%; /* Inicia com 0% */
    transition: width 0.1s linear; /* Animação suave */
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.7); /* Brilho laranja */
}