@keyframes fall {
    0% {
        transform: translateY(-100px); /* بداية من فوق */
    }
    100% {
        transform: translateY(100vh); /* النهاية إلى أسفل الصفحة */
    }
}

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

.flake {
    position: absolute;
    top: -10px;
    animation: fall linear infinite;
    opacity: 0.7;
}