/* ==========================================================================
   age-gate.css — 18+ modal overlay (amber accent theme)
   ========================================================================== */

.rz-age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 11, 14, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--s-24);
}

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

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

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

.rz-age-gate__title {
    font-size: 1.5rem;
    margin-bottom: var(--s-16);
}

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

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

.rz-age-gate__confirm {
    padding: 14px 32px;
}

.rz-age-gate__deny {
    font-size: 0.875rem;
    color: var(--c-text-dim);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--dur) var(--ease);
}

.rz-age-gate__deny:hover {
    color: var(--c-text);
}
