/**
 * Snow Effect Styles
 * Additional styles for snow animation
 */

#snow-effect-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Анимация для дополнительного эффекта мерцания (опционально) */
@keyframes snowflake-twinkle {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.snowflake:nth-child(3n) {
    animation: snowflake-twinkle 2s infinite;
}

.snowflake:nth-child(3n+1) {
    animation: snowflake-twinkle 3s infinite;
}

.snowflake:nth-child(3n+2) {
    animation: snowflake-twinkle 2.5s infinite;
}

