/* =========================================================
   WowChicas — Peach Theme (OnlyFans-inspired dark UI)
   ========================================================= */

/* ---- Variables ------------------------------------------ */
:root {
  --peach:        #FF8C69;
  --peach-light:  #FFB8A0;
  --peach-dark:   #E5633A;
  --peach-glow:   rgba(255, 140, 105, 0.25);

  --bg:           #0f0f0f;
  --bg-card:      #1a1a1a;
  --bg-card-hover:#212121;
  --bg-nav:       #111111;
  --bg-filter:    #161616;

  --text:         #ffffff;
  --text-muted:   #8a8a8a;
  --text-dim:     #555555;

  --border:       #2a2a2a;
  --border-peach: rgba(255,140,105,.35);

  --radius:       12px;
  --radius-sm:    8px;
  --radius-pill:  50px;

  --shadow:       0 4px 20px rgba(0,0,0,.5);
  --shadow-peach: 0 4px 20px rgba(255,140,105,.3);

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:   .2s ease;
}

/* ---- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---- Scrollbar ------------------------------------------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--peach-dark); border-radius: 3px; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.navbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--peach);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.navbar__logo span { color: var(--text); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.navbar__nav a {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--text);
  background: var(--bg-card);
}

.navbar__nav a.active { color: var(--peach); }

.navbar__live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--peach-light);
  white-space: nowrap;
}

.navbar__live-dot {
  width: 8px;
  height: 8px;
  background: var(--peach);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar__search-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.navbar__search-btn:hover { background: var(--border); color: var(--text); }

.navbar__lang-switcher {
  display: flex;
  gap: 4px;
}

.navbar__lang-switcher a {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar__lang-switcher a:hover { color: var(--text); }
.navbar__lang-switcher a.active { color: var(--peach); }

/* Mobile hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  background: linear-gradient(135deg, #1a0e0b 0%, #0f0f0f 50%, #1a0d15 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--peach-glow), transparent);
  pointer-events: none;
}

.hero__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero__title em {
  font-style: normal;
  color: var(--peach);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__stat { text-align: center; }

.hero__stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--peach);
  display: block;
}

.hero__stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-peach);
  transition: var(--transition);
  transform: scale(1);
}

.hero__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 30px rgba(255,140,105,.45);
}

/* =========================================================
   PAGE WRAPPER
   ========================================================= */
.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 20px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* =========================================================
   FILTERS
   ========================================================= */
.filters {
  background: var(--bg-filter);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
}

.filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.filter-group { display: flex; flex-direction: column; gap: 6px; }

.filter-group label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  transition: var(--transition);
}

.filter-tab:hover { border-color: var(--peach); color: var(--text); }
.filter-tab.active {
  background: var(--peach);
  border-color: var(--peach);
  color: #fff;
  font-weight: 600;
}

.filter-select {
  padding: 7px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .875rem;
  font-family: var(--font);
  appearance: none;
  cursor: pointer;
  min-width: 130px;
  transition: var(--transition);
}

.filter-select:hover,
.filter-select:focus { border-color: var(--peach); outline: none; }

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  padding: 7px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  user-select: none;
}

.filter-checkbox-label:hover { border-color: var(--peach); color: var(--text); }
.filter-checkbox-label input[type=checkbox] { display: none; }
.filter-checkbox-label.checked {
  background: var(--peach-glow);
  border-color: var(--peach);
  color: var(--peach-light);
}

.filter-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  align-items: flex-end;
}

.btn-primary {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: .875rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.btn-ghost {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

/* =========================================================
   MODEL GRID
   ========================================================= */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* ---- Model Card ----------------------------------------- */
.model-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.model-card:hover {
  border-color: var(--border-peach);
  transform: translateY(-4px);
  box-shadow: var(--shadow-peach);
  background: var(--bg-card-hover);
}

.model-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

.model-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.model-card:hover .model-card__img { transform: scale(1.05); }

.model-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.badge {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge--live    { background: #e53935; color: #fff; }
.badge--hd      { background: rgba(0,0,0,.6); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.badge--new     { background: var(--peach); color: #fff; }
.badge--free    { background: rgba(0,0,0,.6); color: #4caf50; border: 1px solid #4caf50; }
.badge--offline { background: rgba(0,0,0,.5); color: var(--text-muted); }

.model-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 24px 10px 10px;
  display: flex;
  justify-content: flex-end;
}

.model-card__info {
  padding: 10px 12px;
}

.model-card__name {
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.model-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
}

.model-card__dot {
  width: 6px;
  height: 6px;
  background: #e53935;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.model-card__flag {
  font-size: .9rem;
}

.model-card__rating {
  margin-left: auto;
  color: #ffd740;
  font-size: .8rem;
  font-weight: 600;
}

.model-card__cta {
  margin: 0 12px 12px;
  width: calc(100% - 24px);
  padding: 8px;
  background: var(--peach);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(4px);
}

.model-card:hover .model-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}

.pagination a:hover { border-color: var(--peach); color: var(--text); }
.pagination .current {
  background: var(--peach);
  border-color: var(--peach);
  color: #fff;
  font-weight: 700;
}

/* =========================================================
   PROFILE PAGE
   ========================================================= */
.profile-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.profile-cover {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
  position: relative;
}

.profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-cover__live {
  position: absolute;
  top: 12px;
  left: 12px;
}

.profile-info__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--peach);
  flex-shrink: 0;
}

.profile-info__name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.profile-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.profile-info__meta span { display: flex; align-items: center; gap: 4px; }

.profile-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffd740;
  font-weight: 700;
}

.profile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-peach {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-peach);
  transition: var(--transition);
}

.btn-peach:hover { transform: translateY(-2px); opacity: .9; }

.btn-outline {
  padding: 12px 28px;
  border: 2px solid var(--peach);
  color: var(--peach);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover { background: var(--peach-glow); }

/* Profile Tabs */
.profile-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.profile-tab-btn {
  padding: 10px 20px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}

.profile-tab-btn.active {
  color: var(--peach);
  border-bottom-color: var(--peach);
  font-weight: 700;
}

.profile-tab-btn:hover { color: var(--text); }

/* Profile Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.gallery-item:hover img { transform: scale(1.05); }

/* =========================================================
   SEARCH PAGE
   ========================================================= */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 3px var(--peach-glow);
}

.search-input::placeholder { color: var(--text-dim); }

.search-btn {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: .9375rem;
  font-weight: 600;
  transition: var(--transition);
}

.search-btn:hover { opacity: .9; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  margin-top: 64px;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer__brand .navbar__logo {
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: block;
}

.footer__disclaimer {
  font-size: .8rem;
  color: var(--text-dim);
  max-width: 500px;
  line-height: 1.6;
}

.footer__badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-dim);
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.footer__copy {
  font-size: .8rem;
  color: var(--text-dim);
  text-align: right;
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.text-peach  { color: var(--peach); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-state__icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state__text { font-size: 1.125rem; }

.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--peach);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.2); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .profile-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__burger { display: flex; }
  .navbar__live-badge { display: none; }

  .model-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }

  .hero { padding: 48px 20px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__copy { text-align: left; }

  .filters__row { flex-direction: column; align-items: stretch; }
  .filter-actions { margin-left: 0; }
}

@media (max-width: 480px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero__stats { gap: 16px; }
}

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.mobile-nav.open { display: block; }

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
}

.mobile-nav__drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav__drawer a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav__drawer a:hover,
.mobile-nav__drawer a.active { color: var(--peach); }
