/* Container per la neve */
.xms-snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999; /* Sopra tutto */
    pointer-events: none; /* Cliccaci attraverso! */
}

/* Il singolo fiocco */
.xms-snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

/* Animazione Keyframes */
@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0px);
    }
    100% {
        transform: translateY(110vh) translateX(20px); /* Cade giù e un po' a destra */
    }
}