/*
Theme Name: Recommend
Version: 5.5.1
Text Domain: recommend
*/
.theme-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    overflow: visible;
    vertical-align: -0.125em;
}



:root {
    color-scheme: dark;

    --theme-shell: 1350px;
    --theme-header-height: 72px;

    
    --theme-text-micro: 11px;
    --theme-text-caption: 12px;
    --theme-text-body-sm: 14px;
    --theme-text-body: 15px;
    --theme-text-body-lg: 17px;
    --theme-text-card-title: 16px;
    --theme-text-section: clamp(24px, 2.25vw, 32px);
    --theme-text-page: clamp(36px, 4vw, 54px);
    --theme-leading-copy: 1.72;
    --theme-leading-heading: 1.25;

    --theme-serif:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "HGS明朝E",
        Georgia,
        serif;

    --theme-sans:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Noto Sans JP",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        Meiryo,
        sans-serif;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    scroll-behavior: smooth;
    background: var(--theme-background-deep);
}

body.site-theme {
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--theme-text);
    background:
        radial-gradient(
            circle at 50% 0,
            rgb(var(--theme-accent-primary-rgb) / 0.045),
            transparent 42rem
        ),
        var(--theme-background-deep);
    font-family: var(--theme-sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.site-theme *,
body.site-theme *::before,
body.site-theme *::after {
    box-sizing: border-box;
}

body.site-theme img,
body.site-theme video,
body.site-theme iframe,
body.site-theme svg {
    max-width: 100%;
}

body.site-theme img,
body.site-theme video {
    height: auto;
}

body.site-theme a {
    color: inherit;
    text-decoration: none;
}

body.site-theme button,
body.site-theme input,
body.site-theme select,
body.site-theme textarea {
    font: inherit;
}

body.site-theme :focus-visible {
    outline: 2px solid var(--theme-accent-primary);
    outline-offset: 3px;
}

.theme-shell {
    width: min(var(--theme-shell), 100%);
    max-width: 100%;
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


.theme-site-header {
    position: relative;
    z-index: 50;
    height: var(--theme-header-height);
    border-bottom: 1px solid rgb(var(--theme-accent-highlight-rgb) / 0.28);
    background:
        linear-gradient(
            90deg,
            rgb(var(--theme-section-2-rgb) / 0.985),
            rgb(var(--theme-section-3-rgb) / 0.985) 52%,
            rgb(var(--theme-background-rgb) / 0.985)
        );
    box-shadow:
        0 1px 0 rgb(var(--theme-text-rgb) / 0.015),
        0 10px 40px rgb(var(--theme-background-deep-rgb) / 0.16);
}

.theme-header-inner {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    height: 100%;
    padding: 0 30px;
}

.theme-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    color: var(--theme-accent-highlight-soft);
}

.theme-brand-crown {
    width: 46px;
    flex: 0 0 auto;
    color: var(--theme-accent-highlight);
    filter:
        drop-shadow(
            0 0 10px
            rgb(var(--theme-accent-highlight-rgb) / 0.14)
        );
}

.theme-brand span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.theme-brand strong {
    overflow: hidden;
    font-family: var(--theme-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-brand small {
    margin-top: 5px;
    overflow: hidden;
    color: var(--theme-accent-highlight);
    font-family: var(--theme-serif);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-primary-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 42px);
}

.theme-primary-nav a {
    position: relative;
    display: flex;
    min-width: max-content;
    flex-direction: column;
    align-items: center;
    padding: 7px 0;
    color: var(--theme-accent-highlight);
    line-height: 1.2;
    transition:
        color 180ms ease,
        text-shadow 180ms ease;
}

.theme-primary-nav a::after {
    position: absolute;
    right: 12%;
    bottom: 0;
    left: 12%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--theme-accent-primary),
            transparent
        );
    opacity: 0;
    transform: scaleX(0.35);
    content: "";
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.theme-primary-nav a:hover {
    color: var(--theme-accent-primary-soft);
    text-shadow:
        0 0 18px
        rgb(var(--theme-accent-primary-rgb) / 0.22);
}

.theme-primary-nav a:hover::after {
    opacity: 0.75;
    transform: scaleX(1);
}

.theme-primary-nav strong {
    font-family: var(--theme-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.015em;
}

.theme-primary-nav small {
    margin-top: 5px;
    color: var(--theme-muted-deep);
    font-size: 8px;
    letter-spacing: 0.055em;
}

.theme-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


.theme-primary-nav-actions {
    display: none;
}

.theme-header-action {
    position: relative;
    display: flex;
    min-width: 126px;
    height: 44px;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    overflow: hidden;
    border: 1px solid;
    border-radius: 8px;
    text-decoration: none;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.theme-header-action::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0;
    transition: opacity 180ms ease;
}

.theme-header-action:hover {
    transform: translateY(-1px);
}

.theme-header-action:hover::before {
    opacity: 1;
}

.theme-header-action-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    font-size: 10px;
    line-height: 1;
}

.theme-header-action-copy {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.05;
}

.theme-header-action-copy small {
    margin-bottom: 4px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.theme-header-action-copy strong {
    font-family: var(--theme-serif);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}


.theme-header-action--newsletter {
    border-color: rgb(var(--theme-accent-highlight-rgb) / 0.34);
    background:
        linear-gradient(
            135deg,
            rgb(var(--theme-accent-highlight-rgb) / 0.06),
            rgb(var(--theme-accent-primary-rgb) / 0.025)
        );
    color: var(--theme-accent-highlight-pale);
}

.theme-header-action--newsletter::before {
    background:
        radial-gradient(
            circle at 28% 50%,
            rgb(var(--theme-accent-highlight-rgb) / 0.13),
            transparent 72%
        );
}

.theme-header-action--newsletter .theme-header-action-icon {
    border:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.34);
    background:
        rgb(var(--theme-accent-highlight-rgb) / 0.055);
    color: var(--theme-accent-highlight);
}

.theme-header-action--newsletter small {
    color: var(--theme-muted-deep);
}

.theme-header-action--newsletter:hover {
    border-color:
        rgb(var(--theme-accent-highlight-rgb) / 0.72);
    box-shadow:
        0 8px 26px rgb(var(--theme-background-deep-rgb) / 0.22),
        0 0 18px rgb(var(--theme-accent-highlight-rgb) / 0.055);
}


.theme-header-action--membership {
    border-color:
        rgb(var(--theme-accent-secondary-rgb) / 0.38);
    background:
        linear-gradient(
            135deg,
            rgb(var(--theme-accent-secondary-rgb) / 0.075),
            rgb(var(--theme-accent-primary-rgb) / 0.022)
        );
    color: var(--theme-text-dim);
}

.theme-header-action--membership::before {
    background:
        radial-gradient(
            circle at 26% 50%,
            rgb(var(--theme-accent-secondary-rgb) / 0.14),
            transparent 72%
        );
}

.theme-header-action--membership .theme-header-action-icon {
    border:
        1px solid
        rgb(var(--theme-accent-secondary-rgb) / 0.38);
    background:
        rgb(var(--theme-accent-secondary-rgb) / 0.06);
    color: var(--theme-accent-secondary-soft);
}

.theme-header-action--membership small {
    color: var(--theme-muted-deep);
}

.theme-header-action--membership:hover {
    border-color:
        rgb(var(--theme-accent-secondary-rgb) / 0.72);
    box-shadow:
        0 8px 26px rgb(var(--theme-background-deep-rgb) / 0.22),
        0 0 20px rgb(var(--theme-accent-secondary-rgb) / 0.065);
}

.theme-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 1px solid var(--theme-border);
    border-radius: 7px;
    color: var(--theme-accent-primary);
    background:
        rgb(var(--theme-accent-primary-rgb) / 0.025);
    cursor: pointer;
}

