/* FESTIVE SNOW EFFECT FOR CHRISTMAS (Optimized) */
body {
    position: relative;
    overflow-x: hidden;
}
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    pointer-events: none;
    animation: snowfall linear infinite;
    opacity: 0.5; /* Reduced base opacity */
    left: var(--left-pos, 0vw); /* Fallback */
    animation-duration: var(--duration, 4s);
}
.snowflake:before {
    content: '';
    display: block;
    width: 8px; /* Slightly smaller */
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 0 3px rgba(255,255,255,0.6), /* Lighter glow */
        inset 0 0 1px rgba(0,0,0,0.05);
}
@keyframes snowfall {
    to {
        transform: translateY(100vh) rotate(180deg); /* Less rotation for perf */
    }
}
/* NEW YEAR COUNTDOWN COUNTER */
#countdown {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 10000;
    font-size: 0.9rem;
    display: none;
    text-align: center;
    min-width: 120px;
}
#countdown h5 {
    margin: 0 0 5px 0;
    font-size: 0.8rem;
    color: #ffd700; /* Gold */
}

/* Responsive */
@media (max-width: 768px) {
    .snowflake:before {
        width: 5px;
        height: 5px;
    }
    #countdown {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 8px;
    }
}