@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0d0d0f;
    --bg-secondary: #141418;
    --bg-sidebar: #111115;
    --bg-card: #1a1a1f;
    --bg-card-hover: #222228;
    --bg-header: #0a0a0c;
    --bg-footer: #0a0a0c;
    --bg-input: #1e1e24;
    --bg-filter-header: #1a1a1f;
    --accent: #ff4157;
    --accent-hover: #ff5a6d;
    --live-green: #00c853;
    --text-primary: #e8e8ea;
    --text-secondary: #8e8e94;
    --text-muted: #5a5a62;
    --border-color: #2a2a30;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 56px;
    --sidebar-width: 220px;
    --radius-sm: 4px;
    --radius-md: 6px;
}

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

html, body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.header__logo-text { font-size: 22px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.5px; }
.header__logo-accent { color: var(--accent); }

.header__genderNav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 24px;
}

.header__genderLink {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.header__genderLink:hover,
.header__genderLink--active { color: var(--accent); background: rgba(255,65,87,.08); }
.header__genderLink i { font-size: 13px; }

.header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header__searchWrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.header__searchWrapper input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 6px 32px 6px 12px;
    font-size: 14px;
    width: 180px;
    outline: none;
    font-family: var(--font-family);
    transition: border-color .15s;
}
.header__searchWrapper input:focus { border-color: var(--accent); }
.header__searchWrapper input::placeholder { color: var(--text-muted); }
.header__searchWrapper i {
    position: absolute;
    right: 10px;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
}

.header__link {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 6px 8px;
    transition: color .15s;
}
.header__link:hover { color: var(--text-primary); }

.header__modelsOnline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}
.header__modelsCount {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}
.header__modelsLabel {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
}
.header__modelsLabel span { color: var(--live-green); }

.header__button {
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: background .15s;
}
.header__button:hover { background: var(--accent-hover); color: #fff; }

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
}
.header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all .3s;
}
.first--open { transform: rotate(45deg) translate(4px, 4px); }
.second--open { opacity: 0; }
.third--open { transform: rotate(-45deg) translate(4px, -4px); }

/* ============================================
   LAYOUT
   ============================================ */
.siteContainer {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

.contentContainer {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    padding: 16px;
}

.main__container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.main__wrapper { margin-bottom: 12px; }

.main__h1 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.main__text { margin-bottom: 12px; }
.main__p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.main__filterBtn {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 17px;
}
.main__filterBtn:hover { color: var(--text-primary); }

/* Breadcrumbs / active filters */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.breadcrumbs a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
}
.breadcrumbs a:hover { background: var(--accent); color: #fff; }
.breadcrumbs a i { font-size: 12px; }

/* Total count */
.main__total {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.main__total strong { color: var(--text-primary); }

/* ============================================
   SIDEBAR
   ============================================ */
.filters {
    width: 0;
    overflow: hidden;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
    transition: width .2s ease;
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.filters--open { width: var(--sidebar-width); }

.filters::-webkit-scrollbar { width: 4px; }
.filters::-webkit-scrollbar-track { background: transparent; }
.filters::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 2px; }

.filters__filterBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-header);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-family: var(--font-family);
}
.filters__filterBtn:hover { color: var(--text-primary); }
.filters__filterBtn i { font-size: 14px; }

.filters__quickLinks {
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
}

.filers__quickLink {
    display: block;
    padding: 5px 14px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: color .15s;
}
.filers__quickLink:hover { color: var(--accent); }

.aside-sort-list { border-top: 1px solid var(--border-color); }

.filters__dropDownBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    transition: background .15s;
}
.filters__dropDownBtn:hover { background: rgba(255,65,87,.05); }
.filters__dropDownBtn i {
    font-size: 12px;
    transition: transform .2s;
}
.filters__dropDownBtn.active i { transform: rotate(180deg); }

.filters__dropDownList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    padding-bottom: 6px;
}
.filters__dropDownList.active { display: block; }

