body {
    background: linear-gradient(to right, #f8f9ff, #e8ecf9);
    font-family: 'Segoe UI', sans-serif;
}

h2.section-heading {
    font-weight: bold;
    color: #0c1e61;
    position: relative;
    padding-bottom: 10px;
}

h2.section-heading::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #d4af37;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.album-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: white;
    position: relative;
    animation: fadeInUp 0.7s ease-in-out both;
}

.album-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.album-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.album-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #410046;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
