/* ═══════════════════════════════════════════════════════════════════════════
   SONIA - Premium Adult Content Platform
   Modern Clean Design inspired by ModelX
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Loading State (prevents flash of default images) ─────────────────────── */
.loading-settings .hero-bg img,
.loading-settings .about-image img,
.loading-settings .featured-card img,
.loading-settings .live-preview img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.settings-loaded .hero-bg img,
.settings-loaded .about-image img,
.settings-loaded .featured-card img,
.settings-loaded .live-preview img {
  opacity: 1;
}

/* ─── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  /* Primary Colors */
  --primary: #e91e63;
  --primary-light: #f06292;
  --primary-dark: #c2185b;
  --primary-rgb: 233, 30, 99;

  /* Secondary */
  --secondary: #9c27b0;
  --accent: #ff4081;

  /* Gold/Premium */
  --gold: #ffc107;
  --gold-light: #ffca28;
  --gold-dark: #ff8f00;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --black: #000000;

  /* Dark Mode */
  --dark-bg: #0a0a0a;
  --dark-surface: #141414;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;

  /* Text */
  --text-light: #ffffff;
  --text-dark: #212121;
  --text-muted: #9e9e9e;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px rgba(233, 30, 99, 0.3);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-overlay: 400;
  --z-max: 500;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ─── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-6);
}

/* ─── Navigation ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

/* Sexy Logo Style */
.sexy-logo {
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(156, 39, 176, 0.15));
  border: 1px solid rgba(233, 30, 99, 0.3);
  transition: all var(--transition-base);
}

.sexy-logo:hover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.25), rgba(156, 39, 176, 0.25));
  border-color: rgba(233, 30, 99, 0.5);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.4), 0 0 40px rgba(233, 30, 99, 0.2);
  transform: scale(1.02);
}

.logo-icon {
  font-size: 1.2rem;
  animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-2px) rotate(-5deg); }
  75% { transform: translateY(-2px) rotate(5deg); }
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--primary), var(--gold), var(--primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShine 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.3));
}

@keyframes logoShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.logo-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(0.95); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link .badge {
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  background: #ff0000;
  color: white;
  border-radius: var(--radius-full);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  z-index: calc(var(--z-modal) + 1);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ═══ MOBILE MENU PREMIUM ═══ */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 10, 15, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu .nav-link {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 16px 32px;
    text-align: center;
    color: var(--text-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }

  .nav-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active li:nth-child(1) .nav-link { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) .nav-link { transition-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) .nav-link { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) .nav-link { transition-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) .nav-link { transition-delay: 0.3s; }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:active {
    background: rgba(233, 30, 99, 0.15);
    color: var(--primary);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary);
  }
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.75rem;
}

/* ─── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Assure que l'image remplit toujours l'espace */
  min-width: 100%;
  min-height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: var(--space-20) var(--space-6);
  padding-top: calc(70px + var(--space-16));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(233, 30, 99, 0.1);
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  max-width: 450px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Model Name Overlay */
.model-name {
  position: absolute;
  bottom: var(--space-16);
  right: var(--space-8);
  z-index: 1;
}

.model-name h2 {
  /* Customizable via admin panel */
  font-family: var(--model-font, 'Playfair Display'), serif;
  font-size: var(--model-size, clamp(4rem, 15vw, 12rem));
  font-weight: var(--model-weight, 900);
  text-transform: uppercase;
  letter-spacing: var(--model-spacing, -0.05em);
  line-height: 0.85;
  color: var(--model-color, rgba(255, 255, 255, 0.15));
  text-shadow:
    0 0 80px var(--model-glow, rgba(233, 30, 99, 0.5)),
    0 0 150px var(--model-glow, rgba(233, 30, 99, 0.3));
  -webkit-text-stroke: var(--model-stroke, 0px) var(--model-stroke-color, transparent);
  transition: all 0.5s ease;
}