.theme-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: currentColor;
}


.theme-custom-footer {
    border-top:
        1px solid
        rgb(var(--theme-accent-primary-rgb) / 0.12);
    background: var(--theme-background-deep);
}

.theme-custom-footer .theme-shell {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    color: var(--theme-muted-deep);
    font-size: 10px;
}

.theme-custom-footer p {
    margin: 0;
}

.theme-custom-footer nav {
    display: flex;
    gap: 20px;
}

.theme-custom-footer a {
    transition: color 160ms ease;
}

.theme-custom-footer a:hover {
    color: var(--theme-accent-primary);
}


.theme-skip-link:focus {
    position: fixed !important;
    top: 10px;
    left: 10px;
    z-index: 9999;
    width: auto !important;
    height: auto !important;
    clip: auto !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    color: var(--theme-on-primary);
    background: var(--theme-accent-primary);
}


.theme-age-mark {
    display: inline-flex;
    margin-left: 6px;
    padding: 1px 5px;
    border:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.45);
    border-radius: 3px;
    color: var(--theme-accent-highlight);
    font-size: 10px;
}

@media (max-width: 1180px) {
    .theme-header-inner {
        grid-template-columns:
            230px
            minmax(0, 1fr)
            auto;
        gap: 16px;
        padding-inline: 22px;
    }

    .theme-primary-nav {
        gap: 18px;
    }

    .theme-header-action {
        min-width: 112px;
        padding-inline: 10px;
    }

    .theme-header-action-icon {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }

    .theme-header-action-copy strong {
        font-size: 9px;
    }
}

@media (max-width: 1020px) {
    :root {
        --theme-header-height: 64px;
    }

    .theme-header-inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            auto;
    }

    .theme-brand {
        grid-column: 1;
    }

    .theme-brand-crown {
        width: 40px;
    }

    .theme-brand strong {
        font-size: 20px;
    }

    .theme-header-actions {
        grid-column: 2;
        grid-row: 1;
    }

    .theme-header-action {
        min-width: 106px;
        height: 38px;
    }

    .theme-header-action-icon {
        display: none;
    }

    .theme-header-action-copy small {
        display: none;
    }

    .theme-header-action-copy strong {
        font-family: var(--theme-sans);
        font-size: 9px;
        font-weight: 700;
    }

    .theme-menu-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
    }

    .theme-primary-nav {
        position: absolute;
        top: var(--theme-header-height);
        right: 16px;
        display: none;
        width:
            min(
                360px,
                calc(100vw - 32px)
            );
        padding: 8px;
        border:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.26);
        border-radius: 9px;
        background:
            rgb(var(--theme-section-2-rgb) / 0.985);
        box-shadow:
            0 18px 45px
            rgb(var(--theme-background-deep-rgb) / 0.65);
    }

    .theme-primary-nav.is-open {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .theme-primary-nav a {
        min-width: 0;
        padding: 15px 10px;
        border:
            1px solid
            rgb(var(--theme-accent-primary-rgb) / 0.1);
        border-radius: 7px;
        background:
            rgb(var(--theme-accent-primary-rgb) / 0.015);
    }

    .theme-primary-nav strong {
        font-size: 13px;
    }

    .theme-primary-nav small {
        font-size: 9px;
    }

    .theme-primary-nav a::after {
        display: none;
    }

    .theme-primary-nav small {
        margin-top: 5px;
    }
}

