#whmcs-snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: fixed;
    top: -10px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.1);
    animation: fall linear forwards;
    will-change: transform;
    background: transparent !important;
    line-height: 1;
    display: inline-block;
    user-select: none;
}

/* Culori fulgi */
.snowflake.white {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255,255,255,0.8);
}

.snowflake.light-blue {
    color: #b3e5fc;
    text-shadow: 0 0 5px rgba(179,229,252,0.8);
}

.snowflake.silver {
    color: #e0e0e0;
    text-shadow: 0 0 5px rgba(224,224,224,0.8);
}

/* Dimensiuni fulgi */
.snowflake.small { 
    font-size: 8px; 
}

.snowflake.medium { 
    font-size: 12px; 
}

.snowflake.large { 
    font-size: 16px; 
}

/* Efecte 3D */
.snowflake.shadows-enabled.white {
    text-shadow: 0 0 5px rgba(255,255,255,0.8),
                 0 0 10px rgba(255,255,255,0.6),
                 0 0 15px rgba(255,255,255,0.4);
}

.snowflake.shadows-enabled.light-blue {
    text-shadow: 0 0 5px rgba(179,229,252,0.8),
                 0 0 10px rgba(179,229,252,0.6),
                 0 0 15px rgba(179,229,252,0.4);
}

.snowflake.shadows-enabled.silver {
    text-shadow: 0 0 5px rgba(224,224,224,0.8),
                 0 0 10px rgba(224,224,224,0.6),
                 0 0 15px rgba(224,224,224,0.4);
}

/* Stratul de zăpadă */
.snow-pile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.8) 40%, 
        rgba(255,255,255,0.95) 100%
    );
    pointer-events: none;
    z-index: 9998;
    transition: height 2s ease-out;
}

/* Efecte de vânt */
@keyframes wind {
    0% { margin-left: -10px; }
    25% { margin-left: 10px; }
    50% { margin-left: -5px; }
    75% { margin-left: 5px; }
    100% { margin-left: 0px; }
}

/* Animație normală */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(25vh) rotate(45deg);
    }
    50% {
        transform: translateY(50vh) rotate(-30deg);
    }
    75% {
        transform: translateY(75vh) rotate(45deg);
    }
    100% {
        transform: translateY(95vh) rotate(0deg);
    }
}

/* Animație viscol */
@keyframes blizzard {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(25vh) translateX(-50px) rotate(180deg);
    }
    50% {
        transform: translateY(50vh) translateX(25px) rotate(-180deg);
    }
    75% {
        transform: translateY(75vh) translateX(-25px) rotate(180deg);
    }
    100% {
        transform: translateY(95vh) translateX(0) rotate(360deg);
    }
}

/* Efecte de topire */
.snow-pile.melting {
    transition: height 5s ease-in-out;
}
.snow-pile.melting.slow { transition-duration: 10s; }
.snow-pile.melting.medium { transition-duration: 5s; }
.snow-pile.melting.fast { transition-duration: 2s; }

/* Mobile optimization */
@media (max-width: 768px) {
    .snowflake {
        opacity: 0.8;
    }
    
    .snowflake.shadows-enabled {
        text-shadow: 0 0 3px rgba(0,0,0,0.1);
    }
    
    .snow-pile {
        background: linear-gradient(180deg, 
            rgba(255,255,255,0) 0%, 
            rgba(255,255,255,0.6) 40%, 
            rgba(255,255,255,0.8) 100%
        );
    }
}