/* Optional gradient text effect */
.model-name h2.gradient-style {
  background: var(--model-gradient, linear-gradient(135deg, var(--primary), var(--gold)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Optional solid glow style */
.model-name h2.glow-style {
  color: var(--model-color, var(--primary));
  text-shadow:
    0 0 20px var(--model-glow, var(--primary)),
    0 0 40px var(--model-glow, var(--primary)),
    0 0 80px var(--model-glow, var(--primary));
}

/* Optional outline style */
.model-name h2.outline-style {
  color: transparent;
  -webkit-text-stroke: 2px var(--model-color, rgba(255, 255, 255, 0.3));
  text-shadow: none;
}

/* ─── Content Sections ──────────────────────────────────────────────────────── */
.section {
  padding: var(--space-16) 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.section-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.section-link:hover {
  gap: var(--space-3);
}

/* ─── Content Grid ──────────────────────────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.content-grid.large {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

/* ─── Media Card ────────────────────────────────────────────────────────────── */
.media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark-card);
  transition: all var(--transition-base);
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.05);
}

.media-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
}

.media-badges {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.badge {
  padding: var(--space-1) var(--space-3);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
}

.badge-new { background: var(--primary); color: white; }
.badge-hot { background: #ff5722; color: white; }
.badge-vip { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: black; }
.badge-live { background: #ff0000; color: white; animation: pulse 1.5s infinite; }
.badge-free { background: #4caf50; color: white; }

.media-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.media-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.media-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 70px;
  height: 70px;
  background: rgba(233, 30, 99, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-base);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.media-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* VIP Lock */
.media-card.locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.vip-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.vip-lock-icon {
  font-size: 3rem;
  margin-bottom: var(--space-2);
}

.vip-lock-text {
  font-weight: 600;
  color: var(--gold);
}

/* ─── Featured Grid (Hero Style) ────────────────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.featured-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-8);
}

.featured-card-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ─── Pricing Section ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(233, 30, 99, 0.1) 0%, var(--dark-card) 100%);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-4);
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.pricing-card.premium {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 193, 7, 0.1) 0%, var(--dark-card) 100%);
}

.pricing-card.premium::before {
  content: 'EXCLUSIF';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-4);
  background: var(--gold);
  color: black;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: var(--space-1);
}

.pricing-card.premium .pricing-price {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-6);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--dark-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--primary);
}

.pricing-features .cross {
  color: var(--gray-600);
}

/* ─── Stats Section ─────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--dark-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--dark-border);
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: var(--space-2);
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--dark-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Age Gate ──────────────────────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  text-align: center;
  max-width: 450px;
  padding: var(--space-8);
}

.age-gate-logo {
  font-size: 4rem;
  margin-bottom: var(--space-6);
}

.age-gate-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.age-gate-text {
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.age-gate-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.age-gate-warning {
  margin-top: var(--space-6);
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* ─── Admin Panel Styles ────────────────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--dark-surface);
  border-right: 1px solid var(--dark-border);
  padding: var(--space-6);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: var(--space-8);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.admin-nav {
  list-style: none;
  margin-top: var(--space-8);
}

.admin-nav-item {
  margin-bottom: var(--space-2);
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.admin-nav-link.active {
  background: var(--primary);
  color: white;
}

.admin-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--dark-border);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.admin-stat {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.admin-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.admin-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* ─── Forms ─────────────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-input::placeholder {
  color: var(--gray-600);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239e9e9e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* ─── Tables ────────────────────────────────────────────────────────────────── */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--dark-border);
}

.table th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.table td {
  font-size: 0.875rem;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ─── Lightbox ──────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - Mobile First
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── FIX OVERFLOW GLOBAL ─────────────────────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

*, *::before, *::after {
  max-width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* ─── TABLET (max-width: 1024px) ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .model-name { display: none; }
  .hero-content { max-width: 100%; }

  .featured-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }

  .live-card { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }

  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}

/* ─── TABLET / MOBILE (max-width: 768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* === BASE === */
  html { font-size: 16px; }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 100%;
  }

  .section { padding: 48px 0; }

  /* === NAVIGATION === */
  .navbar-inner {
    height: 60px;
    padding: 0 16px;
  }

  .sexy-logo { padding: 6px 12px; }
  .logo-text { font-size: 1.4rem; letter-spacing: 1px; }
  .logo-icon { font-size: 1rem; }
  .logo-badge { font-size: 0.5rem; padding: 2px 5px; }
  .online-badge { display: none; }

  .nav-actions .btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  /* === HERO === */
  .hero { min-height: 100vh; min-height: 100dvh; }

  .hero-bg img {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.6) 100%
    );
  }

  .hero-content {
    padding: 80px 16px 40px;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-title span {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .social-links {
    margin-top: 24px;
    gap: 8px;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  /* === SECTION HEADERS === */
  .section-header {
    margin-bottom: 20px;
    gap: 8px;
  }

  .section-title { font-size: 1.25rem; }
  .section-link { font-size: 0.8rem; }

  /* === CONTENT GRID === */
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .content-grid.large {
    grid-template-columns: 1fr;
  }

  /* === MEDIA CARDS === */
  .media-card {
    border-radius: 12px;
    aspect-ratio: 3/4;
  }

  .media-card-overlay {
    padding: 12px;
  }

  .media-title {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .media-meta {
    font-size: 0.7rem;
    gap: 8px;
  }

  .media-badges { top: 8px; left: 8px; }
  .badge { font-size: 0.55rem; padding: 3px 6px; }

  .play-btn {
    width: 48px;
    height: 48px;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .play-btn svg { width: 20px; height: 20px; }

  .vip-lock-icon { font-size: 2rem; }
  .vip-lock-text { font-size: 0.7rem; }

  /* === FEATURED GRID === */
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-card {
    aspect-ratio: 16/9;
    border-radius: 16px;
  }

  .featured-card-overlay { padding: 16px; }
  .featured-card-title { font-size: 1.3rem; }

  /* === ABOUT - MOBILE FIX === */
  .about-section {
    padding: 40px 0 !important;
  }

  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .about-image {
    width: 80% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    order: 1 !important;
  }

  .about-image img {
    width: 100% !important;
    height: auto !important;
    min-height: 350px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  .about-image::before {
    border-radius: 20px !important;
    inset: -3px !important;
  }

  .about-content {
    order: 2 !important;
    text-align: center !important;
    padding: 0 10px !important;
  }

  .about-content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }

  .about-tagline {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
  }

  .about-text {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }

  .about-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 16px !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    flex-wrap: nowrap !important;
  }

  .about-stat {
    text-align: center !important;
    flex: 1 !important;
  }

  .about-stat-value {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
  }

  .about-stat-label {
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
  }

  .about-content .btn {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  /* === TESTIMONIALS - MOBILE FIX === */
  .testimonials-section {
    padding: 40px 0 !important;
  }

  .testimonials-section .section-header {
    margin-bottom: 16px !important;
    flex-direction: column !important;
  }

  .testimonials-section .section-header p {
    font-size: 0.85rem !important;
    margin-top: 4px !important;
  }

  .testimonials-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .testimonial-card {
    padding: 16px !important;
    border-radius: 12px !important;
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .testimonial-card::before {
    font-size: 1.8rem !important;
    top: 8px !important;
    right: 10px !important;
    opacity: 0.1 !important;
  }

  .testimonial-stars {
    font-size: 0.75rem !important;
    margin-bottom: 8px !important;
  }

  .testimonial-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
    font-style: italic !important;
  }

  .testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .testimonial-avatar {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
  }

  .testimonial-name {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }

  .testimonial-tier {
    font-size: 0.7rem !important;
    color: var(--gold) !important;
  }

  /* === LIVE SECTION - MOBILE FIX === */
  .live-section {
    padding: 40px 0 !important;
  }

  .live-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 16px !important;
    border-radius: 16px !important;
    gap: 16px !important;
    grid-template-columns: unset !important;
  }

  .live-preview {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    aspect-ratio: 16/9 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .live-preview img {
    width: 100% !important;
    height: 100% !important;
    min-height: 200px !important;
    object-fit: cover !important;
    display: block !important;
  }

  .live-badge {
    font-size: 0.6rem !important;
    padding: 5px 8px !important;
    top: 10px !important;
    left: 10px !important;
    position: absolute !important;
  }

  .live-overlay {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0,0,0,0.3) !important;
  }

  .live-play-btn {
    width: 50px !important;
    height: 50px !important;
  }

  .live-play-btn svg {
    width: 20px !important;
    height: 20px !important;
  }

  .live-content {
    text-align: center !important;
    padding: 0 !important;
  }

  .live-content h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }

  .live-content p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }

  .countdown {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
    justify-content: center !important;
  }

  .countdown-item {
    padding: 10px 4px !important;
    border-radius: 8px !important;
    background: var(--dark-surface) !important;
    text-align: center !important;
  }

  .countdown-value {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    display: block !important;
  }

  .countdown-label {
    font-size: 0.5rem !important;
    text-transform: uppercase !important;
    display: block !important;
  }

  .live-content .btn {
    width: 100% !important;
    padding: 12px 20px !important;
  }

  /* === PRICING - MOBILE FIX === */
  #pricing {
    padding: 40px 0 !important;
  }

  #pricing .section-header {
    margin-bottom: 16px !important;
    flex-direction: column !important;
  }

  #pricing .section-header p {
    font-size: 0.85rem !important;
    margin-top: 4px !important;
  }

  .pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .pricing-card {
    padding: 14px 10px !important;
    border-radius: 12px !important;
    margin-top: 8px !important;
    text-align: center !important;
  }

  .pricing-card.featured,
  .pricing-card.premium {
    transform: none !important;
  }

  .pricing-icon {
    font-size: 1.6rem !important;
    margin-bottom: 4px !important;
  }

  .pricing-name {
    font-size: 0.85rem !important;
    margin-bottom: 2px !important;
  }

  .pricing-price {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 0 !important;
  }

  .pricing-period {
    font-size: 0.65rem !important;
    margin-bottom: 8px !important;
  }

  .pricing-features {
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  .pricing-features li {
    font-size: 0.65rem !important;
    padding: 4px 0 !important;
    gap: 4px !important;
  }

  .pricing-features .check,
  .pricing-features .cross {
    font-size: 0.65rem !important;
  }

  .pricing-card .btn {
    padding: 8px 12px !important;
    font-size: 0.7rem !important;
    min-height: 36px !important;
  }

  .pricing-card.featured::before,
  .pricing-card.premium::before {
    font-size: 0.45rem !important;
    padding: 2px 6px !important;
    top: -6px !important;
  }

  /* === FAQ === */
  .faq-item { border-radius: 12px; margin-bottom: 10px; }
  .faq-question { padding: 16px; font-size: 0.9rem; }
  .faq-answer p { padding: 0 16px 16px; font-size: 0.85rem; }

  /* === TRUST BADGES === */
  .trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-badge {
    padding: 10px 12px;
    font-size: 0.75rem;
    justify-content: center;
  }

  .trust-badge svg { width: 16px; height: 16px; }

  /* === FOOTER === */
  .footer { padding: 40px 0 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-brand { max-width: 100%; }
  .footer-brand .social-links { justify-content: center; }
  .footer-logo { font-size: 1.5rem; }
  .footer-desc { font-size: 0.85rem; }
  .footer-title { font-size: 0.85rem; margin-bottom: 12px; }
  .footer-links a { font-size: 0.85rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.75rem;
  }

  /* === STATS === */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 20px 16px; border-radius: 12px; }
  .stat-value { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; }

  /* === BUTTONS === */
  .btn {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .btn-lg {
    min-height: 50px;
    padding: 14px 28px;
  }

  /* === FORMS === */
  .form-input, .form-select {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 16px;
  }

  /* === AGE GATE === */
  .age-gate-content {
    padding: 32px 20px;
    margin: 16px;
    border-radius: 20px;
  }

  .age-gate-logo { font-size: 3rem; margin-bottom: 20px; }
  .age-gate-title { font-size: 1.4rem; }
  .age-gate-text { font-size: 0.9rem; margin-bottom: 24px; }
  .age-gate-buttons { flex-direction: column; gap: 10px; }
  .age-gate-buttons .btn { width: 100%; }

  /* === FLOATING CTA === */
  .floating-cta {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .floating-cta a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  /* === MODALS === */
  .lightbox-content {
    max-width: calc(100vw - 32px);
    margin: 16px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .login-modal-content {
    margin: 16px;
    padding: 24px 20px;
    border-radius: 20px;
    max-width: calc(100% - 32px);
  }

  /* === ADMIN === */
  .admin-main { padding: 16px; }
  .admin-header { flex-direction: column; gap: 12px; }
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .admin-stat { padding: 16px; }
  .admin-stat-value { font-size: 1.5rem; }
  .admin-card { padding: 16px; border-radius: 16px; }
  .admin-card-header { flex-direction: column; gap: 10px; }

  .table-responsive { overflow-x: auto; }
  .table th, .table td { padding: 10px 8px; font-size: 0.8rem; }
}

/* ─── SMALL SMARTPHONE (max-width: 480px) ───────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding-left: 12px; padding-right: 12px; }

  /* Navigation */
  .navbar-inner { height: 56px; padding: 0 12px; }
  .sexy-logo { padding: 4px 8px; }
  .logo-text { font-size: 1.2rem; }
  .logo-badge { display: none; }
  .nav-actions .btn { padding: 6px 12px; font-size: 0.7rem; }

  /* Hero */
  .hero-content { padding: 70px 12px 32px; }
  .hero-title { font-size: 1.75rem; }
  .hero-title span { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.9rem; }

  /* Grid single column */
  .content-grid { grid-template-columns: 1fr; gap: 12px; }
  .media-card { aspect-ratio: 4/5; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-title { font-size: 1.15rem; }

  /* About - 480px */
  .about-image {
    width: 85% !important;
    max-width: 260px !important;
  }

  .about-image img {
    min-height: 300px !important;
  }

  .about-content h2 {
    font-size: 1.3rem !important;
  }

  .about-tagline {
    font-size: 0.9rem !important;
  }

  .about-text {
    font-size: 0.85rem !important;
  }

  .about-stats {
    gap: 10px !important;
    padding: 12px !important;
  }

  .about-stat-value {
    font-size: 1.2rem !important;
  }

  .about-stat-label {
    font-size: 0.55rem !important;
  }

  /* Testimonials - 480px */
  .testimonial-card {
    padding: 14px !important;
  }

  .testimonial-text {
    font-size: 0.8rem !important;
  }

  .testimonial-avatar {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    font-size: 0.7rem !important;
  }

  .testimonial-name {
    font-size: 0.8rem !important;
  }

  /* Pricing - single column on small phones */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .pricing-card {
    padding: 18px 16px !important;
  }

  .pricing-icon {
    font-size: 2rem !important;
  }

  .pricing-name {
    font-size: 1rem !important;
  }

  .pricing-price {
    font-size: 1.6rem !important;
  }

  .pricing-period {
    font-size: 0.75rem !important;
  }

  .pricing-features li {
    font-size: 0.8rem !important;
    padding: 6px 0 !important;
  }

  .pricing-card .btn {
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
    min-height: 44px !important;
  }

  /* Live - 480px */
  .live-card {
    padding: 14px !important;
  }

  .live-preview img {
    min-height: 180px !important;
  }

  .live-content h3 {
    font-size: 1.1rem !important;
  }

  .live-content p {
    font-size: 0.8rem !important;
  }

  .countdown-item {
    padding: 8px 4px !important;
  }

  .countdown-value {
    font-size: 1rem !important;
  }

  .countdown-label {
    font-size: 0.45rem !important;
  }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; }

  /* Admin */
  .admin-stats { grid-template-columns: 1fr; }
}

/* ─── VERY SMALL PHONES (max-width: 360px) ──────────────────────────────────── */
@media (max-width: 360px) {
  .container { padding-left: 10px; padding-right: 10px; }

  .logo-text { font-size: 1rem; }
  .hero-title { font-size: 1.5rem; }
  .hero-title span { font-size: 1.6rem; }

  /* About */
  .about-image { max-width: 240px; }
  .about-content h2 { font-size: 1.3rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-stat-value { font-size: 1rem; }

  /* Testimonials */
  .testimonial-card { padding: 12px; }
  .testimonial-text { font-size: 0.75rem; }
  .testimonial-stars { font-size: 0.7rem; }

  /* Live */
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .countdown-item { padding: 6px 2px; }
  .countdown-value { font-size: 0.9rem; }
  .countdown-label { font-size: 0.45rem; }
  .live-content h3 { font-size: 1rem; }

  /* Pricing */
  .pricing-card { padding: 16px 14px; }
  .pricing-icon { font-size: 1.8rem; }
  .pricing-price { font-size: 1.6rem; }
  .pricing-features li { font-size: 0.75rem; }

  .trust-badges { grid-template-columns: 1fr; }
}

/* ─── LANDSCAPE MOBILE ──────────────────────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 70px 0 40px;
  }

  .hero-content { padding-top: 70px; }
  .hero-title { font-size: 1.8rem; }
  .age-gate { overflow-y: auto; }
  .age-gate-content { margin: 16px auto; }
}

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ─── Selection ─────────────────────────────────────────────────────────────── */
::selection {
  background: var(--primary);
  color: white;
}

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEW UI/UX SECTIONS - Added for Premium Look
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Online Indicator ─────────────────────────────────────────────────────── */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00ff88;
  animation: pulse-glow 2s ease-in-out infinite;
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px #00ff88;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
}

/* ─── Social Links ─────────────────────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(233, 30, 99, 0.4);
}

/* ─── About Section ────────────────────────────────────────────────────────── */
.about-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--gold));
  border-radius: 23px;
  z-index: -1;
  opacity: 0.7;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-content h2 span {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-tagline {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--dark-border);
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Trust Badges ─────────────────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ─── Testimonials Section ─────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--dark-surface);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-tier {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ─── Live Section ─────────────────────────────────────────────────────────── */
.live-section {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.live-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--dark-card);
  border-radius: 24px;
  border: 1px solid var(--dark-border);
}

