/* --- SNOWFALL EFFECT --- */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    /* Changed to Light Icy Blue so it shows on white backgrounds */
    background-color: #b3e5fc; 
    border-radius: 50%;
    pointer-events: none; /* Allows clicking buttons through snow */
    /* Light shadow for better visibility */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); 
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) translateX(0px);
    }
    100% {
        transform: translateY(100vh) translateX(20px); /* Falls down and slightly right */
    }
}