/* ==========================================================================
   Klavertroef — Age Gate: 18+ modal, rounded corners, warm styling
   ========================================================================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(22, 24, 20, 0.95);
    padding: var(--s-24);
}

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

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

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

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

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

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

.age-gate__confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--s-16) var(--s-32);
    background-color: var(--c-accent);
    color: var(--c-bg);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: background-color var(--dur) var(--ease);
}

.age-gate__confirm:hover {
    background-color: var(--c-accent-hover);
}

.age-gate__deny {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--s-12) var(--s-32);
    background-color: transparent;
    color: var(--c-text-dim);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.age-gate__deny:hover {
    border-color: var(--c-error);
    color: var(--c-error);
}

.age-gate__disclaimer {
    font-size: 0.75rem;
    color: var(--c-text-dim);
    margin-top: var(--s-24);
    line-height: 1.5;
}

.age-gate__disclaimer a {
    color: var(--c-accent);
    text-decoration: underline;
}