@media (max-width: 680px) {
    .theme-header-inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto;
        gap: 10px;
        padding-inline: 14px;
    }

    .theme-brand {
        grid-column: 1;
        gap: 8px;
    }

    .theme-brand-crown {
        width: 34px;
    }

    .theme-brand strong {
        font-size: 18px;
    }

    .theme-brand small {
        display: none;
    }

    .theme-header-actions {
        display: none;
    }

    .theme-menu-toggle {
        grid-column: 2;
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .theme-primary-nav {
        right: 12px;
        width:
            min(
                390px,
                calc(100vw - 24px)
            );
        padding: 10px;
    }

    .theme-primary-nav.is-open {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .theme-primary-nav a {
        align-items: flex-start;
        padding: 15px 14px;
    }

    .theme-primary-nav strong {
        font-size: 15px;
    }

    .theme-primary-nav small {
        margin-top: 6px;
        font-size: 10px;
    }

    .theme-primary-nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 3px;
    }

    .theme-primary-nav-actions .theme-header-action {
        min-width: 0;
        height: 52px;
        justify-content: flex-start;
        padding: 0 12px;
    }

    .theme-primary-nav-actions .theme-header-action-icon {
        display: grid;
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .theme-primary-nav-actions .theme-header-action-copy small {
        display: block;
        font-size: 7px;
    }

    .theme-primary-nav-actions .theme-header-action-copy strong {
        font-family: var(--theme-serif);
        font-size: 11px;
    }

    .theme-custom-footer .theme-shell {
        flex-direction: column;
        gap: 8px;
        padding: 18px 16px;
    }
}

@media (max-width: 440px) {
    .theme-brand-crown {
        width: 31px;
    }

    .theme-brand strong {
        font-size: 16px;
    }

    .theme-primary-nav {
        right: 10px;
        width:
            min(
                360px,
                calc(100vw - 20px)
            );
    }

    .theme-primary-nav-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .theme-primary-nav a,
    .theme-primary-nav a::after,
    .theme-header-action,
    .theme-header-action::before,
    .theme-custom-footer a {
        transition: none;
    }
}



@media (max-width: 1020px) {
    .theme-site-header {
        z-index: 1000;
    }

    .theme-menu-toggle {
        position: relative;
        z-index: 10001;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .theme-primary-nav {
        position: fixed;
        z-index: 10000;
        top: var(--theme-header-height);
        right: 12px;
        left: auto;
        display: none;
        max-height:
            calc(
                100dvh
                - var(--theme-header-height)
                - 16px
            );
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .theme-site-header.is-menu-open
        .theme-primary-nav,
    .theme-primary-nav.is-open {
        display: grid;
    }
}

@media (max-width: 680px) {
    .theme-primary-nav {
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
    }
}




.theme-mobile-nav-head,
.theme-mobile-nav-backdrop {
    display: none;
}

body.theme-menu-open {
    overflow: hidden;
}

@media (max-width: 1020px) {
    .theme-site-header {
        z-index: 1000;
    }

    .theme-header-inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto;
        gap: 12px;
    }

    .theme-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .theme-header-actions {
        display: none;
    }

    .theme-menu-toggle {
        position: relative;
        z-index: 10003;
        display: grid;
        grid-column: 2;
        grid-row: 1;
        width: 42px;
        height: 42px;
        place-content: center;
        padding: 8px;
        border:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.42);
        border-radius: 8px;
        color: var(--theme-accent-highlight);
        background:
            rgb(var(--theme-section-3-rgb) / 0.94);
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color:
            transparent;
    }

    .theme-menu-toggle > span:not(.screen-reader-text) {
        width: 20px;
        height: 1px;
        margin: 3px 0;
        background: currentColor;
    }

    .theme-mobile-nav-backdrop {
        position: fixed;
        z-index: 10000;
        inset: 0;
        display: block;
        padding: 0;
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background:
            rgb(var(--theme-section-1-rgb) / 0.74);
        backdrop-filter: blur(3px);
        transition:
            opacity 220ms ease,
            visibility 220ms ease;
    }

    .theme-primary-nav {
        position: fixed;
        z-index: 10002;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        display: flex;
        width:
            min(
                86vw,
                390px
            );
        height: 100dvh;
        max-height: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
        border: 0;
        border-left:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.26);
        border-radius: 0;
        background:
            radial-gradient(
                circle at 100% 0,
                rgb(var(--theme-accent-secondary-rgb) / 0.07),
                transparent 23rem
            ),
            radial-gradient(
                circle at 0 78%,
                rgb(var(--theme-accent-primary-rgb) / 0.055),
                transparent 25rem
            ),
            var(--theme-section-3);
        box-shadow:
            -28px 0 70px
            rgb(var(--theme-background-deep-rgb) / 0.56);
        transform:
            translate3d(
                102%,
                0,
                0
            );
        visibility: hidden;
        pointer-events: none;
        overscroll-behavior: contain;
        transition:
            transform 230ms
                cubic-bezier(
                    0.22,
                    1,
                    0.36,
                    1
                ),
            visibility 230ms ease;
    }

    .theme-primary-nav.is-open,
    .theme-site-header.is-menu-open
    .theme-primary-nav {
        display: flex;
        transform:
            translate3d(
                0,
                0,
                0
            );
        visibility: visible;
        pointer-events: auto;
    }

    .theme-site-header.is-menu-open
    .theme-mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .theme-mobile-nav-head {
        position: sticky;
        z-index: 2;
        top: 0;
        display: flex;
        min-height: 72px;
        flex: 0 0 auto;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 18px;
        border-bottom:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.18);
        background:
            rgb(var(--theme-section-3-rgb) / 0.96);
        backdrop-filter: blur(12px);
    }

    .theme-mobile-nav-brand {
        display: inline-flex;
        min-width: 0;
        align-items: center;
        gap: 9px;
        color: var(--theme-accent-highlight-soft);
    }

    .theme-mobile-nav-crown {
        width: 34px;
        flex: 0 0 auto;
        color: var(--theme-accent-highlight);
    }

    .theme-mobile-nav-brand strong {
        overflow: hidden;
        font-family: var(--theme-serif);
        font-size: 18px;
        font-weight: 600;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .theme-mobile-nav-close {
        display: grid;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        place-items: center;
        padding: 0;
        border:
            1px solid
            rgb(var(--theme-accent-primary-rgb) / 0.22);
        border-radius: 50%;
        color: var(--theme-accent-primary-soft);
        background:
            rgb(var(--theme-accent-primary-rgb) / 0.025);
        cursor: pointer;
        font-size: 25px;
        line-height: 1;
    }

    .theme-primary-nav > a {
        min-width: 0;
        flex: 0 0 auto;
        align-items: flex-start;
        padding: 17px 22px;
        border: 0;
        border-bottom:
            1px solid
            rgb(var(--theme-text-rgb) / 0.055);
        border-radius: 0;
        background: transparent;
    }

    .theme-primary-nav > a::after {
        display: none;
    }

    .theme-primary-nav > a strong {
        color: var(--theme-text-soft);
        font-size: 17px;
        font-weight: 500;
    }

    .theme-primary-nav > a small {
        margin-top: 6px;
        color: var(--theme-muted);
        font-size: 11px;
    }

    .theme-primary-nav > a:hover strong {
        color: var(--theme-accent-primary-soft);
    }

    .theme-primary-nav-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: auto;
        padding: 18px;
        border-top:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.16);
    }

    .theme-primary-nav-actions
    .theme-header-action {
        display: flex;
        width: 100%;
        min-width: 0;
        height: 60px;
        justify-content: flex-start;
        gap: 12px;
        padding: 0 14px;
        border-radius: 9px;
        transform: none;
    }

    .theme-primary-nav-actions
    .theme-header-action-icon {
        display: grid;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .theme-primary-nav-actions
    .theme-header-action-copy small {
        display: block;
        margin-bottom: 5px;
        font-size: 8px;
    }

    .theme-primary-nav-actions
    .theme-header-action-copy strong {
        font-family: var(--theme-serif);
        font-size: 14px;
    }

    .theme-primary-nav-actions
    .theme-header-action--newsletter {
        border-color:
            rgb(var(--theme-accent-highlight-rgb) / 0.5);
        background:
            linear-gradient(
                90deg,
                rgb(var(--theme-accent-highlight-rgb) / 0.07),
                rgb(var(--theme-accent-primary-rgb) / 0.018)
            );
    }

    .theme-primary-nav-actions
    .theme-header-action--membership {
        border-color:
            rgb(var(--theme-accent-secondary-rgb) / 0.5);
        background:
            linear-gradient(
                90deg,
                rgb(var(--theme-accent-secondary-rgb) / 0.08),
                rgb(var(--theme-accent-primary-rgb) / 0.018)
            );
    }
}

