/* Background with pink hearts animation */
body {
    background: linear-gradient(135deg, #ff6b6b, #ff9e9e);
    min-height: 100vh;
    margin: 0;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
font-family: 'Bodoni Moda', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}



.falling-heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall 10s linear infinite;
    transform-origin: bottom;
}

.falling-heart:nth-child(2) {
    animation-delay: 0.2s;
}

.falling-heart:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fall {
    0% {
        bottom: -20px;
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
    }
}

.message-container {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.4rem;
}

.spotify-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.spotify-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}