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

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    user-select: none;
    cursor: default;
    opacity: 0.8;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4));
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(110vh) translateX(20px) rotate(360deg);
    }
}

.snowflake span {
    display: inline-block;
    animation: snowfall linear infinite;
}
