html.age-gate-lock,
html.age-gate-lock body {
    overflow: hidden !important;
    height: 100%;
}

#age-gate-overlay.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.7);
    display: none;
}

.age-gate-modal {
    max-width: 520px;
    margin: 10vh auto 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    text-align: center;
}

.age-gate-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
}

.age-gate-message {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.4;
}

.age-gate-actions {
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
}

.age-gate-btn {
    border: 0;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

.age-gate-btn--primary {
    background: #111;
    color: #fff;
}
.age-gate-image {
    margin-bottom: 16px;
}

.age-gate-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
button#age-gate-yes {
    background: #ac946a;
    color: white;
    font-size: 18px;
    border-radius: 5px;
}
button#age-gate-no {
    font-size: 18px;
    color: black;
    border-radius: 5px;
    background: white;
}