html.age-gate-active,
html.age-gate-active body {
    overflow: hidden;
}
.age-gate {
    width: min(100% - 2rem, 34rem);
    max-height: min(46rem, calc(100vh - 2rem));
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 18px;
    color: #f7f7f7;
    background: #171717;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.age-gate::backdrop {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(3px);
}
.age-gate__content {
    padding: 2rem;
    text-align: center;
}
.age-gate__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    margin-bottom: 1rem;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}
.age-gate__title {
    margin: 0 0 0.85rem;
    color: #ffffff;
    font-size: clamp(1.45rem, 4vw, 2rem);
    line-height: 1.2;
}
.age-gate__text {
    max-width: 31rem;
    margin: 0 auto 1rem;
    color: #e1e1e1;
    font-size: 1rem;
    line-height: 1.55;
}
.age-gate__notice {
    margin: 0 0 1.5rem;
    color: #bdbdbd;
    font-size: 0.88rem;
    line-height: 1.5;
}
.age-gate__actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.age-gate__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    border-radius: 10px;
    font: inherit;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        background-color 0.15s ease,
        border-color 0.15s ease;
}
.age-gate__button:hover {
    transform: translateY(-1px);
}
.age-gate__button:focus-visible,
.age-gate__links a:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}
.age-gate__button--allow {
    color: #ffffff;
    background: #b3035c;
	font-family: 'PT Sans', sans-serif;
}
.age-gate__button--allow:hover {
    background: #b3035c;
}
.age-gate__button--exit {
    color: #ffffff;
    border-color: #b3035c;
    background: transparent;
	font-family: 'PT Sans', sans-serif;
}
.age-gate__button--exit:hover {
    border-color: #b3035c;
    background: #2a2a2a;
}
.age-gate__links {
    margin: 1.4rem 0 0;
    color: #bdbdbd;
    font-size: 0.82rem;
    line-height: 1.5;
}
.age-gate__links a {
    color: #f09;
    text-underline-offset: 3px;
}
.age-gate__links a:hover {
    color: #d9d9d9;
}
.age-gate.age-gate--fallback[open] {
    position: fixed;
    z-index: 2147483647;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.age-gate.age-gate--fallback[open]::before {
    position: fixed;
    z-index: -1;
    inset: -100vmax;
    content: "";
    background: rgba(0, 0, 0, 0.88);
}
@media (max-width: 480px) {
    .age-gate {
        width: min(100% - 1rem, 34rem);
        max-height: calc(100vh - 1rem);
        border-radius: 14px;
    }
    .age-gate__content {
        padding: 1.5rem 1.2rem;
    }
    .age-gate__badge {
        width: 3.8rem;
        height: 3.8rem;
        font-size: 1.1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .age-gate__button {
        transition: none;
    }
}
.age-gate__notice a {
    color: #ffffff;
    font-weight: 700;
    text-underline-offset: 3px;
}
.age-gate__notice a:hover {
    color: #dddddd;
}