/*
Theme Name: Spotify Clone
Author: Gemini
Version: 1.0
*/

body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    overflow: hidden;
}

#app-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 1fr 90px;
    height: 100vh;
}

.sidebar {
    background-color: #000;
    padding: 20px;
    border-right: 1px solid #282828;
}

.main-view {
    background: linear-gradient(to bottom, #1e1e1e, #121212);
    padding: 20px;
    overflow-y: auto;
}

.player-bar {
    grid-column: 1 / -1;
    background-color: #181818;
    border-top: 1px solid #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.song-card {
    background: #181818;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    width: 200px;
    margin: 10px;
    transition: background 0.3s;
    cursor: pointer;
}

.song-card:hover { background: #282828; }

.play-btn {
    background: #1DB954;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
}