/* BASE */
body {
    margin:0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
    background:#121212;
    color:#fff;
}

/* LAYOUT */
.app {
    display:flex;
    height:100vh;
}

/* SIDEBAR */
.sidebar {
    width:220px;
    background:#000;
    padding:20px;
}

.sidebar h1 {
    font-size:20px;
    margin-bottom:20px;
}

.sidebar a {
    display:block;
    color:#bbb;
    margin-bottom:10px;
}

.sidebar a:hover {
    color:#fff;
}

/* MAIN */
.main {
    flex:1;
    overflow-y:auto;
    padding:20px;
}

/* GRID */
.album-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
    gap:20px;
}

/* CARD */
.album-card {
    background:#181818;
    padding:10px;
    border-radius:8px;
    transition:0.2s;
}

.album-card:hover {
    background:#282828;
}

.album-card img {
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:6px;
}

/* SONG LIST */
.song {
    display:flex;
    justify-content:space-between;
    padding:12px;
    border-bottom:1px solid #222;
}

.song-title {
    font-size:14px;
}

.song-meta {
    font-size:12px;
    color:#aaa;
}

/* BUTTONS */
.btn {
    background:#1db954;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
}

/* PLAYER */
.player {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#181818;
    padding:10px;
}