.live-preview {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-surface), var(--dark-card));
}

.live-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-play-btn {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse-glow 2s ease-in-out infinite;
}

.live-play-btn:hover {
  transform: scale(1.1);
}

.live-play-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
  margin-left: 5px;
}

.live-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ff0000;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: live-pulse 1s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.live-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.live-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--dark-surface);
  border-radius: 12px;
  min-width: 70px;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.countdown-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── FAQ Section ──────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--dark-bg);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Floating CTA ─────────────────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 100px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.5);
  transition: all 0.3s ease;
}

.floating-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(233, 30, 99, 0.6);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Scroll Animations ────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Sexy Hover Effects ───────────────────────────────────────────────────── */
.sexy-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.sexy-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

/* ─── Gradient Text Animation ──────────────────────────────────────────────── */
.gradient-text-animated {
  background: linear-gradient(135deg, var(--primary), var(--gold), var(--secondary), var(--primary));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ─── Glow Button ──────────────────────────────────────────────────────────── */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* ─── Responsive for New Sections (merged into main responsive above) ──────── */
/* All responsive styles are now consolidated in the main responsive sections */

/* ─── Reduced Motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Login Modal ────────────────────────────────────────────────────────────── */
.login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.login-modal.active {
  opacity: 1;
  visibility: visible;
}

.login-modal-content {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.login-modal.active .login-modal-content {
  transform: translateY(0);
}

.login-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.login-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOUCH & ACCESSIBILITY OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Touch Device Optimizations ──────────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover animations on touch */
  .media-card:hover,
  .sexy-hover:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .faq-item:hover {
    transform: none;
    box-shadow: none;
  }

  .media-card:hover img,
  .media-card:hover video,
  .featured-card:hover img {
    transform: none;
  }

  /* Always show play button on touch */
  .media-card .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  /* Larger touch targets (48px minimum) */
  .btn { min-height: 52px; }
  .nav-link { min-height: 48px; padding: 14px 18px; }
  .social-link { min-width: 52px; min-height: 52px; }
  .faq-question { min-height: 56px; }

  /* Premium active states */
  .btn:active {
    transform: scale(0.97);
    filter: brightness(0.9);
  }

  .media-card:active {
    transform: scale(0.98);
    opacity: 0.95;
  }

  .social-link:active {
    transform: scale(0.92);
    background: var(--primary);
  }

  .pricing-card:active {
    transform: scale(0.99);
    border-color: var(--primary);
  }

  .testimonial-card:active {
    transform: scale(0.99);
  }

  /* Prevent text selection on interactive elements */
  .btn, .media-card, .social-link, .pricing-card {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Remove tap highlight */
  * {
    -webkit-tap-highlight-color: transparent;
  }
}

/* ─── iOS Safe Area Support ───────────────────────────────────────────────────── */
@supports (padding: max(0px)) {
  .navbar {
    padding-top: env(safe-area-inset-top);
  }

  .navbar-inner {
    height: calc(64px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .hero-content {
    padding-top: calc(100px + env(safe-area-inset-top));
  }

  .footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }

  .floating-cta {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .nav-menu {
    padding-top: calc(80px + env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
  }

  .age-gate-content {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

/* ─── Reduced Motion ──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .play-btn { opacity: 1; }
  .fade-in, .fade-in-left, .fade-in-right { opacity: 1; transform: none; }
}

/* ─── High Contrast Mode ──────────────────────────────────────────────────────── */
@media (prefers-contrast: high) {
  :root {
    --dark-border: #555;
    --text-muted: #bbb;
  }

  .btn { border: 2px solid currentColor; }
  .media-card, .pricing-card, .testimonial-card { border-width: 2px; }
}

/* ─── Print Styles ────────────────────────────────────────────────────────────── */
@media print {
  .navbar,
  .floating-cta,
  .age-gate,
  .nav-menu,
  .play-btn,
  .vip-lock,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    page-break-after: always;
  }

  .media-card, .pricing-card {
    break-inside: avoid;
  }
}
