/* Snowflakes Animation - CyberCore Winter Edition */

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        top: -10%;
        opacity: 0.8;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; font-size: 1em; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 8s; animation-delay: 2s; font-size: 1.2em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 12s; animation-delay: 4s; font-size: 0.8em; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 9s; animation-delay: 1s; font-size: 1.1em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 3s; font-size: 0.9em; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 10s; animation-delay: 5s; font-size: 1em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 8s; animation-delay: 2s; font-size: 1.3em; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 12s; animation-delay: 4s; font-size: 0.7em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 9s; animation-delay: 1s; font-size: 1.2em; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 11s; animation-delay: 3s; font-size: 0.9em; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 10s; animation-delay: 0s; font-size: 1em; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 8s; animation-delay: 2s; font-size: 1.1em; }
.snowflake:nth-child(13) { left: 45%; animation-duration: 12s; animation-delay: 5s; font-size: 0.8em; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 9s; animation-delay: 1s; font-size: 1.2em; }
.snowflake:nth-child(15) { left: 65%; animation-duration: 11s; animation-delay: 4s; font-size: 0.9em; }
.snowflake:nth-child(16) { left: 75%; animation-duration: 10s; animation-delay: 3s; font-size: 1em; }
.snowflake:nth-child(17) { left: 85%; animation-duration: 8s; animation-delay: 2s; font-size: 1.3em; }
.snowflake:nth-child(18) { left: 95%; animation-duration: 12s; animation-delay: 0s; font-size: 0.7em; }
.snowflake:nth-child(19) { left: 5%; animation-duration: 9s; animation-delay: 3s; font-size: 1.1em; }
.snowflake:nth-child(20) { left: 22%; animation-duration: 11s; animation-delay: 1s; font-size: 0.9em; }

/* Cyber Snowflakes with glow */
.snowflake.cyber {
    color: #00d9ff;
    text-shadow: 
        0 0 5px rgba(0, 217, 255, 0.8),
        0 0 10px rgba(0, 217, 255, 0.5),
        0 0 15px rgba(0, 217, 255, 0.3);
}

/* Purple variant */
.snowflake.purple {
    color: #c800ff;
    text-shadow: 
        0 0 5px rgba(200, 0, 255, 0.8),
        0 0 10px rgba(200, 0, 255, 0.5),
        0 0 15px rgba(200, 0, 255, 0.3);
}

/* Pink variant */
.snowflake.pink {
    color: #ff00e5;
    text-shadow: 
        0 0 5px rgba(255, 0, 229, 0.8),
        0 0 10px rgba(255, 0, 229, 0.5),
        0 0 15px rgba(255, 0, 229, 0.3);
}
