/* ===== Snow Animation ===== */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -30px;
    color: rgba(255, 255, 255, 0.9);
    user-select: none;
    animation: snowfall linear infinite;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    filter: blur(0.3px);
}

@keyframes snowfall {
    0% {
        transform: translateY(-30px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(25vh) translateX(15px) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) translateX(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(75vh) translateX(20px) rotate(270deg);
    }
    100% {
        transform: translateY(105vh) translateX(5px) rotate(360deg);
        opacity: 0.6;
    }
}

/* Different snowflake sizes */
.snowflake.small {
    font-size: 10px;
    opacity: 0.5;
}

.snowflake.medium {
    font-size: 14px;
    opacity: 0.7;
}

.snowflake.large {
    font-size: 18px;
    opacity: 0.85;
}
