.age-gate[hidden] { display: none; }
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.94);
}
.age-gate__box {
    width: min(460px, 100%);
    padding: 32px 24px;
    border: 1px solid #881337;
    border-radius: 18px;
    background: #18181b;
    color: #f4f4f5;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
}
.age-gate__box h2 { margin: 0 0 12px; font-size: 1.75rem; font-weight: 800; }
.age-gate__box p { margin: 0 0 24px; color: #d4d4d8; line-height: 1.55; }
.age-gate__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.age-gate__button {
    display: block;
    padding: 13px 18px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}
.age-gate__yes { background: #e11d48; color: #fff; }
.age-gate__yes:hover { background: #f43f5e; }
.age-gate__no { background: #3f3f46; color: #fff; }
.age-gate__no:hover { background: #52525b; }
body.age-gate-open { overflow: hidden; }

@media (max-width: 420px) {
    .age-gate__actions { grid-template-columns: 1fr; }
}
