/* ==========================================================================
   Dubbelbluf — age-gate.css
   Full-screen overlay, blur backdrop.
   ========================================================================== */

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(18, 17, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* display controlled by JS via inline style — do not set here (Rule #2) */
    align-items: center;
    justify-content: center;
    padding: var(--s-24);
}

.age-gate__box {
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.age-gate__logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--s-32);
}

.age-gate__logo img,
.age-gate__logo svg {
    height: 40px;
    width: auto;
}

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

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

.age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: var(--s-16);
    align-items: center;
}

.age-gate__confirm {
    width: 100%;
    max-width: 280px;
}

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

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

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

.age-gate__fine-print a {
    color: var(--c-text-dim);
    text-decoration: underline;
}

.age-gate__fine-print a:hover {
    color: var(--c-accent);
}
