:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --text2: #888;
  --accent: #e91e63;
  --accent2: #ff4081;
  --verified: #2196f3;
  --green: #4caf50;
  --radius: 10px;
  --radius-sm: 7px;
  --shadow: 0 4px 24px rgba(0,0,0,0.7);
  --transition: 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
a { color: inherit; text-decoration: none; }
main { flex: 1; }
img, video { max-width: 100%; display: block; }

/* ── Navbar ── */
.navbar {
  background: #0d0d0d;
  border-bottom: 1px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 200;
}
.navbar-inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 56px;
  gap: 16px;
  width: 100%;
}

.brand {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  font-style: italic;
  white-space: nowrap;
}
.brand-dot { color: var(--accent); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link-plain {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link-plain:hover { color: var(--text); background: var(--bg3); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-btn-cta {
  padding: 7px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-btn-cta:hover { background: var(--accent2); }

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text2);
  cursor: pointer;
  transition: var(--transition);
}
.nav-icon-btn:hover { border-color: var(--accent); color: var(--accent); }

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text2);
  cursor: pointer;
  transition: var(--transition);
}
.nav-search-btn:hover { border-color: var(--accent); color: var(--accent); }

.nav-search-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 300;
}
.nav-search-panel.open { display: block; }

.nav-search-form { display: flex; gap: 6px; }
.nav-search-input {
  flex: 1;
  padding: 9px 13px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}
.nav-search-input:focus { border-color: var(--accent); }
.nav-search-submit {
  padding: 9px 13px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.nav-search-submit:hover { background: var(--accent2); }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a, .mobile-link-btn {
  display: block;
  padding: 10px 0;
  color: var(--text);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.nav-mobile a:last-child, .mobile-link-btn:last-child { border-bottom: none; }

/* ── Stories Bar ── */
.stories-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.stories-scroll { display: flex; gap: 14px; padding: 0 20px; overflow-x: auto; scrollbar-width: none; justify-content: center; }
.stories-scroll::-webkit-scrollbar { display: none; }
.story-bubble { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; cursor: pointer; }
.story-bubble span { font-size: 11px; color: var(--text2); max-width: 66px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.story-ring {
  width: 62px; height: 62px; border-radius: 50%; padding: 2.5px;
  background: linear-gradient(135deg, var(--accent), #ff9800, var(--accent2));
}
.story-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--bg2); }

/* ── Centered wrapper ── */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* ── Page Header ── */
.page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0 10px;
}
.page-title { font-size: 22px; font-weight: 800; letter-spacing: 0.5px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
  margin-left: auto;
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 10px;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-left, .filter-right { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.filter-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text2);
  background: var(--bg3);
  transition: var(--transition);
  cursor: pointer;
}
.filter-chip:hover, .filter-chip.active { border-color: var(--accent); color: var(--text); }

.filter-type {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  transition: var(--transition);
}
.filter-type.active { background: var(--text); color: #000; border-color: var(--text); }
.filter-type:hover { border-color: var(--text2); color: var(--text); }

.filter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text2);
  font-size: 14px;
  transition: var(--transition);
}
.filter-icon:hover, .filter-icon.active { border-color: var(--accent); color: var(--accent); background: rgba(233,30,99,0.1); }

.new-chip { background: transparent; border-color: var(--accent); color: var(--accent); }
.new-chip:hover, .new-chip.active { background: rgba(233,30,99,0.18); }

/* ── Zone Links Bar ── */
.zone-links-bar {
  padding: 6px 0 14px;
  border-bottom: 1px solid var(--border);
}
.zone-links-scroll {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 12px;
  color: var(--text2);
  line-height: 2;
}
.zone-text-link {
  color: var(--text2);
  transition: var(--transition);
  padding: 0 2px;
}
.zone-text-link:hover, .zone-text-link.active { color: var(--accent); }
.zone-sep { margin: 0 4px; color: #444; }

/* ── Circles Row ── */
.circles-section {
  padding: 18px 0 4px;
}
.circles-scroll {
  display: flex;
  gap: 10px;
  padding: 0 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.circles-scroll::-webkit-scrollbar { display: none; }

.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition);
}
.circle-item:hover .circle-ring { transform: scale(1.05); }

.circle-ring {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #444, #2a2a2a);
  transition: transform 0.2s ease;
}
.circle-ring.verified {
  background: linear-gradient(135deg, var(--accent), #ff9800);
}
.circle-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--bg);
}
.circle-check {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--verified);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid var(--bg);
}