@media (max-width: 520px) {
    .theme-header-inner {
        padding-inline: 13px;
    }

    .theme-brand-crown {
        width: 31px;
    }

    .theme-brand strong {
        font-size: 17px;
    }

    .theme-primary-nav {
        width:
            min(
                90vw,
                370px
            );
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-primary-nav,
    .theme-mobile-nav-backdrop {
        transition: none;
    }
}




@media (max-width: 1020px) {
    .theme-mobile-nav-head {
        display: none !important;
    }

    .theme-site-header {
        z-index: 1000;
    }

    .theme-header-inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto;
        gap: 12px;
    }

    .theme-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .theme-header-actions {
        display: none;
    }

    .theme-menu-toggle {
        position: relative;
        z-index: 10003;
        display: grid;
        grid-column: 2;
        grid-row: 1;
        width: 42px;
        height: 42px;
        place-content: center;
        padding: 8px;
        border:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.42);
        border-radius: 8px;
        color: var(--theme-accent-highlight);
        background:
            rgb(var(--theme-section-3-rgb) / 0.94);
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color:
            transparent;
        transition:
            border-color 180ms ease,
            background 180ms ease,
            color 180ms ease;
    }

    .theme-menu-toggle
    > span:not(.screen-reader-text) {
        display: block;
        width: 20px;
        height: 1px;
        margin: 3px 0;
        background: currentColor;
        transform-origin: center;
        transition:
            transform 190ms ease,
            opacity 150ms ease;
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle {
        border-color:
            rgb(var(--theme-accent-secondary-rgb) / 0.58);
        color: var(--theme-accent-secondary-soft);
        background:
            rgb(var(--theme-background-rgb) / 0.96);
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle
    > span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle
    > span:nth-child(2) {
        opacity: 0;
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle
    > span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    .theme-mobile-nav-backdrop {
        position: fixed;
        z-index: 10000;
        top: var(--theme-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 0;
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background:
            rgb(var(--theme-section-1-rgb) / 0.74);
        backdrop-filter: blur(3px);
        transition:
            opacity 220ms ease,
            visibility 220ms ease;
    }

    .theme-site-header.is-menu-open
    .theme-mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .theme-primary-nav {
        position: fixed;
        z-index: 10002;
        top: var(--theme-header-height);
        right: 0;
        bottom: 0;
        left: auto;
        display: flex;
        width:
            min(
                86vw,
                390px
            );
        height:
            calc(
                100dvh
                - var(--theme-header-height)
            );
        max-height: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 10px 18px 18px;
        overflow-x: hidden;
        overflow-y: auto;
        border: 0;
        border-left:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.24);
        border-radius: 0;
        background:
            radial-gradient(
                circle at 100% 4%,
                rgb(var(--theme-accent-secondary-rgb) / 0.06),
                transparent 22rem
            ),
            radial-gradient(
                circle at 0 78%,
                rgb(var(--theme-accent-primary-rgb) / 0.05),
                transparent 24rem
            ),
            linear-gradient(
                180deg,
                var(--theme-section-3),
                var(--theme-background)
            );
        box-shadow:
            -28px 0 70px
            rgb(var(--theme-background-deep-rgb) / 0.56);
        transform:
            translate3d(
                102%,
                0,
                0
            );
        visibility: hidden;
        pointer-events: none;
        overscroll-behavior: contain;
        transition:
            transform 230ms
                cubic-bezier(
                    0.22,
                    1,
                    0.36,
                    1
                ),
            visibility 230ms ease;
    }

    .theme-primary-nav.is-open,
    .theme-site-header.is-menu-open
    .theme-primary-nav {
        display: flex;
        transform:
            translate3d(
                0,
                0,
                0
            );
        visibility: visible;
        pointer-events: auto;
    }

    .theme-primary-nav > a {
        min-width: 0;
        min-height: 68px;
        flex: 0 0 auto;
        align-items: flex-start;
        justify-content: center;
        padding: 14px 4px;
        border: 0;
        border-bottom:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.11);
        border-radius: 0;
        background: transparent;
    }

    .theme-primary-nav > a::after {
        display: none;
    }

    .theme-primary-nav > a strong {
        color: var(--theme-text-soft);
        font-size: 17px;
        font-weight: 500;
        line-height: 1.2;
    }

    .theme-primary-nav > a small {
        margin-top: 6px;
        color: var(--theme-muted);
        font-size: 11px;
        line-height: 1.3;
    }

    .theme-primary-nav > a:hover strong {
        color: var(--theme-accent-primary-soft);
    }

    .theme-primary-nav-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: auto;
        padding: 20px 0 0;
        border-top:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.15);
    }

    .theme-primary-nav-actions
    .theme-header-action {
        display: grid;
        grid-template-columns:
            38px
            minmax(0, 1fr);
        width: 100%;
        min-width: 0;
        min-height: 62px;
        height: auto;
        gap: 12px;
        align-items: center;
        justify-content: stretch;
        padding: 11px 14px;
        overflow: visible;
        border-radius: 9px;
        transform: none;
    }

    .theme-primary-nav-actions
    .theme-header-action::before {
        display: none;
    }

    .theme-primary-nav-actions
    .theme-header-action-icon {
        display: grid;
        width: 36px;
        height: 36px;
        flex: none;
        place-items: center;
        border-radius: 7px;
    }

    .theme-primary-nav-actions
    .theme-header-action-icon svg {
        display: block;
        width: 20px;
        height: 20px;
    }

    .theme-primary-nav-actions
    .theme-header-action-copy {
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
    }

    .theme-primary-nav-actions
    .theme-header-action-copy small {
        display: block;
        width: 100%;
        margin: 0 0 5px;
        overflow: hidden;
        font-size: 8px;
        line-height: 1;
        letter-spacing: 0.09em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .theme-primary-nav-actions
    .theme-header-action-copy strong {
        display: block;
        width: 100%;
        overflow: hidden;
        font-family: var(--theme-serif);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.15;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .theme-primary-nav-actions
    .theme-header-action--newsletter {
        border-color:
            rgb(var(--theme-accent-highlight-rgb) / 0.48);
        color: var(--theme-accent-highlight-soft);
        background:
            linear-gradient(
                90deg,
                rgb(var(--theme-accent-highlight-rgb) / 0.075),
                rgb(var(--theme-accent-primary-rgb) / 0.015)
            );
    }

    .theme-primary-nav-actions
    .theme-header-action--newsletter
    .theme-header-action-icon {
        border-color:
            rgb(var(--theme-accent-highlight-rgb) / 0.38);
        color: var(--theme-accent-highlight);
        background:
            rgb(var(--theme-accent-highlight-rgb) / 0.04);
    }

    .theme-primary-nav-actions
    .theme-header-action--membership {
        border-color:
            rgb(var(--theme-accent-secondary-rgb) / 0.48);
        color: var(--theme-text-dim);
        background:
            linear-gradient(
                90deg,
                rgb(var(--theme-accent-secondary-rgb) / 0.085),
                rgb(var(--theme-accent-primary-rgb) / 0.015)
            );
    }

    .theme-primary-nav-actions
    .theme-header-action--membership
    .theme-header-action-icon {
        border-color:
            rgb(var(--theme-accent-secondary-rgb) / 0.38);
        color: var(--theme-accent-secondary-soft);
        background:
            rgb(var(--theme-accent-secondary-rgb) / 0.045);
    }
}

.theme-header-action-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

@media (max-width: 520px) {
    .theme-primary-nav {
        width:
            min(
                90vw,
                370px
            );
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-primary-nav,
    .theme-mobile-nav-backdrop,
    .theme-menu-toggle
    > span:not(.screen-reader-text) {
        transition: none;
    }
}




@media (max-width: 1020px) {
    .theme-site-header {
        position: relative;
        z-index: 10000;
        isolation: isolate;
    }

    .theme-header-inner {
        position: relative;
        z-index: 3;
    }

    .theme-menu-toggle {
        position: relative;
        z-index: 4;
        pointer-events: auto !important;
        user-select: none;
        touch-action: manipulation;
    }

    .theme-menu-toggle::before,
    .theme-menu-toggle::after {
        pointer-events: none;
    }

    .theme-menu-toggle
    > span {
        pointer-events: none;
    }

    .theme-mobile-nav-backdrop {
        z-index: 1;
        top: var(--theme-header-height);
    }

    .theme-primary-nav {
        z-index: 2;
        top: var(--theme-header-height);
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle {
        pointer-events: auto !important;
    }

    
    .theme-menu-toggle
    > span:not(.screen-reader-text) {
        position: relative;
        width: 20px;
        height: 1px;
        margin: 3px 0;
        background: currentColor;
        transform-origin: center;
        transition:
            transform 190ms ease,
            opacity 150ms ease;
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle
    > span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle
    > span:nth-child(2) {
        opacity: 0;
    }

    .theme-site-header.is-menu-open
    .theme-menu-toggle
    > span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-menu-toggle
    > span:not(.screen-reader-text) {
        transition: none;
    }
}

@media (max-width: 1020px) {
    .theme-primary-nav {
        box-sizing: border-box;
    }
}




.theme-site-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 0 24px;
    border-top:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.2);
    background:
        radial-gradient(
            circle at 15% 4%,
            rgb(var(--theme-accent-primary-rgb) / 0.055),
            transparent 30rem
        ),
        radial-gradient(
            circle at 86% 8%,
            rgb(var(--theme-accent-secondary-rgb) / 0.035),
            transparent 26rem
        ),
        linear-gradient(
            180deg,
            var(--theme-section-3) 0%,
            var(--theme-section-1) 72%,
            var(--theme-section-1) 100%
        );
}

.theme-site-footer::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            118deg,
            transparent 0 23%,
            rgb(var(--theme-accent-highlight-rgb) / 0.026) 23.15%,
            transparent 23.4% 67%,
            rgb(var(--theme-accent-primary-rgb) / 0.018) 67.15%,
            transparent 67.4%
        );
    content: "";
}

