body {
    font-family: Arial, sans-serif;
    background-color: #f7eaf6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.hearts-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}
.heart {
    position: absolute;
    font-size: 2rem;
    color: #e255a3;
    opacity: 0.7;
    animation: floatHeart 6s linear infinite;
    will-change: transform;
}
@keyframes floatHeart {
    0% {
        transform: translateY(100vh) scale(1) rotate(-10deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1.2) rotate(10deg);
        opacity: 0;
    }
}
.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    position: relative;
    z-index: 1;
}
h1 {
    color: #333;
}
img {
    max-width: 50%;
    height: auto;
    border-radius: 50%;
}
.dedication {
    margin-top: 20px;
    font-size: 18px;
    color: #666;
}

.spotify-player {
        margin-top: 24px;
        margin-left: 5%;
        margin-right: 5%;
        max-width: 100%;
}

@media (max-width: 600px) {
    .spotify-player {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100vw;
    }
    .spotify-iframe {
        width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
        max-width: 100vw;
        display: block;
    }
}
.spotify-iframe {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
