/* Snowfall Effect Styles */
.snowfall-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicks to pass through to the slider */
    z-index: 999;
    overflow: hidden;
}
.snowflake {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: snowfall-animation linear infinite;
}
@keyframes snowfall-animation {
    0% {
        transform: translateY(-100%) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
}
