/* =========================================================
   UFF BHABHI
   18+ AGE GATE
========================================================= */

.uff-age-gate {
    position: fixed;
    inset: 0;

    z-index: 200000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(236, 0, 140, .16),
            transparent 42%
        ),
        rgba(7, 3, 10, .88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    opacity: 1;
    visibility: visible;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.uff-age-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.uff-age-gate-card {
    position: relative;

    width: min(520px, 100%);

    padding: 38px 32px 30px;

    text-align: center;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(37, 17, 34, .98),
            rgba(17, 9, 19, .98)
        );

    border: 1px solid
        rgba(236, 0, 140, .30);

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, .60),

        0 0 50px
        rgba(236, 0, 140, .16);

    transform:
        translateY(0)
        scale(1);

    animation:
        uffAgeGateIn
        .35s
        ease;
}

@keyframes uffAgeGateIn {

    from {
        opacity: 0;
        transform:
            translateY(18px)
            scale(.96);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================================
   LOGO
========================================================= */

.uff-age-gate-logo {
    width: 86px;
    height: 86px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    overflow: hidden;

    border: 2px solid
        rgba(245, 197, 66, .60);

    box-shadow:
        0 0 28px
        rgba(236, 0, 140, .20);
}

.uff-age-gate-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   18+ BADGE
========================================================= */

.uff-age-badge {
    width: 66px;
    height: 66px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #ec008c,
            #7b2cff
        );

    color: #fff;

    font-size: 20px;
    font-weight: 800;

    box-shadow:
        0 0 30px
        rgba(236, 0, 140, .28);
}


/* =========================================================
   TEXT
========================================================= */

.uff-age-gate-title {
    margin: 0 0 8px;

    color: #fff;

    font-family: 'Cinzel', serif;

    font-size: clamp(
        1.8rem,
        4vw,
        2.5rem
    );

    line-height: 1.15;
}


.uff-age-gate-subtitle {
    margin: 0 0 18px;

    color: #FFD84D;

    font-size: .95rem;
    font-weight: 700;
}


.uff-age-gate-text {
    max-width: 410px;

    margin: 0 auto 24px;

    color:
        rgba(255,255,255,.70);

    font-size: .88rem;

    line-height: 1.7;
}


/* =========================================================
   WARNING
========================================================= */

.uff-age-warning {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 24px;

    padding: 13px 15px;

    text-align: left;

    border-radius: 14px;

    background:
        rgba(245,197,66,.07);

    border: 1px solid
        rgba(245,197,66,.18);

    color:
        rgba(255,255,255,.70);

    font-size: .78rem;

    line-height: 1.55;
}

.uff-age-warning i {
    flex-shrink: 0;

    margin-top: 2px;

    color: #FFD84D;
}


/* =========================================================
   BUTTONS
========================================================= */

.uff-age-actions {
    display: flex;
    flex-direction: column;

    gap: 11px;
}


.uff-age-enter {
    width: 100%;

    min-height: 52px;

    border: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #ec008c,
            #7b2cff
        );

    color: #fff;

    font: inherit;

    font-size: .92rem;
    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 12px 30px
        rgba(236,0,140,.26);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.uff-age-enter:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 16px 36px
        rgba(236,0,140,.38);
}


.uff-age-leave {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    border-radius: 12px;

    border: 1px solid
        rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.04);

    color:
        rgba(255,255,255,.72);

    text-decoration: none;

    font-size: .82rem;
    font-weight: 650;

    transition: .2s ease;
}

.uff-age-leave:hover {
    color: #fff;

    background:
        rgba(255,255,255,.08);
}


/* =========================================================
   FOOTNOTE
========================================================= */

.uff-age-footnote {
    margin-top: 18px;

    color:
        rgba(255,255,255,.34);

    font-size: .68rem;

    line-height: 1.5;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .uff-age-gate {
        padding: 14px;
    }

    .uff-age-gate-card {
        padding: 30px 20px 24px;

        border-radius: 22px;
    }

    .uff-age-gate-logo {
        width: 72px;
        height: 72px;
    }

    .uff-age-badge {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

}