/*
Arquivo: wp-content/themes/cancao-verdadeira/assets/css/main.css

Resumo:
Este arquivo define toda a interface visual estilo Spotify.
Inclui layout com sidebar fixa, conteúdo principal, cards de música,
player fixo e identidade dark premium.
*/

body {
    margin: 0;
    background: #0d0d0d;
    color: white;
    font-family: Arial, sans-serif;
}

/* LAYOUT */
.layout {
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    background: #000;
    height: 100vh;
    position: fixed;
    padding: 20px;
}

.sidebar h2 {
    color: gold;
}

/* CONTEÚDO */
.main-content {
    margin-left: 220px;
    padding: 20px;
}


/* GRID */
.grid-musicas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* CARD */
.card-musica {
    background: #181818;
    padding: 15px;
    border-radius: 10px;
}

.card-musica:hover {
    background: #282828;
}

/* PLAYER */
.player-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #181818;
    padding: 10px;
}

.player-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #181818;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 9999;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-left img {
    width: 50px;
    border-radius: 5px;
}

.player-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

#progressBar {
    width: 300px;
}

.player-right {
    width: 150px;
}