:root {
    --primary: #0077B6;
    --secondary: #90E0EF;
    --dark: #0b1021;
    --light: #E6F6FB;
    --white: #FFFFFF;
    --gray: #6c7a89;
    --bg: #F6FBFF;
    --shadow: 0 20px 40px rgba(2, 43, 69, 0.12);
    --shadow-soft: 0 10px 25px rgba(2, 43, 69, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 70px 0;
}

.section-alt {
    background: var(--white);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(144, 224, 239, 0.3);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.logo span span {
    color: var(--secondary);
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(0, 119, 182, 0.1);
    display: grid;
    place-items: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

.dropdown-trigger {
    position: relative;
}

.dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 42px;
    left: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 12px;
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: grid;
    gap: 10px;
    z-index: 200;
}

.dropdown-menu a {
    font-size: 0.9rem;
}

.dropdown-tags {
    min-width: 240px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.header-search {
    flex: 1;
    max-width: 320px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(144, 224, 239, 0.3);
}

.search-input-wrapper input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Mobile drawer */
.mobile-nav-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 320px;
    background: var(--white);
    z-index: 2000;
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 20, 40, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1500;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.drawer-close,
.drawer-search button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.drawer-search {
    margin-bottom: 20px;
}

.drawer-nav ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.drawer-section-title {
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.drawer-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tag-badge {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(144, 224, 239, 0.3);
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    font-size: 0.85rem;
}

/* Hero */
.hero {
    color: var(--white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.hero-home {
    background: linear-gradient(120deg, rgba(0, 119, 182, 0.9), rgba(0, 55, 84, 0.95));
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 3vw, 3.6rem);
    margin: 16px 0;
}

.hero p {
    font-size: 1.05rem;
    max-width: 520px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(6px);
}

.stat-card strong {
    font-size: 1.4rem;
    display: block;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero-image {
    height: 340px;
    border-radius: 24px;
    background-image: url('https://images.pexels.com/photos/17199732/pexels-photo-17199732.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.hero-card {
    background: var(--white);
    color: var(--dark);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

/* Section heading */
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.section-heading p {
    color: var(--gray);
}

.text-link {
    color: var(--primary);
    font-weight: 600;
}

/* Model grid */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.model-card {
    display: block;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    opacity: 1;
    visibility: visible;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.model-card.hidden {
    display: none !important;
}

.model-img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}

.model-img-fallback {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.15), rgba(144, 224, 239, 0.35));
    display: grid;
    place-items: center;
    color: var(--primary);
    font-weight: 700;
}

.model-status {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f44336;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.model-status.live {
    background: #2ed573;
    animation: pulse 2s infinite;
}

.model-info {
    padding: 18px;
}

.model-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.model-headline h3,
.model-headline h4 {
    font-size: 1.1rem;
}

.platform-pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
}

.model-meta {
    color: var(--gray);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flag,
.country-flag,
.flag-lg,
.flag-fallback {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.flag-img,
.country-flag-img {
    object-fit: cover;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    flex: 0 0 auto;
    box-shadow: 0 0 0 1px rgba(11, 16, 33, 0.08);
}

.flag-img {
    width: 20px;
    height: 15px;
}

.country-flag-img {
    width: 40px;
    height: 30px;
    border-radius: 5px;
}

.dropdown-menu .flag-img,
.footer-links-col .flag-img,
.drawer-nav .flag-img {
    margin-right: 8px;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag {
    background: var(--light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Country and tag cards */
.country-grid,
.tag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.country-card,
.tag-card {
    background: var(--white);
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.country-card:hover,
.tag-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.country-link {
    color: var(--primary);
    font-weight: 600;
}

/* Load more */
.listing-section .load-more-wrap,
.load-more-wrap {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    gap: 12px;
    margin: 38px auto 0;
    clear: both;
}

.listing-section .load-more-btn,
button.load-more-btn,
button.js-load-more-camgirls {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border: 0 !important;
    outline: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--primary), #005f92) !important;
    color: var(--white) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 30px rgba(0, 119, 182, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.listing-section .load-more-btn:hover:not(:disabled),
button.load-more-btn:hover:not(:disabled),
button.js-load-more-camgirls:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 119, 182, 0.34);
    background: linear-gradient(135deg, #005f92, var(--primary)) !important;
}

.listing-section .load-more-btn:focus-visible,
button.load-more-btn:focus-visible,
button.js-load-more-camgirls:focus-visible {
    box-shadow: 0 0 0 4px rgba(144, 224, 239, 0.55), 0 18px 38px rgba(0, 119, 182, 0.28);
}

.listing-section .load-more-btn:disabled,
button.load-more-btn:disabled,
button.js-load-more-camgirls:disabled {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

.load-more-count {
    color: var(--gray);
    font-size: 0.92rem;
    font-weight: 600;
}

.empty-state {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.empty-state p {
    color: var(--gray);
    margin-top: 8px;
}

/* Toggle */
.live-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(0, 119, 182, 0.2);
    border-radius: 999px;
    transition: var(--transition);
}

.slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.switch input:checked + .slider {
    background: var(--primary);
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
}

/* Legacy profile */
.profile-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.profile-img-container {
    position: relative;
}

.profile-img-container img {
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.profile-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    background: #f44336;
    z-index: 2;
}

.profile-status.live {
    background: #2ed573;
}

.profile-content h1 {
    font-size: 2.2rem;
}

.profile-bio {
    margin: 20px 0;
    color: var(--gray);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.stat-box {
    background: var(--white);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.btn-live {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2ed573;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 800;
    margin-top: 10px;
    transition: var(--transition);
    box-shadow: 0 16px 34px rgba(46, 213, 115, 0.25);
}

.btn-live:hover {
    background: #26af5f;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(46, 213, 115, 0.34);
}

.small-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 10px;
}

.player-embed {
    background: var(--white);
    border-radius: 24px;
    padding: 20px;
    min-height: 360px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

/* Model page: live first UX */
.model-live-first {
    padding: 54px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(144, 224, 239, 0.55), transparent 34%),
        linear-gradient(135deg, rgba(0, 119, 182, 0.12), rgba(255, 255, 255, 0));
}

.model-live-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.model-live-heading h1 {
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.05;
    margin: 12px 0 8px;
    letter-spacing: -0.04em;
}

.model-live-heading p {
    color: var(--gray);
    max-width: 620px;
    font-size: 1.05rem;
}

.btn-live-top {
    flex: 0 0 auto;
    margin-top: 0;
}

.model-live-stage {
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.18), rgba(144, 224, 239, 0.2));
    padding: 12px;
    box-shadow: var(--shadow);
}

.model-player-embed {
    min-height: clamp(360px, 56vw, 680px);
    border-radius: 24px;
    padding: 0;
    background: #06101b;
    isolation: isolate;
}

.model-player-embed iframe,
.model-player-embed video,
.model-player-embed object,
.model-player-embed embed {
    width: 100% !important;
    height: 100% !important;
    min-height: clamp(360px, 56vw, 680px);
    border: 0;
    display: block;
}

.player-fallback {
    min-height: clamp(360px, 56vw, 680px);
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.player-fallback::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 20, 35, 0.78), rgba(0, 119, 182, 0.45));
}

.player-fallback.no-image {
    background: linear-gradient(135deg, #051321, #0077B6);
}

.player-fallback > div {
    position: relative;
    z-index: 1;
    text-align: center;
    display: grid;
    gap: 8px;
    padding: 24px;
}

.player-fallback strong {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.model-profile-section,
.model-cta-section,
.model-similar-section {
    padding-top: 46px;
}

.model-profile-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
    gap: 34px;
    align-items: stretch;
    background: var(--white);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.model-profile-image-wrap {
    position: relative;
    min-height: 100%;
}

.model-profile-image {
    width: 100%;
    height: 100%;
    min-height: 460px;
    max-height: 640px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.profile-image-fallback {
    min-height: 460px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.15), rgba(144, 224, 239, 0.35));
    color: var(--primary);
    font-weight: 800;
}

.model-profile-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 8px;
}

.profile-kicker,
.profile-tags-title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.78rem;
}

.model-profile-details h2,
.model-cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 8px 0 14px;
}

.profile-summary,
.model-cta-card p {
    color: var(--gray);
    font-size: 1.02rem;
    max-width: 720px;
}

.model-profile-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.profile-meta-box {
    padding: 16px;
    border-radius: 18px;
    background: var(--bg);
    border: 1px solid rgba(0, 119, 182, 0.08);
}

.profile-meta-box span {
    display: block;
    color: var(--gray);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-meta-box strong {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.98rem;
}

.status-text.live {
    color: #159947;
}

.status-text.offline {
    color: #d33f32;
}

.profile-tags-block {
    margin-top: 2px;
}

.profile-tags-list .tag {
    font-size: 0.82rem;
    padding: 6px 12px;
}

.model-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(144, 224, 239, 0.55), transparent 32%),
        linear-gradient(135deg, var(--white), #eefaff);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 119, 182, 0.08);
}

.btn-live-large {
    min-width: 280px;
    padding: 18px 34px;
    font-size: 1.05rem;
    margin-top: 0;
}

.model-similar-section {
    padding-bottom: 28px;
}

/* Mobile sticky model CTA */
.mobile-sticky-live-cta {
    display: none;
}

.mobile-sticky-live-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 22px;
    padding: 13px 14px;
    background: linear-gradient(135deg, #2ed573, #18a85a);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(20, 130, 70, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.mobile-sticky-live-btn span:nth-child(2) {
    display: grid;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.mobile-sticky-live-btn strong {
    font-size: 0.98rem;
    line-height: 1.05;
}

.mobile-sticky-live-btn small {
    font-size: 0.76rem;
    line-height: 1.15;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-sticky-live-btn svg {
    flex: 0 0 auto;
}

.mobile-sticky-status {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #ff6b6b;
    box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.22);
    flex: 0 0 auto;
}

.mobile-sticky-status.live {
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22), 0 0 18px rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

.mobile-sticky-status.offline {
    background: #ffd166;
    box-shadow: 0 0 0 5px rgba(255, 209, 102, 0.24);
}

/* Content split */
.content-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: start;
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.info-card ul {
    margin: 16px 0;
    padding-left: 20px;
    color: var(--gray);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.faq-card {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

/* Tag & country hero */
.hero-country,
.hero-tag {
    background: linear-gradient(120deg, rgba(0, 119, 182, 0.95), rgba(0, 80, 115, 0.9));
}

.country-hero-meta,
.tag-hero-meta {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-logo {
    color: var(--white);
}

.footer-desc {
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col a:hover {
    color: var(--secondary);
}

.footer-warning {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.back-to-top {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
}

.adult-badge {
    margin-top: 16px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    font-weight: 600;
}

/* Search result */
.search-result {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(144, 224, 239, 0.25);
    border-radius: 12px;
    font-weight: 600;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 980px) {
    .main-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .footer-bottom-flex {
        flex-direction: column;
    }

    .model-live-heading,
    .model-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .model-profile-card {
        grid-template-columns: 1fr;
    }

    .model-profile-image {
        height: auto;
        max-height: none;
    }

    .btn-live-large,
    .btn-live-top {
        width: 100%;
    }
}

@media (max-width: 640px) {
    body:has(.mobile-sticky-live-cta) {
        padding-bottom: 96px;
    }

    .hero {
        padding: 70px 0;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card {
        align-items: flex-start;
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .listing-section .load-more-btn,
    button.load-more-btn,
    button.js-load-more-camgirls {
        width: 100%;
        max-width: 320px;
    }

    .model-live-first {
        padding-top: 34px;
    }

    .model-live-stage,
    .model-profile-card,
    .model-cta-card {
        border-radius: 22px;
    }

    .model-player-embed,
    .player-fallback {
        min-height: 300px;
    }

    .model-profile-card,
    .model-cta-card {
        padding: 18px;
    }

    .model-profile-meta-grid {
        grid-template-columns: 1fr;
    }

    .model-profile-image,
    .profile-image-fallback {
        min-height: 360px;
    }

    .mobile-sticky-live-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2200;
        display: block;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, rgba(246, 251, 255, 0), rgba(246, 251, 255, 0.92) 22%, rgba(246, 251, 255, 0.98));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mobile-sticky-live-btn:active {
        transform: scale(0.985);
    }
}

@media (min-width: 641px) {
    .mobile-sticky-live-cta {
        display: none !important;
    }
}