/* ===========================
   LOVEFLAME – MAIN STYLESHEET
   =========================== */

:root {
  --red: #e8173a;
  --red-dark: #b5102c;
  --red-light: #ff4d6d;
  --pink: #ff6b9d;
  --gold: #f0c040;
  --dark: #0d0810;
  --dark2: #160d1a;
  --dark3: #1f1226;
  --dark4: #2a1835;
  --mid: #3d2050;
  --light: #f5eeff;
  --muted: #9b7fb6;
  --text: #e8d8f5;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(232,23,58,0.18);
  --glow: 0 0 30px rgba(232,23,58,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

img { display: block; }

em { color: var(--red-light); font-style: italic; }

/* ===========================
   AGE POPUP
   =========================== */
.age-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}

.age-popup-box {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(232,23,58,0.4);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 80px rgba(232,23,58,0.3);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.age-flame { font-size: 64px; margin-bottom: 16px; animation: flamePulse 1.5s ease-in-out infinite; }

@keyframes flamePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.age-popup-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

.age-popup-box p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-enter {
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-enter:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-leave {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--mid);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-leave:hover { color: var(--text); border-color: var(--muted); }

.age-note { font-size: 0.78rem; color: rgba(155,127,182,0.6); }
.age-note a { color: var(--red-light); }

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  background: rgba(13,8,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,23,58,0.15);
  transition: all 0.3s;
}

.header.scrolled {
  background: rgba(13,8,16,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-flame { font-size: 1.6rem; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(232,23,58,0.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-search-icon {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}
.btn-search-icon:hover { color: #fff; }

.btn-login {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--mid);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s;
}
.btn-login:hover { border-color: var(--red); color: var(--red-light); }

.btn-signup {
  padding: 9px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}
.btn-signup:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 1.3rem; cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a {
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #fff; }

/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.18,1);
  width: 300%;
}

.slide {
  position: relative;
  width: calc(100% / 3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-img { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(120deg, rgb(13 8 16 / 0%) 0%, rgb(13 8 16 / 20%) 50%, rgba(232, 23, 58, 0.12) 100%);;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 80px;
  padding-top: 80px;
  animation: slideIn 0.8s ease both;
  padding-bottom: 40px;
}
.slide img{
  height: 100% !important;
  width: 100% !important;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232,23,58,0.25);
  border: 1px solid rgba(232,23,58,0.5);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.slide-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,23,58,0.4); }

.btn-ghost {
  display: inline-block;
  padding: 15px 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); }

.slider-controls {
  position: absolute;
  bottom: 110px;
  left: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.slider-btn:hover { background: var(--red); border-color: var(--red); }

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--red); width: 48px; }

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  background: rgba(22,13,26,0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(232,23,58,0.2);
}

.stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.stat:last-child { border-right: none; }
.stat span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--red-light);
}
.stat p { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ===========================
   SEARCH BAR
   =========================== */
.search-bar-section {
  background: var(--dark2);
  padding: 40px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.search-container h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text);
}

.search-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 150px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group label i { color: var(--red); }

.filter-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--mid);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}
.filter-group select:focus { border-color: var(--red); }

.btn-search-main {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-search-main:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===========================
   SECTION COMMONS
   =========================== */
.profiles-section,
.gallery-section,
.featured-section,
.top-models-section,
.why-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-section,
.featured-section {
  max-width: 100%;
  background: var(--dark2);
  padding: 80px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
}

/* ===========================
   PROFILES GRID
   =========================== */
.profiles-grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.profile-card {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,23,58,0.4);
  box-shadow: 0 20px 60px rgba(232,23,58,0.2);
}

.profile-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.profile-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.profile-card:hover .profile-img-wrap img { transform: scale(1.06); }

