/* Weihnachts-Styles für SaarBr66klyn Logistik */
/* Nur Schneeflocken - automatisch im Dezember aktiviert */

/* ============================================
   SCHNEEFLOCKEN
   ============================================ */
.snowflake {
    position: fixed;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    font-family: Arial, sans-serif;
    user-select: none;
    pointer-events: none;
    z-index: 998;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(0vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift, 0px)) rotate(360deg);
        opacity: 0;
    }
}

