/* Snowflake base style */
.snowflake {
    position: fixed;
    top: -10px;
    color: #fff;
    user-select: none;
    pointer-events: none;
    z-index: 9999;
    font-size: 10px;
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Optional: subtle drifting animation using CSS (combined with jQuery fall) */
@keyframes snow-spin {
    0%   { transform: translateX(0) rotate(0deg); }
    50%  { transform: translateX(10px) rotate(180deg); }
    100% { transform: translateX(-10px) rotate(360deg); }
}

.snowflake--spin {
    animation: snow-spin 3s linear infinite;
}