/* ---------- Snow start ------------- */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Yangilangan Qor parchasi uslubi */
.snowflake {
    position: absolute;
    color: #5b4dd6; /* Qor rangini oq qilamiz */
    font-size: 14px; /* O'lchamni oshirdik, endi bu JS orqali o'zgaradi */
    line-height: 1; /* Matnning joylashuvini yaxshilash */
    opacity: 0.8;
    transform: translateY(-100vh);
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Tushish animatsiyasi avvalgidek qoladi */
@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* -------------- Snow end ------------- */