/* Эффект падающего снега */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #87CEEB;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(135, 206, 235, 0.8);
    animation: snowfall linear infinite;
    user-select: none;
    pointer-events: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

/* Разные размеры снежинок */
.snowflake.small {
    font-size: 0.8em;
    animation-duration: 8s;
}

.snowflake.medium {
    font-size: 1em;
    animation-duration: 10s;
}

.snowflake.large {
    font-size: 1.5em;
    animation-duration: 12s;
}

/* Дополнительные стили для плавности */
.snowflake {
    will-change: transform, opacity;
}

