html.sv-ac-age-gate-is-open,
body.sv-ac-age-gate-is-open {
    overflow: hidden !important;
}

.sv-ac-age-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sv-ac-age-gate[hidden] {
    display: none !important;
}

.sv-ac-age-gate__panel {
    width: min(100%, 460px);
    background: #fff;
    border: 1px solid #111;
    box-shadow: 8px 8px 0 #111;
    padding: 30px;
    text-align: left;
}

.sv-ac-age-gate__eyebrow {
    display: inline-flex;
    align-items: center;
    border: 1px solid #111;
    padding: 5px 9px;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #111;
    color: #fff;
}

.sv-ac-age-gate h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 5vw, 42px);
    line-height: 1;
    color: #111;
    font-weight: 800;
}

.sv-ac-age-gate p {
    margin: 0 0 22px;
    color: #333;
    font-size: 15px;
    line-height: 1.65;
}

.sv-ac-age-gate__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.sv-ac-age-gate__button {
    width: 100%;
    min-height: 48px;
    border: 1px solid #111;
    border-radius: 0;
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.sv-ac-age-gate__button:hover,
.sv-ac-age-gate__button:focus {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #111;
    outline: none;
}

.sv-ac-age-gate__button--yes {
    background: #111;
    color: #fff;
}

.sv-ac-age-gate__button--no {
    background: #fff;
    color: #111;
}

.sv-ac-age-gate__note {
    display: block;
    margin-top: 16px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.sv-ac-age-gate--blocked .sv-ac-age-gate__panel {
    box-shadow: none;
}

@media (max-width: 520px) {
    .sv-ac-age-gate {
        align-items: flex-end;
        padding: 12px;
    }

    .sv-ac-age-gate__panel {
        padding: 22px;
        box-shadow: 5px 5px 0 #111;
    }
}
