.albums-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.album-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.album-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: linear-gradient(45deg, #e9ecef, #dee2e6);
}

.album-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.album-card:hover .album-image img {
    transform: scale(1.05);
}

.default-album-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e9ecef, #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.album-platforms {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.platform-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.platform-link.spotify {
    background: #1DB954;
}

.platform-link.youtube {
    background: #FF0000;
}

.platform-link:hover {
    transform: scale(1.1);
    color: white;
}

.album-content {
    padding: 1.5rem;
}

.album-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.album-title a {
    color: #212529;
    text-decoration: none;
}

.album-title a:hover {
    color: var(--bs-primary);
}

.album-artist a {
    text-decoration: none;
}

.album-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.album-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.album-actions {
    margin-top: auto;
}

@media (max-width: 768px) {
    .album-content {
        padding: 1rem;
    }
    
    .album-title {
        font-size: 1.1rem;
    }
}
