/* HEARTS */
.winner-heart {
    position: fixed;
    top: -20px;
    pointer-events: none;
    animation: fall linear forwards;
    z-index: 9999;
}

/* CONFETTI */
.confetti {
    position: fixed;
    top: -10px;
    border-radius: 2px;
    opacity: 0.9;
    z-index: 9999;
    animation: fall linear forwards;
}

/* COMMON FALL ANIMATION */
@keyframes fall {
    to {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* SNOWFLAKE */
.snowflake {
    position: fixed;
    top: -20px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.9;
    animation: fall-snow linear forwards;
}

/* мягкое падение + вращение */
@keyframes fall-snow {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(110vh) rotate(1080deg);
        opacity: 0;
    }
}
