/* ── 18+ Age Gate Modal ──────────────────────────────── */
/* Display controlled by JS (inline style) — rule #2 */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(11, 14, 26, 0.96);
}

.age-gate__card {
    width: 90%;
    max-width: 420px;
    padding: var(--s-48);
    background-color: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    text-align: center;
}

.age-gate__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 3px solid var(--c-accent);
    border-radius: 50%;
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: var(--s-24);
}

.age-gate__title {
    font-family: var(--f-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--s-12);
}

.age-gate__text {
    font-size: 0.9375rem;
    color: var(--c-text-dim);
    margin-bottom: var(--s-32);
    line-height: 1.6;
}

.age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: var(--s-12);
}

.age-gate__actions .btn-primary,
.age-gate__actions .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* Hide Cookiebot banner until age verified */
.age-not-verified #CookiebotWidget,
.age-not-verified .CookiebotWidget,
.age-not-verified #CybotCookiebotDialog {
    display: none !important;
}
