body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-bottom: 140px;
    background: #121212;
    color: #fff;
}

h1 {
    padding: 20px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

.album {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s;
}

.album img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.album:hover {
    transform: scale(1.05);
}

.album img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #181818;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-info {
    max-width: 50%;
}

.controls button {
    font-size: 20px;
    margin: 0 5px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.controls button:hover {
    color: #1db954;
}
