/* Ekran reklamasi — to'liq ekranli banner */

.screen-ad {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 56px 16px 24px;
    opacity: 0;
    transition: opacity .32s ease;
}

/* JS ko'rsatganda: avval flex, keyin opacity (animatsiya ishlashi uchun) */
.screen-ad.is-shown {
    display: flex;
}

.screen-ad.is-visible {
    opacity: 1;
}

.screen-ad__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 24, .84);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.screen-ad__box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 420px;
    transform: scale(.94) translateY(10px);
    opacity: 0;
    transition: transform .38s cubic-bezier(.175, .885, .32, 1.275), opacity .38s ease;
}

.screen-ad.is-visible .screen-ad__box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Havola rasm o'lchamiga moslashadi — soya va burchaklar aynan rasm chetida turadi */
.screen-ad__link {
    display: inline-block;
    max-width: 100%;
    line-height: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
    -webkit-tap-highlight-color: transparent;
}

/* width/height auto + max-* — rasm nisbati har qanday o'lchamda saqlanadi */
.screen-ad__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 72vh;
    border-radius: 22px;
}

.screen-ad__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4CB9B5, #2f8f8c);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(76, 185, 181, .38);
    transition: transform .2s ease, box-shadow .2s ease;
}

.screen-ad__cta:hover,
.screen-ad__cta:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(76, 185, 181, .5);
}

.screen-ad__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #101828;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
    transition: background .2s ease, transform .2s ease;
}

.screen-ad__close:hover {
    background: #fff;
    transform: scale(1.06);
}

/* Sahifa orqa fonda aylanmasin */
body.screen-ad-open {
    overflow: hidden;
}

@media (max-width: 420px) {
    .screen-ad {
        padding: 52px 14px 18px;
    }

    .screen-ad__img {
        max-height: 68vh;
    }

    .screen-ad__cta {
        min-height: 44px;
        font-size: 14px;
        padding: 0 24px;
    }
}

/* Bosh ekrani past bo'lgan qurilmalarda rasm sig'sin */
@media (max-height: 620px) {
    .screen-ad__img {
        max-height: 60vh;
    }
}

@media (prefers-reduced-motion: reduce) {

    .screen-ad,
    .screen-ad__box,
    .screen-ad__cta {
        transition: none;
    }
}
