.age-gate-lock {
    overflow: hidden;
}

.age-gate-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at 24% 12%, rgba(56, 189, 248, .18), transparent 34%),
        radial-gradient(circle at 78% 18%, rgba(148, 163, 184, .14), transparent 30%),
        rgba(3, 7, 18, .72);
    -webkit-backdrop-filter: blur(32px) saturate(130%) brightness(62%);
    backdrop-filter: blur(32px) saturate(130%) brightness(62%);
    color: #f8fafc;
}

.age-gate-dialog {
    width: min(100%, 460px);
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 8px;
    background: #0f172a;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
    padding: 28px;
}

.age-gate-kicker {
    margin: 0 0 10px;
    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.age-gate-title {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
}

.age-gate-copy {
    margin: 16px 0 0;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}

.age-gate-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.age-gate-button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.age-gate-button-primary {
    background: #38bdf8;
    color: #082f49;
}

.age-gate-button-secondary {
    background: rgba(148, 163, 184, .16);
    color: #e2e8f0;
}

.age-gate-button:focus-visible {
    outline: 3px solid rgba(125, 211, 252, .9);
    outline-offset: 3px;
}

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

    .age-gate-dialog {
        padding: 22px;
    }

    .age-gate-title {
        font-size: 21px;
    }
}