.circle-name {
  font-size: 11px;
  color: var(--text2);
  max-width: 78px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── VIP Section ── */
.vip-section {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.vip-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.vip-diamond { font-size: 16px; }
.vip-rose { font-size: 16px; }

.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px;
}

.vip-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  display: block;
  background: var(--bg3);
}
.vip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vip-card:hover img { transform: scale(1.04); }
.vip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.vip-verified {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  background: var(--verified);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.vip-name { font-size: 14px; font-weight: 600; color: #fff; }
.vip-location { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ── Videos page ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.video-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: block;
  cursor: pointer;
}
.video-card:hover { border-color: #3a3a3a; transform: translateY(-2px); box-shadow: var(--shadow); }
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.video-card-thumb video { width: 100%; height: 100%; object-fit: cover; }
.video-card-thumb .play-overlay { font-size: 40px; }
.video-card:hover .play-overlay { color: var(--accent); }
.video-card-info { padding: 10px 12px; }
.video-card-model {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.video-card-model img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.video-card-model span { font-size: 13px; font-weight: 500; }
.video-card-title { font-size: 12px; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── All models section ── */
.all-models-section { padding: 24px 0; border-top: 1px solid var(--border); }
.section-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

/* ── Models Grid ── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.model-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.model-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #3a3a3a; }

.model-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.model-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.model-card:hover .model-card-img img { transform: scale(1.04); }

.verified-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--verified);
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.model-card-info { padding: 10px 12px; }
.model-card-info h3 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.location { font-size: 11px; color: var(--text2); display: block; margin-bottom: 5px; }
.tags { display: flex; flex-wrap: wrap; gap: 3px; }
.tag { font-size: 10px; padding: 2px 7px; background: rgba(233,30,99,0.12); color: var(--accent2); border-radius: 10px; border: 1px solid rgba(233,30,99,0.25); }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 36px; }
.page-btn { padding: 7px 18px; background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; transition: var(--transition); }
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-info { color: var(--text2); font-size: 13px; }

/* ── No results ── */
.no-results { text-align: center; padding: 60px; color: var(--text2); }
.no-results-icon { font-size: 48px; margin-bottom: 12px; }

/* ── Buttons ── */
.btn-primary { padding: 10px 24px; background: var(--accent); color: #fff; border: none; border-radius: 25px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); display: inline-block; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-primary.full { width: 100%; text-align: center; padding: 13px; }
.btn-secondary { padding: 10px 24px; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 25px; font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); display: inline-block; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── Auth ── */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 110px); padding: 24px; }
.auth-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; width: 100%; max-width: 420px; }
.auth-card.wide { max-width: 520px; }
.auth-brand { display: block; text-align: center; font-size: 22px; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.auth-card h2 { text-align: center; margin-bottom: 22px; font-size: 18px; }
.auth-link { text-align: center; margin-top: 14px; font-size: 13px; color: var(--text2); }
.auth-link a { color: var(--accent); }

/* ── Forms ── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; color: var(--text2); margin-bottom: 5px; }
.form-input { width: 100%; padding: 10px 13px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 13px; outline: none; transition: var(--transition); font-family: inherit; }
.form-input:focus { border-color: var(--accent); }
textarea.form-input { resize: vertical; min-height: 80px; }
.alert { padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 14px; font-size: 13px; }
.alert.error { background: rgba(244,67,54,0.12); border: 1px solid rgba(244,67,54,0.35); color: #ef5350; }
.alert.success { background: rgba(76,175,80,0.12); border: 1px solid rgba(76,175,80,0.35); color: #66bb6a; }

/* ── Profile Page ── */
.profile-page { max-width: 1200px; margin: 0 auto; padding-bottom: 60px; }
.profile-cover { height: 340px; background-size: cover; background-position: center; position: relative; }
.cover-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%); }
.profile-header { display: flex; gap: 28px; padding: 0 32px; margin-top: -100px; position: relative; align-items: flex-end; flex-wrap: wrap; }
.profile-avatar-wrap { position: relative; }
.profile-avatar { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid var(--bg); box-shadow: var(--shadow); }
.verified-big { display: inline-block; background: var(--verified); color: #fff; font-size: 12px; padding: 3px 11px; border-radius: 10px; margin-top: 6px; }
.profile-meta { flex: 1; padding-bottom: 10px; }
.profile-meta h1 { font-size: 32px; font-weight: 700; margin-bottom: 5px; }
.meta-location { color: var(--text2); font-size: 14px; margin-bottom: 8px; }
.profile-bio { margin: 12px 0; color: var(--text2); font-size: 14px; line-height: 1.7; max-width: 640px; }
.profile-contacts { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.contact-btn { padding: 10px 22px; border-radius: 22px; font-size: 14px; font-weight: 500; border: none; cursor: pointer; transition: var(--transition); }
.contact-btn.whatsapp { background: #25d366; color: #fff; }
.contact-btn.whatsapp:hover { background: #20ba57; }
.contact-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.contact-btn.twitter { background: #000; color: #fff; border: 1px solid var(--border); }
.contact-btn.twitter:hover { background: #1a1a1a; }
.contact-btn.facebook { background: #1877f2; color: #fff; }
.contact-btn.facebook:hover { background: #1465d1; }
.contact-btn.onlyfans { background: #00aeef; color: #fff; }
.contact-btn.onlyfans:hover { background: #0090c7; }
.profile-stories { padding: 28px 32px 0; }
.profile-stories h2 { font-size: 18px; margin-bottom: 14px; }
.stories-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; }
.story-item { position: relative; width: 92px; height: 150px; border-radius: 9px; overflow: hidden; flex-shrink: 0; cursor: pointer; background: var(--bg3); border: 2px solid var(--border); transition: var(--transition); }
.story-item:hover { border-color: var(--accent); }
.story-thumb { width: 100%; height: 100%; object-fit: cover; }
.story-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }

/* ── Tabs ── */
.profile-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin: 28px 32px 0; }
.tab-btn { padding: 13px 26px; background: none; border: none; border-bottom: 3px solid transparent; color: var(--text2); font-size: 15px; font-weight: 500; cursor: pointer; transition: var(--transition); margin-bottom: -1px; }
.tab-btn.active, .tab-btn:hover { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; padding: 24px 32px; }
.tab-content.active { display: block; }

/* ── Media Grid ── */
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.media-grid.small { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
.media-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: var(--bg3); border: 1px solid var(--border); transition: var(--transition); }
.media-item:hover { border-color: var(--accent); transform: scale(1.02); }
.media-item img, .media-item video { width: 100%; height: 100%; object-fit: cover; }
.media-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 5px 7px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); font-size: 11px; color: #fff; }
.video-item { position: relative; }
.play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 34px; color: rgba(255,255,255,0.9); text-shadow: 0 2px 8px rgba(0,0,0,0.8); pointer-events: none; }

/* ── Comments ── */
.profile-comments { padding: 26px 32px 36px; border-top: 1px solid var(--border); }
.profile-comments h2 { font-size: 18px; margin-bottom: 16px; }
.comment-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; max-width: 480px; }
.comment-form textarea.form-input { min-height: 70px; }
.comment-form .btn-primary { align-self: flex-start; }
.captcha-label { font-size: 12px; color: var(--text2); margin-bottom: -4px; }
.captcha-img { display: block; border-radius: var(--radius-sm); border: 1px solid var(--border); margin-bottom: 8px; user-select: none; -webkit-user-select: none; }
.comments-list { display: flex; flex-direction: column; gap: 12px; }
.comment-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; }
.comment-header { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 5px; }
.comment-author { font-weight: 600; font-size: 13px; color: var(--accent); }
.comment-date { font-size: 11px; color: var(--text2); white-space: nowrap; }
.comment-body { font-size: 13px; line-height: 1.5; white-space: pre-wrap; word-break: break-word; }

/* ── Dashboard ── */
.dashboard { max-width: 1000px; margin: 0 auto; padding: 28px 20px; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.dashboard-header h1 { font-size: 22px; }
.dashboard-grid { display: flex; flex-direction: column; gap: 24px; }
.dash-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.dash-card h2 { font-size: 16px; margin-bottom: 18px; }
.profile-form .form-row, .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.avatar-preview { text-align: center; }
.avatar-preview img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; border: 2px solid var(--border); }
.avatar-upload-btn { display: inline-block; padding: 5px 13px; background: var(--bg3); border: 1px solid var(--border); border-radius: 18px; font-size: 12px; cursor: pointer; transition: var(--transition); }
.avatar-upload-btn:hover { border-color: var(--accent); }
.avatar-upload-btn input { display: none; }
.upload-form { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.delete-btn { position: absolute; top: 5px; right: 5px; background: rgba(244,67,54,0.85); color: #fff; border: none; border-radius: 50%; width: 24px; height: 24px; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 2; }
.delete-btn:hover { background: #f44336; }
.delete-btn.small { width: 18px; height: 18px; font-size: 10px; top: 4px; right: 4px; }
.hint { font-size: 12px; color: var(--text2); margin-bottom: 12px; }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-close { position: absolute; top: -38px; right: 0; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
#lightbox-media img, #lightbox-media video { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }

/* ── Story Modal (profile page) ── */
.story-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1001; align-items: center; justify-content: center; }
.story-modal.open { display: flex; }
.story-modal-content { position: relative; max-width: 400px; width: 100%; }
.story-close { position: absolute; top: -38px; right: 0; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
#story-media img, #story-media video { width: 100%; border-radius: 12px; }

/* ── Stories Modal (homepage) ── */
.stories-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 1002; align-items: center; justify-content: center; }
.stories-modal.open { display: flex; }
.stories-modal-inner { position: relative; width: 100%; max-width: 420px; height: 100%; max-height: 780px; background: #111; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.stories-progress-bar { height: 3px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.stories-progress-fill { height: 100%; background: #fff; transition: width 0.3s linear; }
.stories-user-info { display: flex; align-items: center; gap: 10px; padding: 12px 16px; position: absolute; top: 3px; left: 0; right: 0; z-index: 2; background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); }
.stories-user-info a { display: flex; align-items: center; gap: 10px; flex: 1; }
.stories-user-info a:hover span { text-decoration: underline; }
.stories-user-info img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; flex-shrink: 0; }
.stories-user-info span { color: #fff; font-size: 13px; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.stories-media { flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
.stories-media img, .stories-media video { width: 100%; height: 100%; object-fit: contain; }
.stories-close { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.5); border: none; color: #fff; font-size: 18px; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; }
.stories-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 32px; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.stories-nav:hover { background: rgba(255,255,255,0.28); }
.stories-nav.prev { left: 10px; }
.stories-nav.next { right: 10px; }
.story-bubble { cursor: pointer; }

/* ── Admin ── */
.admin-page { max-width: 1200px; margin: 0 auto; padding: 28px 20px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.admin-header h1 { font-size: 22px; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; margin-bottom: 28px; }
.stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
.stat-num { display: block; font-size: 30px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text2); }
.admin-search-form { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.admin-search-form .form-input { max-width: 320px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.admin-table th, .admin-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); font-size: 13px; }
.admin-table th { background: var(--bg3); color: var(--text2); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table tr.inactive td { opacity: 0.5; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-model-cell { display: flex; align-items: center; gap: 10px; }
.admin-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 500; }
.badge.green { background: rgba(76,175,80,0.18); color: #4caf50; }
.badge.gray { background: rgba(100,100,100,0.18); color: #888; }
.badge.vip { background: rgba(255,215,0,0.15); color: #ffd700; border: 1px solid rgba(255,215,0,0.3); }
.admin-actions { display: flex; gap: 5px; flex-wrap: wrap; }
.action-btn { padding: 4px 11px; border-radius: 13px; background: var(--bg3); border: 1px solid var(--border); color: var(--text); font-size: 11px; cursor: pointer; transition: var(--transition); }
.action-btn:hover { border-color: var(--accent); color: var(--accent); }
.action-btn.danger { color: #ef5350; }
.action-btn.danger:hover { border-color: #ef5350; background: rgba(244,67,54,0.1); }
.model-detail { display: flex; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.model-detail-avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; }
.model-detail-info { flex: 1; }
.model-detail-info p { margin-bottom: 7px; font-size: 13px; color: var(--text2); }
.model-detail-info strong { color: var(--text); }

/* ── Footer ── */
.footer { text-align: center; padding: 18px; border-top: 1px solid var(--border); color: var(--text2); font-size: 12px; margin-top: auto; }

/* ── Error page ── */
.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 50vh; gap: 14px; text-align: center; padding: 40px; }
.error-page h1 { font-size: 60px; }
.error-page p { color: var(--text2); font-size: 16px; }
.empty-state { padding: 28px; text-align: center; color: var(--text2); font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .page-header { padding: 14px 0 8px; }
  .page-title { font-size: 18px; }
  .filter-bar { padding: 6px 0 8px; }
  .zone-links-bar { padding: 4px 0 10px; }
  .circles-scroll { padding: 0 0 6px; }
  .vip-section, .all-models-section { padding: 18px 0; }
  .page-wrap { padding: 0 14px; }
  .vip-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .profile-header { margin-top: -50px; padding: 0 14px; gap: 12px; }
  .profile-avatar { width: 110px; height: 110px; }
  .profile-meta h1 { font-size: 22px; }
  .profile-stories { padding: 20px 14px 0; }
  .profile-tabs { margin: 18px 14px 0; }
  .tab-content { padding: 16px 14px; }
  .profile-comments { padding: 20px 14px 28px; }
  .form-row, .profile-form .form-row { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media (max-width: 380px) {
  .models-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .vip-grid { grid-template-columns: 1fr 1fr; }
}
