/* ==========================================================================
   Age Gate — 18+ modal overlay (coral accent theme)
   ========================================================================== */

.dp-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(9, 9, 12, 0.98);
    padding: var(--s-24);
}

.dp-age-gate.is-verified {
    display: none;
}

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

.dp-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);
}

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

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

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

.dp-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-white);
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background-color var(--dur) var(--ease);
}

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

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

.dp-age-gate__deny:hover {
    border-color: var(--c-text-dim);
    color: var(--c-white);
}
