html.nova-age-gate-open,
body.nova-age-gate-open {
    overflow: hidden !important;
}

body.nova-age-gate-open > *:not(#nova-age-gate) {
    pointer-events: none !important;
    user-select: none !important;
}

body.nova-age-gate-open #nova-age-gate {
    pointer-events: auto !important;
}


.nova-age-gate,
.nova-age-gate * {
    box-sizing: border-box;
}

.nova-age-gate {
    --nova-navy: #0e2448;
    --nova-blue: #0089cf;
    --nova-blue-dark: #006da8;
    --nova-blue-soft: #eaf6fd;
    --nova-surface: #ffffff;
    --nova-surface-alt: #f6f9fc;
    --nova-border: #d6e1ea;
    --nova-copy: #33445b;
    --nova-muted: #6d7b8d;

    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 18px;
    font-family: var(--text-font, var(--body-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif));
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.nova-age-gate__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 12%, rgba(0, 137, 207, 0.18), transparent 34%),
        rgba(6, 23, 49, 0.91);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.nova-age-gate__dialog {
    position: relative;
    width: min(100%, 600px);
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    border: 1px solid rgba(120, 174, 211, 0.42);
    border-radius: 20px;
    background: var(--nova-surface);
    box-shadow:
        0 26px 75px rgba(0, 14, 35, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.58) inset;
    outline: none;
    scrollbar-width: thin;
}

.nova-age-gate__dialog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, transparent, var(--nova-blue), transparent);
}

.nova-age-gate__inner {
    padding: 30px 32px 27px;
}

.nova-age-gate__logo-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto 11px;
}

