.playlist-card:hover,
.album-card:hover {
    transform: scale(1.05);
    background-color: #222;
}

.playlist-card img,
.album-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.playlist-card p,
.album-card p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #b3b3b3;
}

/* ==================================================
   ALBUM VIEW
================================================== */

.album-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.album-info img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.album-details h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.album-details p {
    font-size: 18px;
    color: #b3b3b3;
    margin: 5px 0;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #181818;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.track-item:hover {
    background-color: #222;
}

.track-number {
    width: 30px;
    color: #b3b3b3;
}

.track-name {
    flex: 1;
    font-size: 16px;
}

.track-duration {
    color: #b3b3b3;
    font-size: 14px;
}