@keyframes snowFall {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) translateX(20px);
        opacity: 0;
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 20px rgba(250, 204, 21, 0.1), inset 0 0 20px rgba(250, 204, 21, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(250, 204, 21, 0.3), inset 0 0 30px rgba(250, 204, 21, 0.1);
    }
    100% {
        box-shadow: 0 0 20px rgba(250, 204, 21, 0.1), inset 0 0 20px rgba(250, 204, 21, 0.05);
    }
}

@keyframes floatLift {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.snow-particle {
    position: fixed;
    top: -10px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(1px);
    animation: snowFall linear infinite;
}