.theme-footer-inner {
    position: relative;
    z-index: 3;
    padding-inline: 30px;
}

.theme-footer-main {
    display: grid;
    grid-template-columns:
        minmax(250px, 0.76fr)
        minmax(0, 1.52fr)
        minmax(270px, 0.68fr);
    gap: 50px;
    align-items: start;
    padding-bottom: 62px;
}

.theme-footer-brand {
    padding-right: 34px;
    border-right:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.19);
}

.theme-footer-brand-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--theme-accent-highlight-soft);
}

.theme-footer-crown {
    width: 58px;
    color: var(--theme-accent-highlight);
    filter:
        drop-shadow(
            0 0 14px
            rgb(var(--theme-accent-highlight-rgb) / 0.12)
        );
}

.theme-footer-brand-link strong {
    margin-top: 14px;
    font-family: var(--theme-serif);
    font-size: 31px;
    font-weight: 500;
}

.theme-footer-brand-tagline {
    margin: 13px 0 0;
    color: var(--theme-accent-secondary-soft);
    font-family: var(--theme-serif);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.theme-footer-brand-description {
    max-width: 320px;
    margin: 25px 0 0;
    color: var(--theme-muted);
    font-size: 12px;
    line-height: 1.9;
}

.theme-footer-adult-badge {
    display: inline-flex;
    min-width: 44px;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 3px 10px;
    border:
        1px solid
        rgb(var(--theme-accent-secondary-rgb) / 0.42);
    border-radius: 999px;
    color: var(--theme-accent-secondary-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.theme-footer-nav {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 30px;
}

.theme-footer-nav-group h2 {
    position: relative;
    margin: 0 0 16px;
    padding-bottom: 12px;
    color: var(--theme-accent-highlight);
    font-family: var(--theme-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.theme-footer-nav-group h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgb(var(--theme-accent-highlight-rgb) / 0.72),
            rgb(var(--theme-accent-highlight-rgb) / 0.08)
        );
    content: "";
}

.theme-footer-nav-group > a {
    display: grid;
    grid-template-columns:
        32px
        minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 74px;
    padding: 11px 0;
    border-bottom:
        1px solid
        rgb(var(--theme-text-rgb) / 0.045);
}

.theme-footer-nav-group > a:last-child {
    border-bottom: 0;
}

.theme-footer-link-mark {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--theme-accent-primary);
}

.theme-footer-link-mark--secondary {
    color: var(--theme-accent-secondary-soft);
}

.theme-footer-link-mark--highlight {
    color: var(--theme-accent-highlight);
}

.theme-footer-link-mark svg {
    width: 24px;
    height: 24px;
}

.theme-footer-nav-group > a > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.theme-footer-nav-group strong {
    overflow: hidden;
    color: var(--theme-text);
    font-family: var(--theme-serif);
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition:
        color 180ms ease;
}

.theme-footer-nav-group small {
    margin-top: 5px;
    overflow: hidden;
    color: var(--theme-muted-deep);
    font-size: 9px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-footer-nav-group > a:hover strong {
    color: var(--theme-accent-highlight-soft);
}

.theme-footer-live-card {
    padding: 24px 22px;
    border:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.42);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgb(var(--theme-accent-secondary-rgb) / 0.06),
            transparent 17rem
        ),
        rgb(var(--theme-section-2-rgb) / 0.78);
}

.theme-footer-live-card-kicker {
    margin: 0 0 9px;
    color: var(--theme-accent-secondary-soft);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.theme-footer-live-card h2 {
    margin: 0;
    color: var(--theme-accent-highlight-soft);
    font-family: var(--theme-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}

.theme-footer-live-card > p:not(.theme-footer-live-card-kicker) {
    margin: 14px 0 20px;
    color: var(--theme-muted);
    font-size: 11px;
    line-height: 1.75;
}

.theme-footer-live-card > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 0 2px;
    border-top:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.16);
    color: var(--theme-text-soft);
    font-size: 11px;
}

.theme-footer-live-card > a:last-child {
    color: var(--theme-accent-secondary-soft);
}

.theme-footer-live-card > a > span:last-child {
    margin-left: auto;
    color: var(--theme-accent-highlight);
}

.theme-footer-live-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--theme-accent-primary);
    box-shadow:
        0 0 12px
        rgb(var(--theme-accent-primary-rgb) / 0.45);
}

