/* ═══════════════════════════════════════════════════════════
   Le Pignondor — age-gate.css
   Full-screen overlay, blocking 18+ modal with French copy +
   Joueurs Info Service deny redirect (rule 58, 59, 92).
   ═══════════════════════════════════════════════════════════ */

/* ── Overlay (JS controls display) ──────────────────────── */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 29, 35, 0.97);
    align-items: center;
    justify-content: center;
    padding: var(--s-24);
}

/* ── Modal card ─────────────────────────────────────────── */
.age-gate__modal {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    max-width: 480px;
    width: 100%;
    padding: var(--s-48) var(--s-32);
    text-align: center;
}

/* ── 18+ badge ──────────────────────────────────────────── */
.age-gate__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid var(--c-accent);
    border-radius: var(--r-md);
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--c-accent);
    margin-bottom: var(--s-24);
}

/* ── Wordmark ───────────────────────────────────────────── */
.age-gate__brand {
    font-family: var(--f-heading);
    font-style: italic;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--c-text);
    margin-bottom: var(--s-24);
}

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

/* ── Buttons ────────────────────────────────────────────── */
.age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: var(--s-12);
}
.age-gate__confirm {
    width: 100%;
}
.age-gate__deny {
    width: 100%;
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--c-text-dim);
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: var(--s-12) var(--s-24);
    cursor: pointer;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.age-gate__deny:hover {
    border-color: var(--c-error);
    color: var(--c-error);
}

/* ── Footer note ────────────────────────────────────────── */
.age-gate__footer {
    margin-top: var(--s-24);
    font-size: 0.6875rem;
    color: var(--c-text-dim);
    opacity: 0.6;
    line-height: 1.5;
}

/* ── Cookiebot hide until age-verified (rule 49) ────────── */
.cookiebot-hidden #CybotCookiebotDialog,
.cookiebot-hidden #CybotCookiebotDialogBodyUnderlay {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}