.nova-age-gate__logo {
    display: block;
    width: min(100%, 255px);
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.nova-age-gate__eyebrow {
    margin: 0 0 9px;
    color: var(--nova-blue-dark);
    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.nova-age-gate h2 {
    margin: 0;
    color: var(--nova-navy);
    font-family: var(--heading-font, var(--text-font, var(--body-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif)));
    font-size: clamp(30px, 4.6vw, 40px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
    text-align: center;
}

.nova-age-gate__intro {
    max-width: 500px;
    margin: 11px auto 18px;
    color: var(--nova-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.nova-age-gate__verified,
.nova-age-gate__field,
.nova-age-gate__affiliation {
    margin-top: 0;
}

.nova-age-gate__affiliation-label {
    display: block;
    margin: 0 0 7px 2px;
    color: var(--nova-navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nova-age-gate__custom-select {
    position: relative;
}

.nova-age-gate__select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 51px;
    padding: 0 46px 0 15px;
    border: 1px solid var(--nova-border);
    border-radius: 12px;
    background: var(--nova-surface);
    color: var(--nova-navy);
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.nova-age-gate__select-trigger:hover,
.nova-age-gate__custom-select.is-open .nova-age-gate__select-trigger {
    border-color: #99bed7;
    background: #fbfdff;
    box-shadow: 0 0 0 3px rgba(0, 137, 207, .09);
}

.nova-age-gate__select-chevron {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--nova-navy);
    border-bottom: 2px solid var(--nova-navy);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .16s ease;
}

.nova-age-gate__custom-select.is-open .nova-age-gate__select-chevron {
    transform: translateY(-30%) rotate(225deg);
}

.nova-age-gate__select-list {
    position: absolute;
    z-index: 20;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    max-height: 230px;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid #bfd3e2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(7, 32, 67, .22);
    -webkit-overflow-scrolling: touch;
}

.nova-age-gate__select-option {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 43px;
    padding: 9px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--nova-copy);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.nova-age-gate__select-option:hover,
.nova-age-gate__select-option:focus-visible {
    background: var(--nova-blue-soft);
    color: var(--nova-navy);
    outline: none;
}

.nova-age-gate__select-option[aria-selected="true"] {
    background: #e2f3fd;
    color: var(--nova-navy);
}

.nova-age-gate__option-check {
    color: var(--nova-blue);
    font-size: 15px;
    font-weight: 900;
    opacity: 0;
}

.nova-age-gate__select-option[aria-selected="true"] .nova-age-gate__option-check {
    opacity: 1;
}

.nova-age-gate__remember {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 11px;
    color: var(--nova-muted);
    font-size: 12px;
    cursor: pointer;
}

.nova-age-gate__error {
    margin: 11px 0 0;
    color: #a02f3b;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.nova-age-gate__actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
    margin-top: 13px;
}

.nova-age-gate__button {
    min-height: 50px;
    border-radius: 11px;
    font: inherit;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform .16s ease, background-color .16s ease, border-color .16s ease, opacity .16s ease, box-shadow .16s ease;
}

.nova-age-gate__button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.nova-age-gate__button:focus-visible,
.nova-age-gate input:focus-visible,
.nova-age-gate select:focus-visible {
    outline: 3px solid rgba(0, 137, 207, .24);
    outline-offset: 2px;
}

.nova-age-gate__button--secondary {
    border: 1px solid var(--nova-border);
    background: #fff;
    color: var(--nova-copy);
}

.nova-age-gate__button--secondary:hover {
    border-color: #b9cbd8;
    background: var(--nova-surface-alt);
}

.nova-age-gate__button--primary {
    border: 1px solid var(--nova-blue);
    background: linear-gradient(180deg, #0796dc 0%, var(--nova-blue) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 137, 207, 0.27);
}

.nova-age-gate__button--primary:hover:not(:disabled) {
    border-color: var(--nova-blue-dark);
    background: linear-gradient(180deg, #0087ca 0%, var(--nova-blue-dark) 100%);
}

.nova-age-gate__button--primary:disabled {
    opacity: .42;
    cursor: not-allowed;
    box-shadow: none;
}

.nova-age-gate__privacy {
    margin: 13px 0 0;
    color: #8b97a6;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}

.nova-age-gate.is-closing {
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

@media (max-width: 640px) {
    .nova-age-gate {
        padding: 10px;
    }

    .nova-age-gate__dialog {
        width: 100%;
        max-height: calc(100dvh - 20px);
        border-radius: 17px;
    }

    .nova-age-gate__dialog::before {
        left: 20px;
        right: 20px;
    }

    .nova-age-gate__inner {
        padding: 23px 17px 18px;
    }

    .nova-age-gate__logo-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto 11px;
}

.nova-age-gate__logo {
    display: block;
    width: min(100%, 255px);
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.nova-age-gate__eyebrow {
        margin-bottom: 7px;
        font-size: 9px;
        letter-spacing: 0.17em;
    }

    .nova-age-gate h2 {
        font-size: clamp(27px, 8vw, 33px);
    }

    .nova-age-gate__intro {
        margin: 9px auto 14px;
        font-size: 13px;
    }

    .nova-age-gate__verified {
        min-height: 42px;
        margin-bottom: 9px;
        font-size: 12px;
    }

    .nova-age-gate__field {
        gap: 9px;
        margin-top: 8px;
        padding: 12px;
        font-size: 12.5px;
    }

    .nova-age-gate input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .nova-age-gate__select-trigger {
        min-height: 47px;
        padding-left: 12px;
        font-size: 12.5px;
    }

    .nova-age-gate__select-list {
        position: fixed;
        z-index: 2147483640;
        top: auto;
        left: 10px;
        right: 10px;
        bottom: max(12px, env(safe-area-inset-bottom));
        max-height: min(52dvh, 390px);
        border-radius: 16px;
        padding: 9px;
    }

    .nova-age-gate__select-option {
        min-height: 48px;
        font-size: 14px;
    }

    .nova-age-gate__actions {
        grid-template-columns: 1fr 1.25fr;
        gap: 8px;
        margin-top: 10px;
    }

    .nova-age-gate__button {
        min-height: 47px;
        padding: 0 10px;
        font-size: 13px;
    }

    .nova-age-gate__privacy {
        margin-top: 10px;
        font-size: 9px;
    }
}

@media (max-width: 390px), (max-height: 650px) {
    .nova-age-gate {
        align-items: start;
        overflow-y: auto;
    }

    .nova-age-gate__dialog {
        margin: auto 0;
        max-height: none;
    }

    .nova-age-gate__inner {
        padding: 17px 13px 14px;
    }

    .nova-age-gate__intro {
        margin-bottom: 10px;
    }

    .nova-age-gate__verified {
        min-height: 39px;
    }

    .nova-age-gate__field {
        padding: 10px 11px;
    }

    .nova-age-gate__select-trigger {
        min-height: 44px;
    }

    .nova-age-gate__button {
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nova-age-gate__button,
    .nova-age-gate__field,
    .nova-age-gate.is-closing {
        transition: none;
    }
}


/* v1.1.0: Real human-verification status card */
.nova-age-gate__verified {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 44px !important;
    margin: 0 0 10px !important;
    padding: 9px 14px !important;
    border: 1px solid #c9e0ef !important;
    border-radius: 12px !important;
    background: #eaf6fd !important;
    color: #0e2448 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.nova-age-gate__check {
    display: inline-grid !important;
    place-items: center !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: #0089cf !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.nova-age-gate__verified.is-pending {
    background: #f4f8fb !important;
    color: #52657c !important;
}

.nova-age-gate__verified.is-pending .nova-age-gate__check {
    background: #7c8ea3 !important;
}

.nova-age-gate__verified.is-error {
    background: #fff2f2 !important;
    border-color: #efc3c3 !important;
    color: #8a2f38 !important;
}

.nova-age-gate__verified.is-error .nova-age-gate__check {
    background: #b94b55 !important;
}

.nova-age-gate__turnstile {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 1px;
    margin: 0 auto 4px;
}

.nova-age-gate__turnstile iframe {
    max-width: 100% !important;
}

@media (max-width: 640px) {
    .nova-age-gate__verified {
        min-height: 42px !important;
        padding: 8px 11px !important;
        font-size: 12px !important;
    }
}


/* v1.1.1: suppress marketing overlays and background form fields while gate is active */
body.nova-age-gate-open [data-nova-marketing-hidden="1"],
body.nova-age-gate-open [id*="omnisend" i],
body.nova-age-gate-open [class*="omnisend" i],
body.nova-age-gate-open [id*="soundest" i],
body.nova-age-gate-open [class*="soundest" i] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.nova-age-gate-open [data-nova-disabled-field="1"] {
    pointer-events: none !important;
}


/* v1.1.3: prevent the affiliation menu from being clipped */
.nova-age-gate__affiliation,
.nova-age-gate__custom-select {
    position: relative !important;
    z-index: 80 !important;
}

.nova-age-gate__custom-select.is-open {
    z-index: 2147483644 !important;
}

.nova-age-gate__select-list {
    z-index: 2147483645 !important;
    max-height: min(300px, 42vh) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
}

@media (min-width: 641px) {
    .nova-age-gate__dialog,
    .nova-age-gate__inner {
        overflow: visible !important;
    }

    .nova-age-gate__select-list {
        top: calc(100% + 8px) !important;
        bottom: auto !important;
    }
}

@media (max-width: 640px) {
    .nova-age-gate__dialog {
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .nova-age-gate__select-list {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: auto !important;
        bottom: max(12px, env(safe-area-inset-bottom)) !important;
        width: auto !important;
        max-height: min(48dvh, 360px) !important;
        border-radius: 16px !important;
    }
}