.filters__dropDownListItem { padding: 0; }

.filers__dropDownLink {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px 4px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: color .15s;
}
.filers__dropDownLink:hover { color: var(--text-primary); }
.filers__dropDownLink::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all .15s;
}
.filers__dropDownLink--active { color: var(--accent); }
.filers__dropDownLink--active::before {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: inset 0 0 0 2px var(--bg-sidebar);
}

/* ============================================
   MODEL CARDS
   ============================================ */
#dataContent {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.main__model {
    display: block;
    width: calc(16.666% - 9px);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: background .15s, transform .15s;
    text-decoration: none;
}
.main__model:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.main__modelPhotoWrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.main__modelPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main__modelLive {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--live-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 3px;
    letter-spacing: .3px;
}
.main__modelLive i { font-size: 7px; }

.main__modelLogo {
    position: absolute;
    bottom: 6px;
    right: 6px;
    height: 14px;
    opacity: .7;
}

.main__modelFav {
    position: absolute;
    top: 6px;
    right: 6px;
    color: var(--accent);
    font-size: 17px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .15s;
}
.main__model:hover .main__modelFav { opacity: 1; }

.main__modelInfo {
    padding: 8px 8px 10px;
}

.main__modelName {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main__modelMeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.main__modelGenderAge {
    font-size: 13px;
    color: var(--text-secondary);
}
.main__modelGenderAge .gender { font-weight: 600; color: var(--accent); }

.main__modelViews {
    font-size: 12px;
    color: var(--text-muted);
}

.main__modelSubject {
    font-size: 12px;
    color: var(--accent);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: .8;
}

/* ============================================
   PERFORMER PAGE
   ============================================ */

/* Force performer sections full-width inside flex .main__container */
.performer__actions,
.performer__stream,
.performer__info,
.performer__roomSubject,
.performer__tags,
.performer__share { width: 100%; }

/* Room subject */
.performer__roomSubject {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Action bar */
.performer__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.performer__actionBtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-family);
    transition: all .15s;
}
.performer__actionBtn:hover { color: var(--text-primary); border-color: var(--text-muted); }
.performer__actionBtn i { font-size: 14px; }
.performer__actionBtn--like:hover { color: var(--live-green); border-color: var(--live-green); }
.performer__actionBtn--dislike:hover { color: var(--accent); border-color: var(--accent); }
.performer__actionBtn--fav:hover { color: var(--accent); border-color: var(--accent); }
.performer__actionBtn--fav i { color: var(--accent); }

.performer__ratingBadge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.performer__viewCam {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-left: auto;
    transition: background .15s;
}
.performer__viewCam:hover { background: var(--accent-hover); color: #fff; }
.performer__viewCam i { font-size: 12px; }

/* Live status badge */
.performer__liveBadge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,200,83,.12);
    color: var(--live-green);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.performer__liveBadge i { font-size: 8px; animation: livePulse 1.5s infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.performer__offlineBadge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,65,87,.1);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Video / Stream area */
.performer__stream {
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}
.performer__stream iframe {
    width: 100%;
    height: 528px;
    border: none;
    display: block;
}
.performer__stream .inner-stage { margin: 0 !important; }
.performer__stream .inner-stage iframe { width: 100%; height: 528px; border: none; }
.performer__streamOffline {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
}