.theme-footer-legal-bar {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    border-top:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.4);
    border-bottom:
        1px solid
        rgb(var(--theme-accent-highlight-rgb) / 0.18);
}

.theme-footer-legal-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.theme-footer-legal-links a {
    color: var(--theme-text-dim);
    font-size: 11px;
    transition:
        color 180ms ease;
}

.theme-footer-legal-links a:hover {
    color: var(--theme-accent-highlight-soft);
}

.theme-footer-legal-links > span {
    width: 1px;
    height: 16px;
    background:
        rgb(var(--theme-accent-highlight-rgb) / 0.38);
}

.theme-footer-bottom {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns:
        minmax(40px, 1fr)
        auto
        minmax(40px, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 82px;
}

.theme-footer-bottom p {
    margin: 0;
    color: var(--theme-muted-deep);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
}

.theme-footer-bottom-line {
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(var(--theme-accent-highlight-rgb) / 0.5)
        );
}

.theme-footer-bottom-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgb(var(--theme-accent-highlight-rgb) / 0.5),
            transparent
        );
}

.theme-footer-gem-scene {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width:
        clamp(
            320px,
            31vw,
            510px
        );
    pointer-events: none;
    user-select: none;
}

.theme-footer-gem-scene img {
    display: block;
    width: 100%;
    height: auto;
}

