/* ==========================================================================
   Viltgroen — Age Gate: Full-screen Overlay, Blur Backdrop
   ========================================================================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    /* display controlled by JS — do not set here */
    align-items: center;
    justify-content: center;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.age-gate__inner {
    text-align: center;
    max-width: 400px;
    padding: var(--s-32);
}

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

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

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

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

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

.age-gate__confirm {
    width: 100%;
}

.age-gate__deny {
    font-size: 0.8125rem;
    color: var(--c-text-dim);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--f-body);
}

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

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

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