/* ================================
   CEdev - Christmas Snow Theme
================================ */

.ce-snowflake {
    position: fixed;
    top: -20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(52, 106, 170, 0.9);
    opacity: 0.9;
    pointer-events: none;
    animation-name: ce-snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 99999;
}

@keyframes ce-snowfall {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(110vh) translateX(-20px);
        opacity: 0;
    }
}