#valentine-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* Let clicks pass through */
    z-index: 9999; /* Ensure it's on top */
}

.valentine-heart {
    position: absolute;
    top: -10vh;
    left: var(--left, 50vw);
    background-color: var(--color, rgba(255, 105, 180, 0.8));
    display: inline-block;
    height: 30px;
    width: 30px;
    transform: rotate(-45deg) scale(var(--scale, 1));
    animation: falling var(--duration, 5s) linear infinite;
    opacity: 0.8;
}

.valentine-heart::before,
.valentine-heart::after {
    content: "";
    background-color: inherit;
    border-radius: 50%;
    height: 30px;
    position: absolute;
    width: 30px;
}

.valentine-heart::before {
    top: -15px;
    left: 0;
}

.valentine-heart::after {
    left: 15px;
    top: 0;
}

@keyframes falling {
    0% {
        transform: translateY(-10vh) rotate(-45deg) scale(var(--scale, 1));
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(45deg) scale(var(--scale, 1));
        opacity: 0;
    }
}
