/* ================================================================
   Age Gate — Urban Party Club
   ================================================================ */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
}

.age-gate.age-gate--hidden {
    display: none;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 25, 0.93);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.age-gate__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px 40px;
    max-width: 480px;
    width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    border-top: 5px solid #A43897;
}

.age-gate__brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A43897;
    margin-bottom: 20px;
}

.age-gate__notice {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.age-gate__question {
    font-size: 28px;
    font-weight: 800;
    color: #231f20;
    margin: 0 0 10px;
    line-height: 1.25;
    font-family: "Open Sans Hebrew", "Montserrat", sans-serif;
}

.age-gate__sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.age-gate__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.age-gate__btn {
    flex: 1;
    max-width: 160px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    letter-spacing: 0.04em;
    outline: none;
}

.age-gate__btn:focus-visible {
    outline: 3px solid #A43897;
    outline-offset: 3px;
}

.age-gate__btn--yes {
    background: #A43897;
    color: #fff;
}

.age-gate__btn--yes:hover,
.age-gate__btn--yes:focus-visible {
    background: #c040b0;
    box-shadow: 0 4px 16px rgba(164, 56, 151, 0.4);
}

.age-gate__btn--yes:active {
    transform: scale(0.97);
}

.age-gate__btn--no {
    background: #f2f2f2;
    color: #444;
    border: 2px solid #ddd;
}

.age-gate__btn--no:hover,
.age-gate__btn--no:focus-visible {
    background: #e8e8e8;
    border-color: #bbb;
}

.age-gate__btn--no:active {
    transform: scale(0.97);
}

.age-gate__legal {
    font-size: 11px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.age-gate__legal a {
    color: #A43897;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .age-gate__box {
        padding: 36px 24px 28px;
    }

    .age-gate__question {
        font-size: 22px;
    }

    .age-gate__btn {
        padding: 12px 16px;
        font-size: 15px;
    }
}