.profile-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-online { background: #22c55e; color: #fff; }
.badge-vip { background: linear-gradient(135deg, #f0c040, #e06000); color: #fff; }
.badge-new { background: var(--red); color: #fff; }
.badge-hot { background: linear-gradient(135deg, var(--red), var(--pink)); color: #fff; }

.profile-like-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px; height: 36px;
  background: rgba(13,8,16,0.7);
  border: none;
  border-radius: 50%;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.profile-like-btn:hover, .profile-like-btn.liked { color: var(--red); background: rgba(232,23,58,0.15); }

.profile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 16px 16px;
  background: linear-gradient(transparent, rgba(13,8,16,0.9));
}

.profile-info {
  padding: 16px;
}

.profile-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.profile-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.profile-meta i { color: var(--red); margin-right: 3px; }

.profile-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  padding: 3px 10px;
  background: rgba(232,23,58,0.12);
  border: 1px solid rgba(232,23,58,0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--pink);
}

.profile-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}
.profile-stats i { margin-right: 3px; color: var(--gold); }

.load-more-wrap { text-align: center; margin-top: 20px; }

.btn-load-more {
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--mid);
  color: var(--text);
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-load-more:hover { border-color: var(--red); color: var(--red-light); }

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gf-btn {
  padding: 10px 22px;
  background: var(--dark3);
  border: 1px solid var(--mid);
  color: var(--muted);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.gf-btn.active, .gf-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.gallery-item:nth-child(3n+1) { grid-row: span 1; }
.gallery-item:nth-child(6n+2) { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(13,8,16,0.9));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-label {
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
}

.gallery-tag-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.gtag-hot { background: var(--red); color: #fff; }
.gtag-new { background: #22c55e; color: #fff; }
.gtag-vip { background: var(--gold); color: #000; }
.gtag-trending { background: #8b5cf6; color: #fff; }

/* ===========================
   FEATURED SECTION
   =========================== */
.featured-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ft-btn {
  padding: 10px 22px;
  background: var(--dark4);
  border: 1px solid var(--mid);
  color: var(--muted);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.ft-btn.active, .ft-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.featured-card {
  background: var(--dark4);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.4s;
}
.featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,23,58,0.4);
  box-shadow: 0 20px 50px rgba(232,23,58,0.15);
}

.featured-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.featured-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s;
}
.featured-card:hover .featured-thumb img { transform: scale(1.05); }

.featured-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ftype-exclusive { background: linear-gradient(135deg, #8b5cf6, #ec4899); color: #fff; }
.ftype-hot { background: var(--red); color: #fff; }
.ftype-new { background: #22c55e; color: #fff; }
.ftype-popular { background: var(--gold); color: #000; }
.ftype-trending { background: #3b82f6; color: #fff; }
.ftype-vip { background: linear-gradient(135deg, var(--gold), #e06000); color: #fff; }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(13,8,16,0.4);
}
.featured-card:hover .play-overlay { opacity: 1; }
.play-overlay i {
  width: 56px; height: 56px;
  background: rgba(232,23,58,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.3s;
  line-height: 56px;
  text-align: center;
  padding-left: 4px;
}
.featured-card:hover .play-overlay i { transform: scale(1); }

.featured-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.featured-info {
  padding: 16px;
}

.featured-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.featured-stats {
  display: flex;
  gap: 12px;
}
.featured-stats i { margin-right: 3px; }
.stat-views i { color: #60a5fa; }
.stat-rating i { color: var(--gold); }

/* ===========================
   TOP MODELS SECTION
   =========================== */
.top-models-section {
  background: var(--dark);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.model-card {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.4s;
  position: relative;
}
.model-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,192,64,0.4);
  box-shadow: 0 20px 60px rgba(240,192,64,0.12);
}

.model-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), #e06000);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  z-index: 2;
  font-family: var(--font-display);
}

.model-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.model-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.model-card:hover .model-img-wrap img { transform: scale(1.06); }

.model-info {
  padding: 18px;
}

.model-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.model-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.model-stats-row {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.mstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.mstat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.mstat-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.model-follow-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.model-follow-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===========================
   WHY SECTION
   =========================== */
.why-section {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  max-width: 100%;
  padding: 80px 60px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.why-text > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: 1rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feat > i {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(232,23,58,0.12);
  border: 1px solid rgba(232,23,58,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  font-size: 1.1rem;
}

.why-feat h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.why-feat p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

.why-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.why-card-stack img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}
.wc-1 { width: 56%; height: 70%; top: 0; right: 0; z-index: 3; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.wc-2 { width: 50%; height: 62%; top: 15%; left: 0; z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.4); border: 3px solid var(--dark2); }
.wc-3 { width: 44%; height: 50%; bottom: 0; right: 10%; z-index: 4; box-shadow: 0 20px 60px rgba(232,23,58,0.2); border: 3px solid var(--red); }

.why-badge {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: linear-gradient(135deg, var(--red), var(--pink));
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  z-index: 5;
  box-shadow: 0 8px 30px rgba(232,23,58,0.3);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 60px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text { font-size: 1.6rem; }
.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 12px 0 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px; height: 38px;
  background: var(--dark3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.social-links a:hover { background: var(--red); color: #fff; }

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--red-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  text-align: center;
  color: rgba(155,127,182,0.5);
  font-size: 0.78rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { height: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav { display: flex; }
  .btn-login, .btn-signup { display: none; }

  .slide-content { padding: 0 24px; padding-top: 80px; }
  .slide-content h1 { font-size: 2rem; }
  .slider-controls { left: 24px; bottom: 90px; }

  .search-bar-section, .gallery-section, .featured-section, .why-section { padding: 60px 20px; }
  .profiles-section, .top-models-section { padding: 60px 20px; }

  .search-filters { flex-direction: column; }
  .filter-group { min-width: 100%; }

  .models-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 40px 20px 0; }

  .hero-stats { flex-wrap: wrap; }
  .stat { min-width: 50%; }
}

@media (max-width: 480px) {
  .slide-cta { flex-direction: column; gap: 10px; }
  .age-popup-box { padding: 36px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
