/* ============================================================
   SITE PRELOADER
   ============================================================ */
#site-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #0d2820;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    opacity: 1;
    visibility: visible;
}

#site-preloader.pl-hidden {
    opacity: 0;
    visibility: hidden;
}

.pl-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Logo mask bilan chap→o'ng yumshoq reveal */
.pl-logo {
    width: 260px;
    height: auto;
    display: block;
    opacity: 1;
    -webkit-mask-image: linear-gradient(to right,
            black 0%,
            black 30%,
            rgba(0, 0, 0, 0.25) 48%,
            rgba(0, 0, 0, 0.25) 52%,
            transparent 70%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            black 0%,
            black 30%,
            rgba(0, 0, 0, 0.25) 48%,
            rgba(0, 0, 0, 0.25) 52%,
            transparent 70%,
            transparent 100%);
    -webkit-mask-size: 250% 100%;
    mask-size: 250% 100%;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    animation: pl-reveal 2s cubic-bezier(0.4, 0, 0.2, 1) 0s infinite alternate;
}

@keyframes pl-reveal {
    0% {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }

    100% {
        -webkit-mask-position: 0% 0;
        mask-position: 0% 0;
    }
}
