:root {
    --bg-main: #121212;
    --bg-card: #1e1e1e;
    --accent: #ef5464; /* Cor clássica do Deezer */
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding-bottom: 110px;
}

.logo { padding: 20px; font-size: 24px; font-weight: bold; }
.logo span { color: var(--accent); }

.grid-playlists { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; padding: 20px; }

.card {
    background: var(--bg-card); padding: 15px; border-radius: 10px; cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.card:hover { background: #2a2a2a; transform: translateY(-5px); }
.card img { width: 100%; border-radius: 5px; margin-bottom: 10px; }

.playlist-header { padding: 40px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.5)); }
.btn-voltar { background: none; border: 1px solid #444; color: white; padding: 5px 15px; border-radius: 20px; cursor: pointer; }

.tabela-musicas { width: 95%; margin: 0 auto; border-collapse: collapse; }
.tabela-musicas th { text-align: left; color: var(--text-gray); border-bottom: 1px solid #333; padding: 10px; }
.tabela-musicas tr:hover { background: rgba(255,255,255,0.1); cursor: pointer; }
.tabela-musicas td { padding: 12px 10px; }

/* Player */
.player-bar {
    position: fixed; bottom: 0; width: 100%; height: 90px;
    background: #181818; border-top: 1px solid #333;
    display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
    box-sizing: border-box;
}

.info-musica { display: flex; align-items: center; width: 30%; }
.info-musica img { width: 55px; height: 55px; border-radius: 4px; margin-right: 15px; background: #333; }
.texto-musica span { display: block; font-weight: bold; }
.texto-musica small { color: var(--text-gray); }

.controles { display: flex; align-items: center; gap: 20px; }
.controles button { background: none; border: none; color: white; font-size: 18px; cursor: pointer; transition: 0.2s; }
.controles button:hover { color: var(--accent); }
.controles .play-main { font-size: 35px; }
.controles .active { color: var(--accent); }

.volume-container { width: 30%; display: flex; justify-content: flex-end; align-items: center; gap: 10px; }