.theme-footer-gem-scene--left {
    left: 0;
}

.theme-footer-gem-scene--right {
    right: 0;
}

@media (max-width: 1100px) {
    .theme-footer-main {
        grid-template-columns:
            minmax(230px, 0.7fr)
            minmax(0, 1.3fr);
    }

    .theme-footer-live-card {
        grid-column:
            1 / -1;
    }
}

@media (max-width: 820px) {
    .theme-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .theme-footer-brand {
        padding-right: 0;
        padding-bottom: 34px;
        border-right: 0;
        border-bottom:
            1px solid
            rgb(var(--theme-accent-highlight-rgb) / 0.18);
    }

    .theme-footer-nav {
        gap: 22px;
    }
}

@media (max-width: 680px) {
    .theme-site-footer {
        padding:
            52px
            0
            20px;
    }

    .theme-footer-inner {
        padding-inline: 16px;
    }

    .theme-footer-main {
        gap: 34px;
        padding-bottom: 48px;
    }

    .theme-footer-brand-link strong {
        font-size: 29px;
    }

    .theme-footer-brand-description {
        font-size: 13px;
    }

    .theme-footer-nav {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .theme-footer-nav-group h2 {
        margin-bottom: 4px;
        font-size: 16px;
    }

    .theme-footer-nav-group > a {
        min-height: 68px;
    }

    .theme-footer-nav-group strong {
        font-size: 15px;
    }

    .theme-footer-nav-group small {
        font-size: 10px;
    }

    .theme-footer-live-card {
        padding: 21px 18px;
    }

    .theme-footer-live-card h2 {
        font-size: 23px;
    }

    .theme-footer-legal-bar {
        min-height: 70px;
    }

    .theme-footer-legal-links {
        gap: 15px;
    }

    .theme-footer-legal-links a {
        font-size: 10px;
    }

    .theme-footer-bottom {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 96px;
        padding-bottom: 18px;
    }

    .theme-footer-bottom-line {
        display: none;
    }

    .theme-footer-bottom p {
        font-size: 10px;
        white-space: normal;
    }

    .theme-footer-gem-scene {
        width: 230px;
        opacity: 0.82;
    }

    .theme-footer-gem-scene--left {
        left: -54px;
    }

    .theme-footer-gem-scene--right {
        right: -54px;
    }
}




.theme-footer-gem-scene {
    width:
        clamp(
            250px,
            22vw,
            390px
        );
    bottom: 0;
    opacity: 1;
}

.theme-footer-gem-scene--left {
    left: 0;
}

.theme-footer-gem-scene--right {
    right: 0;
}

.theme-footer-gem-scene img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 820px) {
    .theme-footer-gem-scene {
        width:
            clamp(
                190px,
                28vw,
                250px
            );
    }
}

