.age-gate {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 0, 12, 0.96);
    padding: 20px;
}
.age-gate[hidden] { display: none !important; }
.age-gate__panel {
    max-width: 420px;
    width: 100%;
    background: linear-gradient(160deg, #1a1028, #12071c);
    border: 1px solid rgba(188, 19, 254, 0.35);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.age-gate__badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd740, #ff9100);
    color: #1a0a00;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
}
.age-gate__title { color: #fff; margin: 0 0 10px; font-size: 1.35rem; font-weight: 800; }
.age-gate__text { color: #c8bfd8; line-height: 1.55; margin: 0 0 18px; font-size: 15px; }
.age-gate__actions { display: flex; flex-direction: column; gap: 10px; }
.age-gate__btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: filter 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.age-gate__btn--enter { background: var(--accent, #bc13fe); color: #fff; }
.age-gate__btn--enter:hover { filter: brightness(1.08); }
.age-gate__btn--leave { background: transparent; color: #b0a8be; border: 1px solid #555; }
.age-gate__btn--leave:hover { border-color: #888; color: #fff; }
.age-gate__btn:focus-visible { outline: 2px solid var(--accent, #bc13fe); outline-offset: 2px; }
.age-gate__legal { margin-top: 14px; font-size: 12px; }
.age-gate__legal a { color: var(--color-link, #bc13fe); }
.age-gate__legal a:hover { color: #d44aff; }
body.age-gate-open { overflow: hidden; }
