/* ========================================
   MÓDULO "ÚLTIMAS TOCADAS" - RODAPÉ
   Fundo transparente com itens de músicas
   ======================================== */

#ultimas-tocadas-wrapper {
    position: absolute;
    bottom: 5px;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ultimas-tocadas-header {
    color: #fff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 20px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

#ultimas-tocadas-bar {
    width: 100%;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#ultimas-tocadas-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Esconder scrollbar mas manter funcionalidade */
#ultimas-tocadas-container::-webkit-scrollbar {
    display: none;
}
#ultimas-tocadas-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ultimas-tocadas-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    min-width: auto;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.ultimas-tocadas-item:hover {
    opacity: 0.8;
}

.ultimas-tocadas-capa {
    width: 38px;
    height: 38px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.ultimas-tocadas-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ultimas-tocadas-titulo {
    color: #fff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
    line-height: 1.1;
}

.ultimas-tocadas-artista {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 10px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
    line-height: 1.1;
}

.ultimas-tocadas-horario {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 10px;
    font-weight: 400;
    white-space: nowrap;
    margin-left: 8px;
    flex-shrink: 0;
}

.ultimas-tocadas-separador {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 2px;
    flex-shrink: 0;
}

.ultimas-tocadas-empty {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 12px;
    text-align: center;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media only screen and (max-width: 768px) {
    #ultimas-tocadas-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .ultimas-tocadas-header {
        font-size: 12px;
        margin-right: 10px;
        margin-bottom: 3px;
    }
    
    #ultimas-tocadas-bar {
        height: 40px;
    }
    
    .ultimas-tocadas-item {
        padding: 0 8px;
        gap: 8px;
    }
    
    .ultimas-tocadas-capa {
        width: 35px;
        height: 35px;
    }
    
    .ultimas-tocadas-titulo {
        font-size: 11px;
        max-width: 100px;
    }
    
    .ultimas-tocadas-artista {
        font-size: 9px;
        max-width: 100px;
    }
    
    .ultimas-tocadas-horario {
        font-size: 9px;
        margin-left: 5px;
    }
}
