.falling-gift {
    position: fixed;
    top: -10%;
    pointer-events: none;
    user-select: none;
    animation: fall linear forwards;
    z-index: 999999;
}

@keyframes fall {
    to {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0.7;
    }
}