@media (max-width: 680px) {
    .theme-footer-gem-scene {
        width: 180px;
        opacity: 0.92;
    }

    .theme-footer-gem-scene--left {
        left: -22px;
    }

    .theme-footer-gem-scene--right {
        right: -22px;
    }
}




.theme-footer-gem-scene,
.theme-footer-gem-scene--left,
.theme-footer-gem-scene--right {
    display: none !important;
}

.theme-site-footer {
    background:
        radial-gradient(
            ellipse at 0 100%,
            rgb(var(--theme-accent-primary-rgb) / 0.055),
            transparent 25rem
        ),
        radial-gradient(
            ellipse at 100% 100%,
            rgb(var(--theme-accent-secondary-rgb) / 0.05),
            transparent 25rem
        ),
        radial-gradient(
            circle at 50% 100%,
            rgb(var(--theme-accent-highlight-rgb) / 0.025),
            transparent 30rem
        ),
        linear-gradient(
            180deg,
            var(--theme-section-3) 0%,
            var(--theme-section-1) 72%,
            var(--theme-section-1) 100%
        );
}

.theme-footer-bottom {
    position: relative;
    overflow: hidden;
}

.theme-footer-legal-bar {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(var(--theme-accent-highlight-rgb) / 0.018) 24%,
            rgb(var(--theme-accent-primary-rgb) / 0.012) 50%,
            rgb(var(--theme-accent-secondary-rgb) / 0.014) 76%,
            transparent
        );
}


.theme-footer-adult-badge .theme-icon { width: 46px; height: 27px; }

.theme-footer-adult-badge { border: 0; padding: 0; }



.theme-breadcrumb {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    font-size: var(--theme-text-caption);
    line-height: 1.45;
}
.theme-breadcrumb__item,
.theme-breadcrumb__link,
.theme-breadcrumb__current {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}
.theme-breadcrumb__link,
.theme-breadcrumb__current {
    max-width: min(42vw, 360px);
}
.theme-breadcrumb__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.theme-breadcrumb__separator {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    opacity: .7;
}
.theme-breadcrumb .theme-icon--home {
    width: 15px;
    height: 15px;
}
.theme-breadcrumb .theme-icon--chevron-right {
    width: 12px;
    height: 12px;
}

.theme-footer-brand-tagline,
.theme-footer-nav-group small,
.theme-footer-live-card-kicker,
.theme-footer-bottom p,
.theme-footer-legal-links a {
    font-size: var(--theme-text-micro);
}

.theme-footer-adult-badge {
    display: inline-flex;
    min-width: 38px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border: 1px solid rgb(var(--theme-accent-highlight-rgb) / .5);
    border-radius: 999px;
    color: var(--theme-accent-highlight-soft);
    font-family: var(--theme-sans);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .04em;
}
.theme-footer-adult-badge .theme-icon { display: none; }

@media (max-width: 680px) {
    .theme-breadcrumb {
        gap: 7px;
        font-size: 11px;
    }
    .theme-breadcrumb__link,
    .theme-breadcrumb__current {
        max-width: 38vw;
    }
}


@media (max-width: 680px) {
    body.site-theme input:not([type="checkbox"]):not([type="radio"]),
    body.site-theme select,
    body.site-theme textarea {
        font-size: 16px;
    }
}


.theme-template-breadcrumb-bar {
    position: relative;
    z-index: 4;
    border-bottom: 1px solid rgb(var(--theme-accent-highlight-rgb) / .12);
    background:
        linear-gradient(90deg, rgb(var(--theme-accent-primary-rgb) / .018), transparent 42%),
        var(--theme-section-1);
}

.theme-template-breadcrumb-bar__inner {
    padding: 11px 28px;
}

.theme-template-breadcrumb {
    color: rgb(var(--theme-text-soft-rgb) / .72);
}

.theme-template-breadcrumb .theme-breadcrumb__link:hover,
.theme-template-breadcrumb .theme-breadcrumb__link:focus-visible {
    color: var(--theme-accent-primary-soft);
}

.theme-template-breadcrumb .theme-breadcrumb__current {
    color: rgb(var(--theme-accent-highlight-soft-rgb) / .9);
}

@media (min-width: 961px) {
    :root {
        --theme-text-micro: 12px;
        --theme-text-caption: 14px;
        --theme-text-body-sm: 16px;
        --theme-text-body: 17px;
        --theme-text-body-lg: 19px;
        --theme-text-card-title: 18px;
        --theme-text-section: clamp(26px, 2.25vw, 34px);
        --theme-text-page: clamp(38px, 4vw, 56px);
    }

    body.site-theme main {
        font-size: 17px;
    }

    .theme-template-breadcrumb-bar__inner {
        padding-block: 12px;
    }
}

@media (max-width: 680px) {
    .theme-template-breadcrumb-bar__inner {
        padding: 9px 16px;
    }

    .theme-template-breadcrumb .theme-breadcrumb__link,
    .theme-template-breadcrumb .theme-breadcrumb__current {
        max-width: 42vw;
    }
}
