:root {
    --bg: #0b0a0d;
    --surface: #151317;
    --surface-raised: #1d1a20;
    --text: #f7f3f6;
    --muted: #a69fa9;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #ed168c;
    --accent-hover: #ff4fa7;
    --warm: #ff746c;
    --teal: #229a91;
    --blue: #4267d5;
    --green: #3f8f68;
    --header-height: 64px;
    --mobile-header-height: var(--header-height);
    --filter-sticky-height: 96px;
    --filter-sticky-top-gap: 10px;
    --anchor-gap: 24px;
    --mobile-nav-height: 70px;
    --feed-header-height: 0px;
    --feed-bottom-nav-height: 0px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
html.age-locked { overflow: hidden; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
[hidden] { display: none !important; }

.site-container {
    width: min(100%, 1180px);
    margin-inline: auto;
    padding-inline: 24px;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 3000;
    padding: 10px 14px;
    background: var(--text);
    color: var(--bg);
    border-radius: 6px;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid #ff82bb; outline-offset: 3px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    background: rgba(11, 10, 13, 0.88);
    backdrop-filter: blur(18px);
}
.site-header .site-container,
.site-footer .site-container {
    width: min(100%, 1440px);
}
.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    font-weight: 800;
    font-size: 18px;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
}
.desktop-tabs { display: flex; height: 100%; }
.desktop-tabs a {
    display: grid;
    place-items: center;
    padding: 0 20px;
    color: var(--muted);
    border-bottom: 2px solid transparent;
}
.desktop-tabs a:hover,
.desktop-tabs a.active { color: var(--text); border-color: var(--accent); }
.header-actions {
    justify-self: end;
    display: flex;
    gap: 8px;
}
.header-action {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    padding: 9px 15px;
}
.header-action:hover { border-color: rgba(255,255,255,.24); }

.home-shell {
    width: min(100%, 1440px);
    padding-top: 22px;
    padding-bottom: 30px;
}
.home-shell > .status-strip,
.home-shell > .local-provider-status,
.home-shell > .desktop-filterbar,
.home-shell > .provider-band,
.home-shell > .seo-band {
    width: 100%;
    margin-inline: auto;
}
.status-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}
.status-strip p { margin: 0; }
.status-strip strong { color: var(--text); }
.status-strip > span:last-child { margin-left: auto; }
.status-strip.is-stale {
    color: #ffd3b0;
    border-bottom-color: rgba(255, 116, 108, .35);
}
.status-strip.is-stale .live-pulse {
    background: var(--warm);
    box-shadow: 0 0 0 4px rgba(255, 116, 108, .14);
}
.local-provider-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 116, 108, .35);
    color: #ffd3b0;
    font-size: 13px;
}
.local-provider-status strong { color: var(--text); }
.live-pulse, .live-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(237, 22, 140, .14);
}
.desktop-filterbar {
    padding: 34px 0 20px;
}
.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
    min-height: 570px;
    padding: 70px 0 74px;
    overflow: hidden;
}
.home-hero-copy { max-width: 690px; }
.hero-live-count {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 26px;
    color: #d8d1d9;
    font-size: 14px;
}
.hero-live-count strong { color: #fff; font-size: 18px; }
.home-hero h1 {
    max-width: 680px;
    margin: 10px 0 0;
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: .98;
    font-weight: 850;
}
.hero-intro {
    max-width: 620px;
    margin: 22px 0 0;
    color: #c3bcc5;
    font-size: 18px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.hero-actions .btn {
    min-width: 146px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-live-collage {
    position: relative;
    min-height: 470px;
    isolation: isolate;
}
.hero-live-collage .model-card {
    position: absolute;
    width: min(220px, 42%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
}
.hero-live-collage .model-card:nth-child(1) { z-index: 3; top: 56px; left: 30%; transform: rotate(1.5deg); }
.hero-live-collage .model-card:nth-child(2) { z-index: 2; top: 0; right: 0; transform: rotate(5deg) scale(.9); }
.hero-live-collage .model-card:nth-child(3) { z-index: 1; bottom: 0; left: 0; transform: rotate(-5deg) scale(.88); }
.hero-live-collage .model-card:hover .model-visual { transform: scale(1.025); }
.filter-intro {
    max-width: 760px;
}
.desktop-filterbar h1, .page-intro h1 {
    margin: 2px 0 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    font-weight: 820;
}
.filter-intro > p:last-child {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.55;
}
.eyebrow {
    margin: 0;
    color: #ff82bb;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.quick-filter-form {
    display: grid;
    grid-template-columns: minmax(210px, 1.45fr) repeat(3, minmax(120px, .72fr)) minmax(145px, .82fr) auto;
    gap: 10px;
    align-items: end;
    margin-top: 26px;
    padding: 16px 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(18, 16, 20, .94);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
    padding: 14px;
}
.anchor-target-section {
    scroll-margin-top: calc(
        var(--header-height)
        + var(--filter-sticky-top-gap)
        + var(--filter-sticky-height)
        + var(--anchor-gap)
    );
}
.quick-filter-form label {
    display: grid;
    gap: 7px;
    min-width: 0;
}
.quick-filter-form label > span {
    color: #b8b1ba;
    font-size: 11px;
    font-weight: 750;
}
.quick-filter-form input,
.quick-filter-form select {
    width: 100%;
    height: 44px;
    padding: 0 36px 0 12px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    color: var(--text);
}
.quick-filter-form input {
    padding-right: 12px;
}
.quick-filter-form input::placeholder {
    color: #817a83;
}
.quick-filter-form input:focus,
.quick-filter-form select:focus {
    border-color: #ff82bb;
    outline: 2px solid rgba(237, 22, 140, .18);
    outline-offset: 1px;
}
.quick-filter-actions {
    display: flex;
    gap: 8px;
}
.quick-filter-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    white-space: nowrap;
    border-radius: 22px;
}
.desktop-active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 2px 0;
    color: var(--muted);
    font-size: 12px;
}
.desktop-active-filters a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(237, 22, 140, .36);
    border-radius: 16px;
    background: rgba(237, 22, 140, .1);
    color: #f8eaf1;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.desktop-active-filters a:hover {
    border-color: #ff82bb;
    background: rgba(237, 22, 140, .18);
    transform: translateY(-1px);
}
.desktop-active-filters .desktop-filter-clear {
    border-color: transparent;
    background: transparent;
    color: #ff82bb;
}
.mobile-filter-experience { display: none; }
.mobile-search-form {
    position: relative;
}
.mobile-search-form input {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
}
.mobile-search-form input:focus {
    border-color: #ff82bb;
    outline: 2px solid rgba(237, 22, 140, .18);
    outline-offset: 1px;
}
.mobile-search-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 14px;
    color: var(--muted);
    font-size: 21px;
    line-height: 1;
    transform: translateY(-50%) rotate(-20deg);
    pointer-events: none;
}
.mobile-filter-rail {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    padding: 1px 0 3px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}
.mobile-filter-rail::-webkit-scrollbar { display: none; }
.mobile-filter-trigger,
.mobile-sort-trigger,
.mobile-filter-chip {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.mobile-filter-trigger::before {
    content: "\2699";
    color: #ff82bb;
    font-size: 16px;
}
.mobile-filter-chip {
    border-color: rgba(237, 22, 140, .42);
    background: rgba(237, 22, 140, .12);
    animation: filter-chip-in .22s ease-out both;
}
.mobile-filter-chip span:last-child {
    color: #ff9fc8;
    font-size: 17px;
    line-height: 1;
}
.mobile-filter-badge {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding-inline: 5px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
}
.mobile-filter-badge.is-updating { animation: filter-badge-pop .28s ease-out; }
.mobile-filter-clear {
    flex: 0 0 auto;
    margin-left: 2px;
    color: #ff82bb;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.btn {
    border-radius: 8px;
    font-weight: 750;
    letter-spacing: 0;
}
.btn-primary {
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-bg: var(--accent-hover);
    --bs-btn-hover-border-color: var(--accent-hover);
    --bs-btn-active-bg: var(--accent-hover);
    --bs-btn-active-border-color: var(--accent-hover);
}
.btn-outline-light { --bs-btn-border-color: var(--border); }

.content-section { padding: 46px 0 26px; }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}
.section-heading h2, .provider-band h2, .seo-band h2 {
    margin: 2px 0 0;
    font-size: 28px;
    line-height: 1.2;
}
.section-description {
    max-width: 620px;
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}
.section-heading > a { color: #ff82bb; font-size: 14px; font-weight: 750; }
.model-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    grid-template-rows: 1fr;
    gap: 12px;
    overflow-x: auto;
    padding: 3px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
}
.model-row .model-card { scroll-snap-align: start; }
.model-card {
    position: relative;
    min-width: 0;
    border-radius: 12px;
    transition: transform .24s ease, filter .24s ease;
}
.model-card > a { display: block; border-radius: inherit; }
.model-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-raised);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.model-card:hover .model-visual {
    transform: scale(1.018);
    border-color: rgba(255,255,255,.32);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34);
}
.model-card.is-offline .model-visual { filter: saturate(.55); }
.model-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.018);
    transition: opacity .4s ease, transform .55s ease;
}
.model-visual img.is-loaded { opacity: 1; transform: scale(1); }
.stage-initial {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.18);
    font-weight: 900;
    font-size: 76px;
}
.tone-1 { background-color: #7c1b53; }
.tone-2 { background-color: #126e69; }
.tone-3 { background-color: #56337d; }
.tone-4 { background-color: #3150a5; }
.tone-5 { background-color: #9b363c; }
.tone-6 { background-color: #347451; }
.model-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 74px 13px 13px;
    background: linear-gradient(to top, rgba(7,6,8,.97) 0%, rgba(7,6,8,.56) 52%, rgba(7,6,8,0) 100%);
}
.model-name-row { display: flex; align-items: center; gap: 7px; min-width: 0; }
.model-overlay h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.offline-label {
    flex: 0 0 auto;
    color: #d7d0d7;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}
.model-overlay p { margin: 3px 0 0; color: #cec7ce; font-size: 12px; }
.model-meta-badges {
    display: flex;
    gap: 5px;
    margin-bottom: 7px;
}
.model-meta-badges span {
    max-width: 105px;
    overflow: hidden;
    padding: 3px 6px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 5px;
    background: rgba(9, 8, 10, .48);
    color: #ece7ed;
    font-size: 9px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(7px);
}
.model-status-row {
    position: absolute;
    z-index: 3;
    top: 9px;
    left: 9px;
    display: flex;
    gap: 6px;
    max-width: calc(100% - 54px);
}
.card-live-badge,
.viewer-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(9,8,10,.72);
    color: #fff;
    font-size: 11px;
    backdrop-filter: blur(8px);
}
.card-live-badge {
    background: var(--accent);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}
.card-live-badge > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,.17);
}
.model-hover-cta {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    min-width: 112px;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(237, 22, 140, .94);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}
.model-card:hover .model-hover-cta { opacity: 1; transform: translate(-50%, -50%); }
.favorite-button {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(9,8,10,.68);
    color: #fff;
    font-size: 20px;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.favorite-button:hover { transform: scale(1.08); }
.favorite-button[aria-pressed="true"] {
    background: var(--accent);
    border-color: var(--accent);
    animation: favorite-pop .28s ease-out;
}
.category-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 132px;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
}
.category-card {
    display: grid;
    grid-template-rows: 72px auto;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    scroll-snap-align: start;
}
.category-card span { font-size: 32px; color: rgba(255,255,255,.35); font-weight: 900; }
.category-card strong {
    width: 100%;
    padding: 10px 8px;
    background: var(--surface);
    text-align: center;
    font-size: 13px;
}
.category-card:hover { border-color: rgba(255,255,255,.3); }
.featured-section {
    padding-top: 58px;
}
.featured-model {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    min-height: 480px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #121014;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}
.featured-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 480px;
    overflow: hidden;
    background: #080709;
}
.featured-backdrop {
    position: absolute;
    inset: -28px;
    width: calc(100% + 56px);
    height: calc(100% + 56px);
    object-fit: cover;
    opacity: .42;
    filter: blur(24px) saturate(.8);
}
.featured-image {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 50px rgba(0,0,0,.38);
}
.featured-backdrop,
.featured-image {
    transition: opacity .4s ease;
}
.featured-stream-player {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    pointer-events: none;
}
.featured-model-preview {
    width: min(100%, 420px);
    height: 100%;
    object-fit: cover;
    opacity: 0;
    box-shadow: 0 0 50px rgba(0,0,0,.38);
    transition: opacity .24s ease;
}
.featured-stream-player.is-ready .featured-model-preview { opacity: 1; }
.featured-stream-loading {
    position: absolute;
    z-index: 3;
    bottom: 18px;
    left: 50%;
    padding: 6px 9px;
    border-radius: 6px;
    background: rgba(8, 7, 9, .72);
    color: #eee8ef;
    font-size: 11px;
    transform: translateX(-50%);
    backdrop-filter: blur(8px);
}
.featured-stream-player.is-ready .featured-stream-loading,
.featured-stream-player.has-error .featured-stream-loading { display: none; }
.featured-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(30px, 4vw, 56px);
}
.featured-copy h3 {
    max-width: 100%;
    margin: 18px 0 10px;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1;
    overflow-wrap: anywhere;
}
.featured-copy > p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.65;
}
.featured-meta,
.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.featured-meta span,
.featured-tags span {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: #d8d1d9;
    font-size: 11px;
}
.featured-tags { margin-top: 14px; }
.featured-tags span { background: rgba(255,255,255,.035); }
.featured-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 25px;
}
.featured-actions .btn {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding-block: 0;
    text-align: center;
}
.featured-favorite {
    position: static;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
}
.home-live-row {
    grid-auto-columns: minmax(180px, 1fr);
    padding-bottom: 16px;
}
.trending-section {
    margin-top: 20px;
    padding-inline: clamp(18px, 3vw, 38px);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(77, 18, 53, .28), rgba(18, 16, 20, .84) 46%);
}
.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 20px;
}
.trending-grid .model-card,
.trending-grid .model-visual { aspect-ratio: 16 / 10; }
.discovery-section {
    padding-block: 58px;
}
.discovery-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
}
.discovery-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    color: #e2dce3;
    font-size: 13px;
    font-weight: 700;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.discovery-pills a:hover {
    border-color: rgba(237, 22, 140, .6);
    background: rgba(237, 22, 140, .11);
    transform: translateY(-2px);
}
.top-models-section {
    padding-top: 60px;
    border-top: 1px solid var(--border);
}
.provider-band, .seo-band {
    display: grid;
    grid-template-columns: minmax(250px, .8fr) minmax(300px, 1.2fr);
    gap: 40px;
    margin-top: 34px;
    padding: 34px 0;
    border-top: 1px solid var(--border);
}
.provider-band p, .seo-band p { margin: 0; color: var(--muted); line-height: 1.7; }
.seo-band { margin-top: 0; }
.seo-copy { display: grid; gap: 12px; }
.why-section {
    margin-top: 72px;
    padding-block: 52px;
}
.trust-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 0 56px;
}
.trust-section article {
    display: grid;
    align-content: start;
    gap: 9px;
    min-height: 170px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}
