/* Контейнер для снежинок */
.snowfall-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* Стили снежинок */
.snowflake {
    position: absolute;
    top: -50px;
    color: #fff;
    font-size: 0.7em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
    opacity: 0.7;
    user-select: none;
    animation: snowfall linear infinite;
}

/* Анимация падения */
@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift, 0)) rotate(360deg);
        opacity: 0;
    }
}

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

.snowflake.medium {
    font-size: 0.9em;
    animation-duration: 15s;
}

.snowflake.large {
    font-size: 1.2em;
    animation-duration: 18s;
}
