.age-gate[hidden] { display: none !important; }

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
}

.age-gate__dialog {
    position: relative;
    width: min(520px, calc(100% - 32px));
    border-radius: 14px;
    background: rgba(30, 30, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    padding: 18px 18px 16px;
    color: #E0E0E0;
}

.age-gate__title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin: 0 0 8px 0;
}

.age-gate__text {
    opacity: 0.9;
    line-height: 1.45;
    margin: 0 0 14px 0;
}

.age-gate__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* На мобильном — крупнее target */
@media (max-width: 600px) {
    .age-gate__actions .btn {
        min-height: 44px;
    }
}

body.age-gate--open {
    overflow: hidden;
}


