/* Christmas Snow Effect - Light Version */
.christmas-snow-container-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    font-size: 1em;
    font-family: Arial, sans-serif;
    pointer-events: none;
    animation: fall linear infinite;
}

.snowflake.white {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 15px rgba(255, 255, 255, 0.6);
}

.christmas-decoration {
    position: absolute;
    top: -10px;
    font-size: 1.5em;
    pointer-events: none;
    animation: decorationFall linear infinite, twinkle 2s ease-in-out infinite;
}

.christmas-decoration.star {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 1), 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes fall {
    0% {
        transform: translateY(0vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(25vh) translateX(10px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(50vh) translateX(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(75vh) translateX(10px) rotate(270deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) translateX(0) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes decorationFall {
    0% {
        transform: translateY(0vh) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.2);
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.6;
        filter: brightness(1.5);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .christmas-decoration {
        font-size: 1em;
    }
}