.trust-section article > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(237, 22, 140, .13);
    color: #ff82bb;
    font-size: 16px;
}
.trust-section strong { font-size: 15px; }
.trust-section p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.category-page { padding-top: 52px; padding-bottom: 70px; }
.page-intro { max-width: 720px; margin-bottom: 28px; }
.page-intro > p:last-child { color: var(--muted); margin: 14px 0 0; }
.category-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 26px;
    padding-bottom: 8px;
}
.category-pills a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
}
.category-pills a.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.model-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}
.empty-state {
    padding: 40px 20px;
    border: 1px dashed rgba(255,255,255,.16);
    border-radius: 12px;
    text-align: center;
}
.empty-state h2, .empty-state h3 { margin-top: 0; }
.empty-state p { color: var(--muted); }

.model-detail-shell {
    width: 100%;
    min-height: 100dvh;
    padding: 0 0 64px;
}
.model-page {
    overflow: hidden;
}
.model-page main {
    height: calc(100dvh - var(--header-height));
    overflow: hidden;
}
.model-page .model-detail-shell {
    height: 100%;
    min-height: 0;
    padding: 0;
}
.model-page .swipe-feed,
.model-page .swipe-slide:first-of-type {
    height: 100%;
}
.model-page .model-detail-stage {
    height: 100%;
    min-height: 0;
    max-height: none;
}
.model-page .site-footer,
.model-page .model-related {
    display: none;
}
.swipe-feed {
    position: relative;
    width: 100%;
}
.swipe-slide {
    position: relative;
    width: 100%;
}
.swipe-slide:not(:first-of-type) { display: none; }
.swipe-slide__overlay {
    position: absolute;
    z-index: 5;
    inset: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease;
}
.swipe-slide__overlay a,
.swipe-slide__overlay button { pointer-events: auto; }
.swipe-feed-status {
    position: absolute;
    z-index: 12;
    right: 50%;
    bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 7px;
    background: rgba(11,10,13,.9);
    color: var(--text);
    font-size: 12px;
    transform: translateX(50%);
}
.swipe-feed-status button {
    margin-left: 6px;
    border: 0;
    background: transparent;
    color: #ff82bb;
    font-weight: 800;
}
.model-detail-stage {
    position: relative;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    min-height: 640px;
    max-height: 900px;
    overflow: hidden;
    background: #080709;
}
.player-shell { isolation: isolate; }
.preview-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.model-stage-backdrop {
    position: absolute;
    z-index: 0;
    inset: -34px;
    width: calc(100% + 68px);
    height: calc(100% + 68px);
    object-fit: cover;
    filter: blur(28px) saturate(.78);
    opacity: .72;
    transform: scale(1.04);
}
.preview-stage::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(7,6,8,.28);
}
.model-player-viewport {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: min(100%, calc((100dvh - var(--header-height)) * .75));
    margin-inline: auto;
    overflow: hidden;
    background: #080709;
    box-shadow: 0 0 70px rgba(0,0,0,.42);
}
.model-stage-poster,
.model-hls-player,
.model-hls-player video {
    width: 100%;
    height: 100%;
}
.model-stage-poster,
.model-hls-player video {
    position: relative;
    z-index: 1;
    display: block;
    object-fit: cover;
    background: #080709;
}
.preview-stage::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 44% 0 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(6,5,7,.88) 0%, rgba(6,5,7,.32) 52%, transparent 100%);
}
.model-hls-player {
    position: absolute;
    z-index: 2;
    inset: 0;
}
.model-player-poster {
    position: absolute;
    z-index: 1;
    inset: 0;
}
.model-hls-player video {
    opacity: 0;
    transition: opacity .2s ease;
}
.model-hls-player.is-ready video {
    opacity: 1;
}
.model-hls-player.is-ready .model-player-status {
    opacity: 0;
    visibility: hidden;
}
.model-hls-player.has-preview-error video,
.model-hls-player.has-preview-error .model-player-status,
.model-hls-player.is-preview-paused video,
.model-hls-player.is-preview-paused .model-player-status {
    display: none;
}
.model-player-status,
.model-player-error {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #fff;
    background: rgba(8,7,9,.74);
    font-weight: 800;
    text-align: center;
    transition: opacity .2s ease;
}
.model-player-error {
    inset: auto 50% 22px auto;
    width: max-content;
    max-width: calc(100% - 32px);
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(8,7,9,.76);
    align-content: center;
    color: #d8d2d8;
    font-size: 12px;
    font-weight: 700;
    transform: translateX(50%);
}
.model-player-error[hidden] { display: none; }
.model-detail-stage .live-pill {
    position: absolute;
    z-index: 6;
    top: 22px;
    left: clamp(20px, 3vw, 48px);
}
.model-detail-initial {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.14);
    font-size: 170px;
    font-weight: 900;
}
.model-detail-meta {
    position: absolute;
    z-index: 5;
    left: clamp(20px, 3vw, 48px);
    bottom: 104px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    max-width: min(520px, calc(100% - 170px));
}
.model-identity { min-width: 0; }
.model-detail-cta {
    position: absolute;
    z-index: 5;
    bottom: 20px;
    left: clamp(20px, 3vw, 48px);
    width: min(860px, calc(100% - 160px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
    gap: 8px 24px;
    align-items: center;
}
.model-detail-cta .model-live-message {
    grid-column: 1;
    grid-row: 1;
}
.model-detail-cta .model-primary-cta {
    grid-column: 2;
    grid-row: 1 / span 2;
}
.model-detail-cta .commercial-note {
    grid-column: 2;
    grid-row: 2;
    text-align: center;
}
.model-control-rail {
    position: absolute;
    z-index: 6;
    top: 50%;
    right: clamp(14px, 2.4vw, 38px);
    display: grid;
    gap: 30px;
    transform: translateY(-50%);
}
.model-navigation-controls,
.model-media-controls {
    display: grid;
    gap: 8px;
}
.player-action {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;
    background: rgba(15,13,17,.7);
    color: #fff;
    backdrop-filter: blur(14px);
}
.player-action svg { width: 22px; height: 22px; stroke-width: 1.8; }
.player-action > span { display: grid; place-items: center; }
.player-action > span[hidden] { display: none; }
.player-action:hover,
.player-action:focus-visible,
.player-action[aria-pressed="true"] {
    border-color: rgba(255,255,255,.48);
    background: rgba(237,22,140,.9);
    color: #fff;
}
.player-action:disabled {
    cursor: default;
    opacity: .38;
}
.player-action[aria-pressed="true"] svg { fill: currentColor; }
.model-detail-stage:fullscreen {
    width: 100vw;
    height: 100vh;
    max-height: none;
}
.model-detail-stage:fullscreen .model-player-viewport {
    width: min(100%, 75vh);
}
.model-related {
    width: min(100%, 1440px);
    margin: 48px auto 0;
    padding-inline: 24px;
}
.model-related .content-section { padding: 0; }

@media (min-width: 992px) {
    .model-detail-cta {
        left: 0;
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }
    .model-detail-cta .model-live-message {
        position: absolute;
        bottom: 34px;
        left: clamp(20px, 3vw, 48px);
        width: min(480px, calc(50% - 180px));
    }
    .model-detail-cta .commercial-note {
        position: static;
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
        width: min(310px, calc(100% - 160px));
        margin: 0;
        text-align: center;
    }
    .model-detail-cta .model-primary-cta {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        width: min(310px, calc(100% - 160px));
    }
    .model-related .model-row {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-flow: row;
        grid-auto-columns: auto;
        overflow: visible;
    }
}

@media (min-width: 1200px) {
    .model-detail-meta {
        bottom: 154px;
    }
}

/*
 * Shared model labels and controls
 */
.model-card { aspect-ratio: 3 / 4; }
.live-pill {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 6px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--accent);
    font-weight: 900;
}
.model-title-row { display: flex; align-items: center; gap: 8px; }
.model-title-row h1,
.model-title-row h2 { margin: 0; font-size: 28px; }
.tag-list { display: flex; gap: 8px; color: #fff; font-size: 12px; }
.tag-list {
    max-width: 100%;
    overflow: hidden;
}
.tag-list span {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.model-live-message {
    margin: 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
}
.model-bio {
    margin: -10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}
.model-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
}
.model-primary-cta[aria-disabled="true"] { opacity: .72; pointer-events: none; }
.commercial-note {
    margin: -14px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.search-panel {
    --bs-offcanvas-width: min(420px, 100vw);
    --bs-offcanvas-zindex: 1200;
    background: #121014;
    color: var(--text);
    border-color: var(--border);
}
.offcanvas-drag-handle { display: none; }
.offcanvas-header { padding: 22px 22px 8px; align-items: start; }
.offcanvas-title { margin-top: 3px; font-size: 24px; }
.filter-form { display: grid; align-content: start; gap: 8px; padding: 18px 22px 94px; }
.filter-form label { margin-top: 9px; color: #d8d2d8; font-size: 13px; font-weight: 700; }
.form-control, .form-select {
    min-height: 44px;
    border-color: var(--border);
    background-color: var(--surface);
    color: var(--text);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 0 0 .25rem rgba(237,22,140,.15);
}
.check-row { display: flex; align-items: center; gap: 10px; min-height: 44px; }
.check-row input { width: 20px; height: 20px; accent-color: var(--accent); }
.filter-actions {
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
    margin: 0;
    padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: #121014;
}
.filter-count {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    margin-left: 3px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    font-size: 11px;
}
.search-results { display: grid; gap: 6px; margin-top: 8px; }
.search-results a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.search-results a span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: var(--accent);
}
.search-skeleton {
    height: 48px;
    border-radius: 8px;
    background: var(--surface-raised);
    animation: pulse 1.1s ease-in-out infinite alternate;
}
.search-empty { color: var(--muted); font-size: 13px; }

.age-gate {
    position: fixed;
    z-index: 4000;
    inset: 0;
    display: grid;
    place-items: center;
    min-height: 100dvh;
    padding: 24px;
    background: #09080a;
}
.age-gate-dialog { width: min(100%, 520px); text-align: center; }
.age-brand { margin: 0 auto 52px; }
.age-gate h2 { margin: 8px 0 14px; font-size: clamp(36px, 7vw, 60px); line-height: 1; }
.age-gate-dialog > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.age-gate .btn { display: block; width: 100%; margin-top: 10px; min-height: 52px; }
.age-gate .age-note { margin: 18px auto 0; max-width: 390px; font-size: 12px; }

.cookie-panel {
    position: fixed;
    z-index: 3500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0,0,0,.74);
}
.cookie-panel[data-cookie-view="banner"] {
    place-items: end center;
    background: rgba(0,0,0,.56);
}
.cookie-dialog {
    width: min(100%, 540px);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
}
.cookie-panel[data-cookie-view="banner"] .cookie-dialog {
    width: min(100%, 760px);
    margin-bottom: max(0px, env(safe-area-inset-bottom));
}
.cookie-panel h2 { margin: 0; font-size: 23px; }
.cookie-panel p { color: var(--muted); line-height: 1.55; }
.cookie-banner-view > p {
    max-width: 690px;
    margin: 10px 0 0;
    font-size: 14px;
}
.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}
.cookie-banner-actions .btn { min-height: 44px; }
.cookie-customize-link {
    min-height: 40px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: #ff82bb;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-preferences-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}
.cookie-preferences-heading h2 { margin-top: 3px; }
.cookie-close-button {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    font-size: 24px;
    line-height: 1;
}
.cookie-option { padding: 14px 0; border-top: 1px solid var(--border); }
.cookie-option-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.cookie-option-heading > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.cookie-option p { margin: 7px 58px 0 0; font-size: 13px; }
.cookie-status {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
}
.cookie-status.is-required,
.cookie-status.is-enabled {
    border-color: rgba(63, 143, 104, .5);
    background: rgba(63, 143, 104, .16);
    color: #bfe9d1;
}
.cookie-switch {
    position: relative;
    flex: 0 0 auto;
    width: 46px;
    height: 26px;
}
.cookie-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.cookie-switch span {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;
    background: #373139;
    transition: background-color .18s ease, border-color .18s ease;
}
.cookie-switch span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform .18s ease;
}
.cookie-switch input:checked + span {
    border-color: var(--accent);
    background: var(--accent);
}
.cookie-switch input:checked + span::after { transform: translateX(20px); }
.cookie-switch input:focus-visible + span {
    outline: 3px solid #ff82bb;
    outline-offset: 3px;
}
.cookie-switch input:disabled + span { cursor: not-allowed; opacity: .7; }
.cookie-privacy-link { margin: 12px 0 0; font-size: 12px; }
.cookie-privacy-link a { color: #ff82bb; }
.cookie-preference-actions {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 10px;
    margin-top: 16px;
}
.cookie-preference-actions .btn { min-height: 44px; }

.site-footer { margin-top: 30px; padding: 36px 0 48px; border-top: 1px solid var(--border); }
.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(320px, 1fr) minmax(180px, .55fr);
    gap: 56px;
}
.footer-grid p { max-width: 470px; color: var(--muted); line-height: 1.6; }
.footer-legal { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; align-content: start; }
.footer-partners { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-partners strong {
    color: var(--text);
    font-size: 12px;
    text-transform: uppercase;
}
.footer-grid nav a, .link-button { color: #d3cdd4; font-size: 13px; }
.footer-grid nav a:hover { color: #fff; }
.link-button { padding: 0; border: 0; background: transparent; text-align: left; }
.footer-fineprint {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: #827b84;
    font-size: 11px;
}
.mobile-nav { display: none; }

.legal-page { max-width: 920px; padding-top: 64px; padding-bottom: 80px; }
.legal-page h1 { margin: 6px 0 14px; font-size: clamp(36px, 6vw, 58px); }
.legal-page h2 { margin-top: 38px; font-size: 21px; }
.legal-page h3 { margin: 0 0 14px; font-size: 18px; }
.legal-page p, .legal-page li, .legal-page dd { color: #c2bbc3; line-height: 1.75; }
.legal-page li + li { margin-top: 8px; }
.legal-page code { color: #f6d6e5; }
.legal-page a { color: #ff82bb; text-decoration: underline; }
.legal-lead { max-width: 720px; margin: 0 0 28px; font-size: 17px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 18px 0; border-block: 1px solid var(--border); }
.legal-nav a { font-size: 13px; }
.legal-table-wrap { overflow-x: auto; margin: 18px 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td { padding: 13px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
.legal-table th { color: #fff; background: var(--surface); }
.provider-disclosure { margin-top: 18px; padding: 20px; border: 1px solid var(--border); border-radius: 8px; }
.provider-disclosure p { margin: 8px 0; }
.legal-contact { margin-top: 48px; padding-top: 8px; border-top: 1px solid var(--border); }
.legal-contact dl { display: grid; grid-template-columns: minmax(130px, 180px) 1fr; gap: 10px 20px; }
.legal-contact dt { color: #fff; font-weight: 700; }
.legal-contact dd { margin: 0; }
.legal-action { color: #ff82bb; text-decoration: underline; }
.legal-updated { margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; }
.error-page { min-height: 62vh; display: grid; place-content: center; justify-items: start; }
.error-page h1 { margin: 5px 0 10px; font-size: clamp(36px, 7vw, 64px); }
.error-page p { color: var(--muted); }

@keyframes pulse { from { opacity: .45; } to { opacity: 1; } }
@keyframes filter-chip-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes filter-badge-pop {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.22); }
}
@keyframes favorite-pop {
    0%, 100% { transform: scale(1); }
    48% { transform: scale(1.2); }
}

@media (max-width: 1199px) {
    .home-hero {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr);
        gap: 36px;
    }
    .hero-live-collage .model-card { width: min(200px, 46%); }
    .quick-filter-form {
        grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(120px, .75fr));
    }
    .quick-filter-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 991px) {
    .anchor-target-section {
        scroll-margin-top: calc(var(--mobile-header-height) + 16px);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-grid > :first-child { grid-column: 1 / -1; }
    .model-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .home-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 38px 0 24px;
    }
    .home-hero h1 { font-size: clamp(38px, 8vw, 54px); }
    .hero-intro { font-size: 16px; }
    .hero-live-collage { display: none; }
    .desktop-filterbar {
        padding: 22px 0 10px;
    }
    .desktop-filterbar h1 {
        font-size: clamp(27px, 7vw, 38px);
    }
    .filter-intro > p:last-child {
        margin-top: 8px;
        line-height: 1.42;
    }
    .quick-filter-form { display: none; }
    .desktop-active-filters { display: none; }
    .mobile-filter-experience {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }
    .content-section {
        padding-top: 18px;
    }
    .search-panel.offcanvas-bottom {
        height: 85dvh;
        max-height: 85dvh;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
    .offcanvas-drag-handle {
        display: block;
        flex: 0 0 auto;
        width: 42px;
        height: 4px;
        margin: 9px auto 0;
        border-radius: 2px;
        background: rgba(255, 255, 255, .3);
    }
    .search-panel .offcanvas-header {
        padding-top: 12px;
    }
    .search-panel .offcanvas-body {
        overscroll-behavior: contain;
    }
    .featured-model {
        grid-template-columns: 1.2fr .8fr;
        min-height: 420px;
    }
    .featured-media { min-height: 420px; }
    .featured-copy { padding: 28px; }
    .featured-copy h3 { font-size: 32px; }
    .trending-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 992px) {
    .desktop-filterbar { display: contents; }
    .desktop-filterbar > .filter-intro { padding-top: 48px; }
    .filters-bar {
        position: sticky;
        z-index: 30;
        top: calc(var(--header-height) + var(--filter-sticky-top-gap));
    }
    .quick-filter-form {
        margin-top: 0;
    }
    .search-panel.offcanvas-bottom {
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(420px, 100vw);
        height: 100%;
        max-height: none;
        border-width: 0 0 0 1px;
        border-radius: 0;
        transform: translateX(100%);
    }
    .search-panel.offcanvas-bottom.show:not(.hiding),
    .search-panel.offcanvas-bottom.showing {
        transform: none;
    }
}

@media (max-width: 1199px) {
    .model-page {
        overflow: hidden;
        padding-bottom: 0;
    }
    .model-page .site-header,
    .model-page .site-footer,
    .model-page .model-related {
        display: none;
    }
    .model-page main,
    .model-detail-shell {
        width: 100%;
        height: 100dvh;
        min-height: 0;
        padding: 0;
        overflow: hidden;
    }
    .swipe-feed {
        height: 100dvh;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-y: contain;
        scroll-snap-type: y mandatory;
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-y;
    }
    .swipe-feed::-webkit-scrollbar { display: none; }
    .swipe-slide,
    .swipe-slide:not(:first-of-type) {
        display: block;
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        contain: layout paint;
    }
    .swipe-slide__content {
        width: 100%;
        height: 100dvh;
        min-height: calc(
            100dvh
            - var(--feed-header-height)
            - var(--feed-bottom-nav-height)
            - env(safe-area-inset-bottom)
        );
        max-height: 100dvh;
        padding-bottom: calc(
            var(--feed-bottom-nav-height)
            + env(safe-area-inset-bottom)
        );
        overflow: hidden;
        touch-action: pan-y;
    }
    .swipe-slide__media {
        position: absolute;
        inset: 0;
        overflow: hidden;
        background: #080709;
    }
    .swipe-slide__media img,
    .swipe-slide__media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    .swipe-slide:not(.is-active) .swipe-slide__overlay {
        opacity: .35;
        transform: translateY(10px);
    }
    .swipe-slide.is-active .swipe-slide__overlay {
        opacity: 1;
        transform: translateY(0);
    }
    .swipe-slide:not(.is-active) .model-stage-backdrop {
        filter: none;
        opacity: .25;
    }
    .model-player-viewport {
        width: 100%;
        box-shadow: none;
    }
    .model-detail-stage .live-pill {
        top: 14px;
        left: 14px;
    }
    .model-detail-meta {
        right: 64px;
        bottom: calc(136px + var(--feed-bottom-nav-height) + env(safe-area-inset-bottom));
        left: 14px;
        max-width: none;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 10px;
    }
    .model-detail-meta .avatar {
        width: 40px;
        height: 40px;
    }
    .model-control-rail {
        right: 8px;
        gap: 14px;
    }
    .model-navigation-controls,
    .model-media-controls { gap: 6px; }
    .player-action {
        width: 44px;
        height: 44px;
        background: rgba(13,11,15,.76);
    }
    .player-action svg {
        width: 21px;
        height: 21px;
    }
    .model-detail-cta {
        bottom: calc(10px + var(--feed-bottom-nav-height) + env(safe-area-inset-bottom));
        left: 14px;
        width: calc(100% - 78px);
        grid-template-columns: minmax(0, 1fr);
        gap: 6px;
    }
    .model-detail-cta .model-live-message,
    .model-detail-cta .model-primary-cta,
    .model-detail-cta .commercial-note {
        grid-column: 1;
        grid-row: auto;
    }
    .model-detail-cta .model-live-message { display: none; }
    .model-detail-cta .commercial-note {
        margin: 0;
        font-size: 10px;
        line-height: 1.35;
        text-align: center;
    }
    .model-title-row h1,
    .model-title-row h2 {
        max-width: 100%;
        overflow: hidden;
        font-size: 22px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .model-primary-cta {
        min-height: 46px;
        padding-inline: 12px;
        font-size: 15px;
    }
    .tag-list { gap: 6px; }
    .tag-list span { max-width: 82px; }
    .swipe-feed-status {
        bottom: calc(84px + var(--feed-bottom-nav-height) + env(safe-area-inset-bottom));
    }
}

@media (max-width: 767px) {
    :root { --header-height: 60px; }
    .site-container { padding-inline: 16px; }
    body { padding-bottom: var(--mobile-nav-height); }
    .header-inner { grid-template-columns: 1fr auto; }
    .desktop-tabs { display: none; }
    .header-actions [data-show-favorites] { display: none; }
    .header-action { font-size: 13px; padding: 8px 11px; }
    .desktop-filterbar { padding-top: 10px; }
    .home-hero { padding-top: 24px; }
    .hero-live-count { margin-bottom: 18px; }
    .home-hero h1 { font-size: 39px; }
    .hero-intro { margin-top: 16px; line-height: 1.5; }
    .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 22px; }
    .hero-actions .btn { min-width: 0; min-height: 46px; }
    .quick-filter-form {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 11px;
        margin-top: 20px;
        padding: 14px 0;
    }
    .quick-filter-search,
    .quick-filter-actions { grid-column: 1 / -1; }
    .quick-filter-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .quick-filter-actions:has(> :nth-child(3)) {
        grid-template-columns: auto 1fr 1fr;
    }
    .status-strip > span:last-child { display: none; }
    .model-row { grid-auto-columns: clamp(145px, 42vw, 180px); margin-right: -16px; }
    .model-overlay p { display: none; }
    .model-status-row .viewer-count { display: none; }
    .model-meta-badges span { max-width: 78px; }
    .featured-section { padding-top: 34px; }
    .featured-model { grid-template-columns: 1fr; }
    .featured-media { min-height: 380px; }
    .featured-copy { padding: 25px 20px 28px; }
    .featured-copy h3 { font-size: 34px; }
    .featured-copy > p { margin-top: 14px; }
    .home-live-row { grid-auto-columns: minmax(158px, 44vw); }
    .trending-section {
        margin-inline: -16px;
        padding-inline: 16px;
        border-inline: 0;
        border-radius: 0;
    }
    .trending-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 78vw);
        grid-template-columns: none;
        overflow-x: auto;
        padding: 2px 0 18px;
        scroll-snap-type: x mandatory;
    }
    .trending-grid .model-card { scroll-snap-align: start; }
    .discovery-section { padding-block: 38px; }
    .discovery-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -16px;
        padding: 2px 16px 8px 0;
        scrollbar-width: none;
    }
    .top-models-section { padding-top: 42px; }
    .why-section { margin-top: 42px; }
    .trust-section { grid-template-columns: 1fr; padding-bottom: 38px; }
    .trust-section article {
        grid-template-columns: 40px 1fr;
        min-height: 0;
        padding: 18px;
    }
    .trust-section article > span { grid-row: 1 / 3; }
    .category-row { margin-right: -16px; grid-auto-columns: 118px; }
    .provider-band, .seo-band { grid-template-columns: 1fr; gap: 15px; padding: 28px 0; }
    .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .category-page { padding-top: 34px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-legal { grid-template-columns: 1fr 1fr; }
    .footer-fineprint { flex-direction: column; }
    .site-footer { padding-top: 34px; padding-bottom: 34px; }
    .cookie-panel { padding: 12px; }
    .cookie-dialog { padding: 18px; }
    .cookie-banner-actions,
    .cookie-preference-actions { grid-template-columns: 1fr; }
    .cookie-banner-actions { display: grid; }
    .cookie-customize-link { justify-self: center; }
    .cookie-option p { margin-right: 0; }
    .legal-page { padding-top: 36px; }
    .legal-nav { display: grid; grid-template-columns: 1fr 1fr; }
    .legal-contact dl { grid-template-columns: 1fr; gap: 2px; }
    .legal-contact dd + dt { margin-top: 12px; }
    .mobile-nav {
        position: fixed;
        z-index: 1100;
        inset: auto 0 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        min-height: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
        padding: 6px 4px env(safe-area-inset-bottom);
        border-top: 1px solid var(--border);
        background: rgba(11,10,13,.96);
        backdrop-filter: blur(16px);
    }
    .mobile-nav a, .mobile-nav button {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 2px;
        min-width: 0;
        border: 0;
        background: transparent;
        color: var(--muted);
        font-size: 10px;
    }
    .mobile-nav a span, .mobile-nav button span { color: currentColor; font-size: 19px; line-height: 1; }
    .mobile-nav a.active { color: #ff82bb; }
    .model-page { --feed-bottom-nav-height: var(--mobile-nav-height); }
    .model-detail-stage {
        width: 100%;
        height: 100dvh;
        min-height: 0;
        max-height: none;
        touch-action: pan-y;
    }
    .model-stage-backdrop {
        opacity: .42;
        filter: blur(22px) saturate(.8);
    }
    .model-related {
        width: 100%;
        margin-top: 30px;
        padding-inline: 16px;
    }
}

@media (max-width: 390px) {
    .brand { font-size: 16px; }
    .model-title-row h1,
    .model-title-row h2 { font-size: 20px; }
    .model-detail-meta {
        bottom: calc(132px + var(--feed-bottom-nav-height) + env(safe-area-inset-bottom));
    }
    .player-action {
        width: 38px;
        height: 38px;
    }
    .player-action svg {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 767px) and (max-height: 640px) {
    .model-control-rail { gap: 8px; }
    .model-navigation-controls,
    .model-media-controls { gap: 4px; }
    .player-action {
        width: 36px;
        height: 36px;
    }
    .model-detail-meta {
        bottom: calc(122px + var(--feed-bottom-nav-height) + env(safe-area-inset-bottom));
    }
    .model-detail-cta {
        bottom: calc(6px + var(--feed-bottom-nav-height) + env(safe-area-inset-bottom));
    }
    .model-primary-cta { min-height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .swipe-slide__overlay { transition: none; }
}