/* Model info card */
.performer__info {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

.performer__avatar {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.performer__details { flex: 1; min-width: 0; }

.performer__nameRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.performer__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.performer__statusOnline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,200,83,.12);
    color: var(--live-green);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.performer__statusOnline i { font-size: 7px; }

.performer__statusOffline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,65,87,.1);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.performer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.performer__gridItem {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}
.performer__gridItem .label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.performer__gridItem .val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Tags section */
.performer__tags {
    margin-bottom: 20px;
}
.performer__tagsTitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}
.performer__tagsList {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.performer__tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.performer__tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Related models */
.performer__related {
    margin-top: 24px;
}
.performer__relatedTitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Share pane */
.performer__share { margin-top: 16px; margin-bottom: 20px; }

/* ============================================
   TAGS, LANGUAGES, SITES PAGES
   ============================================ */
.tag-col {
    display: inline-block;
    margin: 0 4px 6px 0;
}
.tag-col a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.tag-col a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.lang-col {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 8px 8px 0;
}
.lang-col a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.lang-col a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.lang-col a img { height: 12px; }
.lang-col .sub-label { display: inline; }

/* Site items */
.site-col {
    display: inline-block;
    margin: 0 8px 8px 0;
}
.site-col a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.site-col a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================
   LOAD MORE / PAGINATION
   ============================================ */
.loadMoreContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

#loadMore {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 32px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .15s;
}
#loadMore:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-color);
    padding: 24px 16px;
    text-align: center;
}

.footer__logo { display: inline-block; margin-bottom: 12px; text-decoration: none; }
.footer__logo-text { font-size: 26px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.5px; }
.footer__logo-accent { color: var(--accent); }

.footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer__link {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: color .15s;
}
.footer__link:hover { color: var(--text-primary); }

.footer__separator {
    width: 1px;
    height: 12px;
    background: var(--border-color);
}

.footer__images { height: 40px; opacity: .6; }

.footer__copyright {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer__disclaimer {
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer__text {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   NOTIFICATIONS / MESSAGES
   ============================================ */
.notification {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 12px;
}
.notification.alert {
    background: rgba(255,65,87,.1);
    border: 1px solid rgba(255,65,87,.2);
    color: var(--accent);
}
.notification.info {
    background: rgba(0,200,83,.1);
    border: 1px solid rgba(0,200,83,.2);
    color: var(--live-green);
}

.notification-col { width: 100%; }

/* ============================================
   FORMS
   ============================================ */
.form-control {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 16px;
    border-radius: var(--radius-sm);
}
.form-control:focus {
    background: var(--bg-input);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 0 2px rgba(255,65,87,.15);
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

/* Modals */
.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}
.modal-header { border-bottom-color: var(--border-color); }
.modal-footer { border-top-color: var(--border-color); }
.modal-title { color: var(--text-primary); }

/* ============================================
   LOADER
   ============================================ */
.loader {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin .6s linear infinite;
    margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .main__model { width: calc(20% - 8px); }
}

@media (max-width: 1100px) {
    .header__genderNav { display: none; }
    .main__model { width: calc(25% - 8px); }
}

@media (max-width: 900px) {
    .main__model { width: calc(33.333% - 7px); }
    .filters--open { width: 200px; }
    .performer__info { flex-direction: column; }
    .performer__avatar { width: 100px; height: 100px; }
}

@media (max-width: 800px) {
    .header__hamburger { display: flex; }
    .header__nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-header);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        z-index: 999;
        overflow-y: auto;
    }
    .header__nav--open { display: flex; }
    .header__genderNav { display: none; }
    .header__modelsOnline { display: none; }

    .filters { display: none; }
    .filters--open { display: block; position: fixed; top: var(--header-height); left: 0; bottom: 0; z-index: 998; width: var(--sidebar-width); }
    .main__filterBtn { display: inline-flex; }
}

@media (max-width: 600px) {
    .main__model { width: calc(50% - 5px); }
    .performer__stream iframe,
    .performer__stream .inner-stage iframe { height: 300px; }
    .performer__actions { gap: 6px; }
    .performer__viewCam { margin-left: 0; width: 100%; justify-content: center; }
    .performer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .main__model { width: 100%; }
}

/* ============================================
   OVERRIDES & UTILITIES
   ============================================ */
.text-accent { color: var(--accent); }
.bg-dark { background: var(--bg-secondary); }

/* Bootstrap dark overrides */
.card { background: var(--bg-card); border-color: var(--border-color); }
