.yg-site-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(86, 183, 232, 0.16), transparent 28%),
        linear-gradient(180deg, #fff 0%, #F8FCFF 100%);
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.yg-site-loader.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.yg-site-loader-inner {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 22px;
    width: min(360px, calc(100vw - 40px));
    padding: 8px 20px;
}

.yg-site-loader-logo {
    width: 238px;
    max-width: 64vw;
    height: auto;
    animation: ygLoaderLogo 1.6s ease-in-out infinite;
}

.yg-site-loader-mark {
    position: relative;
    width: 210px;
    max-width: 58vw;
    height: 3px;
    overflow: hidden;
    background: #E4ECF5;
    border-radius: 999px;
}

.yg-site-loader-mark::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    background: linear-gradient(90deg, #1B5190, #56B7E8);
    border-radius: 999px;
    animation: ygLoaderLine 1.05s ease-in-out infinite;
}

.yg-site-loader-text {
    color: #1B5190;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}

.yg-lazy-reveal.is-hidden {
    display: none !important;
}

.yg-lazy-sentinel {
    display: none;
    width: 100%;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1B5190;
    font-size: 14px;
    font-weight: 600;
}

.yg-lazy-sentinel.is-active {
    display: flex;
}

.yg-lazy-sentinel::before {
    content: "";
    width: 22px;
    height: 22px;
    border: 2px solid #DCEAF6;
    border-top-color: #1B5190;
    border-radius: 999px;
    animation: ygLoaderSpin 0.82s linear infinite;
}

.yg-lazy-sentinel::after {
    content: "Y\00fckleniyor...";
}

@keyframes ygLoaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes ygLoaderLine {
    0% { transform: translateX(-110%); }
    55%, 100% { transform: translateX(235%); }
}

@keyframes ygLoaderLogo {
    0%, 100% { opacity: 0.92; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}
