/* ═══════════════════════════════════════════════════════════════════════════
   SONIA - Premium Adult Content Platform
   Design inspired by ModelX ViceTemple - Dark Luxury Aesthetic
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Google Fonts Import ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Germania+One&family=Roboto+Condensed:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ─── Loading State (prevents flash of default images) ─────────────────────── */
.loading-settings .hero-bg img,
.loading-settings .hero-bg video,
.loading-settings .about-image img,
.loading-settings .featured-card img,
.loading-settings .live-preview img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.settings-loaded .hero-bg img,
.settings-loaded .hero-bg video,
.settings-loaded .about-image img,
.settings-loaded .featured-card img,
.settings-loaded .live-preview img {
  opacity: 1;
}

/* ─── CSS Variables - ModelX ViceTemple Inspired ────────────────────────────── */
:root {
  /* Primary Colors - Rose/Coral */
  --primary: #DC5566;
  --primary-light: #E8707F;
  --primary-dark: #CD3F59;
  --primary-rgb: 220, 85, 102;

  /* Secondary - Deep Navy */
  --secondary: #1E1F32;
  --secondary-light: #292A41;
  --secondary-dark: #14151F;

  /* Accent - Peach/Gold */
  --accent: #F4AD6C;
  --accent-light: #F7C08A;
  --accent-dark: #E89A4F;
  --gold: #F4AD6C;
  --gold-light: #F7C08A;
  --gold-dark: #E89A4F;

  /* 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 - Deep Navy Theme */
  --dark-bg: #0D0E1A;
  --dark-surface: #14151F;
  --dark-card: #1E1F32;
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-light: #ffffff;
  --text-dark: #212121;
  --text-muted: rgba(255, 255, 255, 0.6);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(220, 85, 102, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(244, 173, 108, 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 ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-overlay: 400;
  --z-max: 500;

  /* Typography */
  --font-heading: 'Germania One', cursive;
  --font-body: 'Roboto Condensed', sans-serif;
  --font-elegant: 'Playfair Display', serif;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  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;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ─── Typography - Germania One + Roboto Condensed ──────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(65px, 15vw, 240px); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.5rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-animated {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ─── Navigation - Semi-transparent Glassmorphic ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(41, 39, 65, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(30, 31, 50, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.sexy-logo {
  position: relative;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  background: rgba(220, 85, 102, 0.1);
  border: 1px solid rgba(220, 85, 102, 0.2);
  transition: all var(--transition-base);
}

.sexy-logo:hover {
  background: rgba(220, 85, 102, 0.2);
  border-color: rgba(220, 85, 102, 0.4);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.logo-icon {
  font-size: 1.4rem;
  animation: crownBounce 3s ease-in-out infinite;
}

@keyframes crownBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--white);
  text-shadow: 0 0 20px rgba(220, 85, 102, 0.5);
}

.logo-badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark-bg);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(244, 173, 108, 0.1);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(244, 173, 108, 0.15);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Online Badge */
.online-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(220, 85, 102, 0.15);
  border: 1px solid rgba(220, 85, 102, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #4ade80;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* Language Toggle */
.lang-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.lang-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-modal) + 1);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  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);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--accent);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark-bg);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-accent);
  color: var(--dark-bg);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: 1rem;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8rem;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(220, 85, 102, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(220, 85, 102, 0.5);
}

/* ─── Hero Section - Full Screen with Large Typography ──────────────────────── */
.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,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 14, 26, 0.4) 0%, rgba(13, 14, 26, 0.1) 30%, rgba(13, 14, 26, 0.6) 80%, rgba(13, 14, 26, 0.95) 100%),
    linear-gradient(to right, rgba(13, 14, 26, 0.7) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: var(--space-16) var(--space-6);
  padding-top: calc(100px + var(--space-12));
  margin-left: var(--space-8);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(220, 85, 102, 0.15);
  border: 1px solid rgba(220, 85, 102, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: var(--space-8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2);
}

.hero-title .gradient-text-animated {
  font-size: clamp(3.5rem, 10vw, 6rem);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-8);
  max-width: 500px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Model Name - ModelX ViceTemple Giant Typography Style */
.model-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  padding: 0 var(--space-4);
}

.model-name h2 {
  font-family: var(--model-font, var(--font-heading));
  font-size: var(--model-size, clamp(100px, 25vw, 320px));
  font-weight: var(--model-weight, 400);
  text-transform: uppercase;
  letter-spacing: var(--model-spacing, -0.02em);
  line-height: 0.8;
  color: var(--model-color, var(--white));
  text-shadow:
    0 0 80px rgba(220, 85, 102, 0.4),
    0 0 150px rgba(220, 85, 102, 0.2);
  transition: all 0.5s ease;
  text-align: center;
  margin-bottom: -0.1em;
  opacity: var(--model-opacity, 1);
}

.model-name h2.gradient-style {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.model-name h2.glow-style {
  color: var(--primary);
  text-shadow:
    0 0 40px var(--primary),
    0 0 80px var(--primary),
    0 0 120px rgba(220, 85, 102, 0.5);
}

.model-name h2.outline-style {
  color: transparent;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.3);
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(244, 173, 108, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 120px;
  left: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollBounce 2.5s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  z-index: 4;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.4; }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ─── Trust Badges ──────────────────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-8) 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.trust-badge:hover {
  color: var(--accent);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

/* ─── Sections ──────────────────────────────────────────────────────────────── */
.section {
  padding: var(--space-20) 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-title span {
  color: var(--primary);
}

.section-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  transition: all var(--transition-fast);
}

.section-link:hover {
  gap: var(--space-3);
  color: var(--accent-light);
}

/* ─── Featured Banner - Full Width ──────────────────────────────────────────── */
.featured-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/9;
  cursor: pointer;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.featured-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 14, 26, 0.9) 0%,
    rgba(13, 14, 26, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--space-10);
  transition: background 0.4s ease;
}

.featured-card:hover .featured-card-overlay {
  background: linear-gradient(
    to top,
    rgba(205, 63, 89, 0.8) 0%,
    rgba(205, 63, 89, 0.4) 50%,
    rgba(205, 63, 89, 0.1) 100%
  );
}

.featured-card-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.featured-card:hover .featured-card-title {
  transform: translateY(-10px);
  text-shadow: 0 0 40px rgba(244, 173, 108, 0.8);
  color: var(--accent);
}

/* Icon overlay */
.featured-card-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.featured-card:hover .featured-card-overlay::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(244, 173, 108, 0.4);
}

.featured-card-overlay::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
  opacity: 0;
  transition: all 0.4s ease;
}

.featured-card:first-child .featured-card-overlay::after {
  border-left: 20px solid white;
}

.featured-card:last-child .featured-card-overlay::after {
  content: '';
  width: 28px;
  height: 28px;
  border: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 4h4v4H4V4zm6 0h4v4h-4V4zm6 0h4v4h-4V4zM4 10h4v4H4v-4zm6 0h4v4h-4v-4zm6 0h4v4h-4v-4zM4 16h4v4H4v-4zm6 0h4v4h-4v-4zm6 0h4v4h-4v-4z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-left: 0;
}

.featured-card:hover .featured-card-overlay::after {
  opacity: 1;
}

/* Photo & Video grid cards - Full bleed style */
.featured-card.photo-grid-card,
.featured-card.video-grid-card {
  aspect-ratio: 21/9;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--dark-card);
}

.featured-card.photo-grid-card img,
.featured-card.video-grid-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card.photo-grid-card:hover img,
.featured-card.video-grid-card:hover img {
  transform: scale(1.05);
}

/* Hover overlay - Full bleed style */
.featured-card.photo-grid-card .featured-card-overlay,
.featured-card.video-grid-card .featured-card-overlay {
  padding: 20px 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(205, 63, 89, 0.7);
  opacity: 0;
  transition: 0.25s ease;
  border-radius: 0;
}

.featured-card.photo-grid-card:hover .featured-card-overlay,
.featured-card.video-grid-card:hover .featured-card-overlay {
  opacity: 1;
}

/* Title in center - Large professional style */
.featured-card.photo-grid-card .featured-card-title,
.featured-card.video-grid-card .featured-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 90%;
}

/* Hide the circle icon for grid cards */
.featured-card.photo-grid-card .featured-card-overlay::before,
.featured-card.video-grid-card .featured-card-overlay::before {
  display: none;
}

/* Hide default ::after icons for grid cards */
.featured-card.photo-grid-card .featured-card-overlay::after,
.featured-card.video-grid-card .featured-card-overlay::after {
  display: none;
}

/* Play icon - Large professional style */
.mx-play-icon {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-6) 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mx-play-icon:hover {
  transform: scale(1.1);
  border-color: var(--accent);
}

.mx-play-icon svg {
  width: 32px;
  height: 32px;
  margin-left: 6px;
}

/* Duration badge */
.mx-duration {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--space-2);
}

/* View icon for photos - Large professional style */
.mx-view-icon {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-6) 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mx-view-icon:hover {
  transform: scale(1.1);
  border-color: var(--accent);
}

.mx-view-icon svg {
  width: 36px;
  height: 36px;
}

/* Locked state for grid cards */
.featured-card.photo-grid-card.locked::after,
.featured-card.video-grid-card.locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 26, 0.8);
  backdrop-filter: blur(10px);
}

.featured-card.locked .vip-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.featured-card.locked .vip-lock-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
}

.featured-card.locked .vip-lock-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--accent);
}

/* ─── About Section ─────────────────────────────────────────────────────────── */
.about-section {
  background: var(--dark-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: -1;
  opacity: 0.3;
  filter: blur(30px);
}

.about-content h2 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-4);
}

.about-content h2 span {
  color: var(--primary);
}

.about-tagline {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: var(--space-6);
}

.about-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.about-stats {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-2);
}

/* ─── Content Grid - Full Width No Gaps ────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 100%;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ─── Media Card - Same Style as Featured Cards ─────────────────────────────── */
.media-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark-card);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.media-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 14, 26, 0.9) 0%,
    rgba(13, 14, 26, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--space-6);
  transition: background 0.4s ease;
}

.media-card:hover .media-card-overlay {
  background: linear-gradient(
    to top,
    rgba(205, 63, 89, 0.8) 0%,
    rgba(205, 63, 89, 0.4) 50%,
    rgba(205, 63, 89, 0.1) 100%
  );
}

/* Center circle icon on hover */
.media-card-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.media-card:hover .media-card-overlay::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(244, 173, 108, 0.4);
}

/* Grid icon inside circle for photos */
.media-card-overlay::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 4h4v4H4V4zm6 0h4v4h-4V4zm6 0h4v4h-4V4zM4 10h4v4H4v-4zm6 0h4v4h-4v-4zm6 0h4v4h-4v-4zM4 16h4v4H4v-4zm6 0h4v4h-4v-4zm6 0h4v4h-4v-4z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transition: all 0.4s ease;
}

.media-card:hover .media-card-overlay::after {
  opacity: 1;
}

.media-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  z-index: 2;
}

.badge {
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-family: var(--font-body);
}

.badge-new { background: var(--primary); color: white; }
.badge-hot { background: #ff5722; color: white; }
.badge-vip { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--dark-bg); }
.badge-live { background: #ff0000; color: white; animation: pulse 1.5s infinite; }
.badge-free { background: #4ade80; color: var(--dark-bg); }

.media-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, text-shadow 0.4s ease, color 0.4s ease;
  position: relative;
  z-index: 2;
}

.media-card:hover .media-title {
  transform: translateY(-10px);
  text-shadow: 0 0 40px rgba(244, 173, 108, 0.8);
  color: var(--accent);
}

.media-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--space-2);
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 2;
}

.media-card:hover .media-meta {
  opacity: 1;
}

/* Play Button - Videos (same style as featured-card) */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 70px;
  height: 70px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
}

.media-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(244, 173, 108, 0.4);
}

/* Hide the default overlay icons for videos (they have play button) */
.media-card.video-card .media-card-overlay::before,
.media-card.video-card .media-card-overlay::after {
  display: none;
}

/* VIP Lock */
.media-card.locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 26, 0.8);
  backdrop-filter: blur(10px);
}

.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-family: var(--font-heading);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 2px;
}

/* ─── Testimonials Section ──────────────────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  background: rgba(30, 31, 50, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 85, 102, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-tier {
  font-size: 0.8rem;
  color: var(--accent);
}

/* ─── Live Section ──────────────────────────────────────────────────────────── */
.live-section {
  background: var(--dark-surface);
}

.live-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  background: rgba(30, 31, 50, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.live-preview {
  position: relative;
  min-height: 400px;
}

.live-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(220, 85, 102, 0.9);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.live-preview:hover .live-overlay {
  opacity: 1;
}

.live-play-btn {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(220, 85, 102, 0.5);
}

.live-play-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
  margin-left: 4px;
}

.live-content {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-content h3 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-4);
}

.live-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* Countdown */
.countdown {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.countdown-item {
  text-align: center;
  padding: var(--space-4) var(--space-5);
  background: rgba(220, 85, 102, 0.1);
  border: 1px solid rgba(220, 85, 102, 0.2);
  border-radius: var(--radius-lg);
  min-width: 70px;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-2);
}

/* ─── Pricing Section ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(220, 85, 102, 0.2);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(220, 85, 102, 0.1) 0%, var(--dark-card) 100%);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  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(--accent);
  background: linear-gradient(180deg, rgba(244, 173, 108, 0.1) 0%, var(--dark-card) 100%);
}

.pricing-card.premium::before {
  content: 'EXCLUSIVE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-4);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark-bg);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.pricing-badge {
  display: none;
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: var(--space-1);
  color: var(--white);
}

.pricing-card.premium .pricing-price {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-6);
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--accent);
}

.pricing-features .cross {
  color: rgba(255, 255, 255, 0.3);
}

.pricing-card > .btn {
  margin-top: auto;
}

/* ─── Top Tippers Section ───────────────────────────────────────────────────── */
.top-tippers-section {
  background: var(--dark-bg);
}

.top-tippers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-4);
}

/* ─── FAQ Section ───────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--dark-surface);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  padding: var(--space-6) 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ─── Flash Sale Banner ─────────────────────────────────────────────────────── */
.flash-sale-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  padding: var(--space-6) 0;
  overflow: hidden;
  margin: var(--space-8) 0;
}

.flash-sale-particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(244, 173, 108, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.flash-sale-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(220, 85, 102, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.flash-sale-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-6);
}

.flash-sale-left,
.flash-sale-center,
.flash-sale-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.flash-sale-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--accent);
  color: var(--dark-bg);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}

.flash-icon {
  font-size: 1.2rem;
}

.flash-sale-timer {
  text-align: center;
}

.timer-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-1);
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.timer-box {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  text-align: center;
}

.timer-box span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: block;
}

.timer-box small {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.timer-sep {
  font-size: 1.5rem;
  color: var(--accent);
}

.flash-sale-center {
  flex-direction: column;
  gap: var(--space-2);
}

.flash-sale-offer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.offer-tier {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
}

.offer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.flash-sale-prices {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.price-old {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.price-arrow {
  color: var(--accent);
}

.price-new {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
}

.flash-sale-discount {
  padding: var(--space-1) var(--space-3);
  background: rgba(244, 173, 108, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.flash-cta-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--accent);
  color: var(--dark-bg);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.flash-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-accent);
}

.flash-spots {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-2);
}

.spots-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--secondary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-16) 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-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-4);
  letter-spacing: 3px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ─── Floating Elements ─────────────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-sticky);
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
}

.floating-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(220, 85, 102, 0.5);
  color: white;
}

.floating-actions {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: var(--z-sticky);
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.fab-message {
  background: var(--accent);
}

.fab-custom {
  background: var(--primary);
}

.fab:hover {
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   AGE GATE - Premium 18+ Verification
   ═══════════════════════════════════════════════════════════════════════════ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.age-gate.hidden {
  display: none;
}

/* Background with animated gradient */
.age-gate-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0a0a12 0%, #1a1a2e 30%, #0f0f1a 70%, #0a0a12 100%);
}

/* Animated floating particles */
.age-gate-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.age-gate-particles::before,
.age-gate-particles::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  animation: floatParticle 15s ease-in-out infinite;
}

.age-gate-particles::before {
  background: radial-gradient(circle, rgba(220, 85, 102, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.age-gate-particles::after {
  background: radial-gradient(circle, rgba(244, 173, 108, 0.3) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  animation-delay: -7.5s;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(50px, -30px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(20px, 20px) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translate(-30px, 10px) scale(1.05);
    opacity: 0.7;
  }
}

/* Vignette overlay */
.age-gate-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

/* Main card */
.age-gate-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: rgba(20, 21, 35, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 32px;
  border: 1px solid rgba(220, 85, 102, 0.2);
  padding: 60px 50px;
  text-align: center;
  animation: cardSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(220, 85, 102, 0.15);
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Animated glow border */
.age-gate-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg,
    var(--primary) 0%,
    var(--accent) 25%,
    var(--primary) 50%,
    var(--accent) 75%,
    var(--primary) 100%
  );
  background-size: 400% 400%;
  border-radius: 34px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(15px);
  animation: glowRotate 6s linear infinite;
}

@keyframes glowRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header with 18+ icon */
.age-gate-header {
  margin-bottom: var(--space-10);
}

.age-gate-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.age-gate-icon-main {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(220, 85, 102, 0.5));
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(220, 85, 102, 0.5));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(220, 85, 102, 0.7));
  }
}

/* Animated rings around icon */
.age-gate-icon-ring {
  position: absolute;
  inset: 0;
  border: 2px solid;
  border-color: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: ringExpand 3s ease-out infinite;
}

.age-gate-icon-ring-2 {
  animation-delay: 1.5s;
  border-color: var(--accent);
}

@keyframes ringExpand {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Body content */
.age-gate-body {
  margin-bottom: var(--space-10);
}

.age-gate-title {
  margin-bottom: var(--space-6);
}

.age-gate-title-line {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.age-gate-title-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-gate-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.age-gate-text strong {
  color: var(--accent);
  font-weight: 600;
}

/* Decorative divider */
.age-gate-divider {
  margin: var(--space-8) auto;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 85, 102, 0.5), transparent);
  position: relative;
}

.age-gate-divider-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(20, 21, 35, 1);
  padding: 0 15px;
  font-size: 1.8rem;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  15% { transform: translate(-50%, -50%) scale(1.15); }
  30% { transform: translate(-50%, -50%) scale(1); }
  45% { transform: translate(-50%, -50%) scale(1.1); }
}

.age-gate-question {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
}

.age-gate-highlight {
  color: var(--accent);
  font-weight: 700;
}

/* Action buttons */
.age-gate-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.age-gate-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
  border: none;
  border-radius: 16px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.age-gate-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.age-gate-btn:hover::before {
  opacity: 1;
}

/* YES Button - Primary */
.age-gate-btn-yes {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow:
    0 4px 20px rgba(220, 85, 102, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.age-gate-btn-yes:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 10px 40px rgba(220, 85, 102, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.age-gate-btn-yes:active {
  transform: translateY(-2px) scale(0.98);
}

/* NO Button - Secondary */
.age-gate-btn-no {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.age-gate-btn-no:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.age-gate-btn-icon {
  font-size: 2rem;
  line-height: 1;
}

.age-gate-btn-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.age-gate-btn-subtext {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Footer */
.age-gate-footer {
  text-align: center;
}

.age-gate-legal {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.age-gate-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.age-gate-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ─── Animations ────────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.sexy-hover {
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sexy-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 85, 102, 0.25);
}

/* Override sexy-hover for media-cards - use featured-card style instead */
.media-card.sexy-hover:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Parallax */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  bottom: -10%;
  z-index: -1;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 14, 26, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    font-size: 2rem;
    padding: var(--space-4) var(--space-8);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .live-card {
    grid-template-columns: 1fr;
  }

  .live-preview {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .hero-content {
    margin-left: 0;
    padding: var(--space-8) var(--space-4);
    padding-top: calc(80px + var(--space-8));
  }

  .model-name h2 {
    font-size: clamp(50px, 18vw, 100px);
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    aspect-ratio: 16/9;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .flash-sale-container {
    flex-direction: column;
    text-align: center;
  }

  .flash-sale-left,
  .flash-sale-center,
  .flash-sale-right {
    flex-direction: column;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-badges {
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .navbar-inner {
    padding: 0 var(--space-4);
    height: 70px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .hero-title .gradient-text-animated {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section {
    padding: var(--space-12) 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .age-gate-card {
    padding: 40px 25px;
    border-radius: 24px;
  }

  .age-gate-glow {
    border-radius: 26px;
  }

  .age-gate-icon {
    width: 100px;
    height: 100px;
  }

  .age-gate-icon-main {
    font-size: 3rem;
  }

  .age-gate-title-line {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .age-gate-text {
    font-size: 1rem;
  }

  .age-gate-question {
    font-size: 1.1rem;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .age-gate-btn {
    padding: var(--space-5) var(--space-4);
  }

  .age-gate-btn-icon {
    font-size: 1.5rem;
  }

  .age-gate-badges {
    gap: var(--space-3);
  }

  .age-gate-badge {
    font-size: 0.7rem;
    padding: var(--space-1) var(--space-2);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CUSTOM CURSOR - Elegant & Professional
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hide default cursor on desktop (except pages with no-custom-cursor class) */
@media (hover: hover) and (pointer: fine) {
  body:not(.touch-device):not(.no-custom-cursor) {
    cursor: none !important;
  }

  body:not(.touch-device):not(.no-custom-cursor) *,
  body:not(.touch-device):not(.no-custom-cursor) a,
  body:not(.touch-device):not(.no-custom-cursor) button,
  body:not(.touch-device):not(.no-custom-cursor) input,
  body:not(.touch-device):not(.no-custom-cursor) textarea,
  body:not(.touch-device):not(.no-custom-cursor) select,
  body:not(.touch-device):not(.no-custom-cursor) [role="button"],
  body:not(.touch-device):not(.no-custom-cursor) .clickable {
    cursor: none !important;
  }

  /* EXCEPTION: Always show cursor on age gate */
  .age-gate,
  .age-gate *,
  .age-gate button,
  .age-gate .age-gate-btn {
    cursor: auto !important;
  }

  .age-gate button:hover,
  .age-gate .age-gate-btn:hover {
    cursor: pointer !important;
  }

  /* EXCEPTION: Always show cursor on modals and form inputs */
  .modal,
  .modal *,
  .modal input,
  .modal textarea,
  .modal select,
  .modal button,
  .login-modal,
  .login-modal *,
  .ppv-modal,
  .ppv-modal * {
    cursor: auto !important;
  }

  .modal button:hover,
  .modal .btn:hover,
  .modal .modal-close:hover,
  .login-modal button:hover {
    cursor: pointer !important;
  }

  .modal input,
  .modal textarea,
  .modal select {
    cursor: text !important;
  }
}

/* Normal cursor for pages with no-custom-cursor class */
body.no-custom-cursor,
body.no-custom-cursor * {
  cursor: auto !important;
}

body.no-custom-cursor a,
body.no-custom-cursor button,
body.no-custom-cursor .btn,
body.no-custom-cursor .tier-card,
body.no-custom-cursor .crypto-btn,
body.no-custom-cursor [role="button"] {
  cursor: pointer !important;
}

body.no-custom-cursor input,
body.no-custom-cursor textarea,
body.no-custom-cursor select {
  cursor: text !important;
}

/* Hide custom cursor elements on no-custom-cursor pages */
body.no-custom-cursor .cursor-dot,
body.no-custom-cursor .cursor-outline {
  display: none !important;
}

/* Main cursor dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 0 10px var(--primary),
    0 0 20px rgba(220, 85, 102, 0.5);
}

/* Cursor outline ring */
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  opacity: 0.6;
}

/* Cursor states - Hover on interactive elements */
.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: var(--accent);
  box-shadow:
    0 0 15px var(--accent),
    0 0 30px rgba(244, 173, 108, 0.6);
}

.cursor-outline.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
  background: rgba(244, 173, 108, 0.1);
}

/* Cursor states - Clicking */
.cursor-dot.cursor-click {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor-outline.cursor-click {
  width: 30px;
  height: 30px;
}

/* Cursor states - Hidden (on form inputs) */
.cursor-dot.cursor-hidden,
.cursor-outline.cursor-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* Heart particle styles */
.heart-particle {
  position: fixed;
  pointer-events: none;
  z-index: 99997;
  font-size: 20px;
  opacity: 1;
  animation: heartFloat 1.2s ease-out forwards;
  filter: drop-shadow(0 0 6px var(--primary));
}

@keyframes heartFloat {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 80px)) scale(0.8) rotate(-20deg);
  }
}

/* Alternative heart animation variants */
.heart-particle.variant-1 {
  animation: heartFloat1 1s ease-out forwards;
}

.heart-particle.variant-2 {
  animation: heartFloat2 1.1s ease-out forwards;
}

.heart-particle.variant-3 {
  animation: heartFloat3 0.9s ease-out forwards;
}

@keyframes heartFloat1 {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3);
  }
  30% {
    opacity: 1;
    transform: translate(calc(-50% + 30px), calc(-50% - 20px)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + 50px), calc(-50% - 100px)) scale(0.6);
  }
}

@keyframes heartFloat2 {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3);
  }
  30% {
    opacity: 1;
    transform: translate(calc(-50% - 25px), calc(-50% - 25px)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% - 45px), calc(-50% - 90px)) scale(0.6);
  }
}

@keyframes heartFloat3 {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, calc(-50% - 30px)) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 110px)) scale(0.5);
  }
}

/* Sparkle effect around cursor on hover */
.cursor-sparkle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99996;
  opacity: 0;
  box-shadow: 0 0 6px var(--accent);
}

.cursor-sparkle.active {
  animation: sparkle 0.6s ease-out forwards;
}

@keyframes sparkle {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
}

/* Touch device - disable custom cursor */
@media (hover: none) or (pointer: coarse) {
  .cursor-dot,
  .cursor-outline,
  .heart-particle,
  .cursor-sparkle {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }
}

/* ─── Reduced Motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FREE TRIAL BANNER & MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

/* Free Trial Banner - Premium Design */
.free-trial-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.95), rgba(156, 39, 176, 0.95));
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  box-shadow: 0 4px 30px rgba(233, 30, 99, 0.5);
  border-bottom: 1px solid rgba(255, 193, 7, 0.3);
  animation: bannerSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.free-trial-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 193, 7, 0.1) 50%,
    transparent 100%);
  animation: shimmerBanner 3s infinite;
}

@keyframes bannerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes shimmerBanner {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.free-trial-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  position: relative;
}

.free-trial-icon {
  font-size: 1.8rem;
  animation: iconPulse 2s infinite;
  filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.free-trial-text {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.free-trial-text span {
  color: var(--gold);
  font-weight: 700;
}

.free-trial-btn {
  background: linear-gradient(135deg, var(--gold), #FFD54F);
  color: #1a1a2e;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer !important;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  position: relative;
  overflow: hidden;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.free-trial-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.free-trial-btn:hover::before {
  left: 100%;
}

.free-trial-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
}

.free-trial-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  cursor: pointer !important;
  opacity: 0.8;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.free-trial-close svg {
  width: 10px;
  height: 10px;
}

.free-trial-close:hover {
  opacity: 1;
  background: rgba(0,0,0,0.4);
}

/* Free Trial Modal */
.free-trial-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10002;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.free-trial-modal-content {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-surface));
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 40px;
  max-width: 450px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 0 60px rgba(233, 30, 99, 0.4), 0 0 100px rgba(156, 39, 176, 0.2);
  animation: modalScaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.free-trial-modal-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--gold), var(--primary));
  border-radius: 26px;
  z-index: -1;
  animation: borderGlow 3s infinite;
}

@keyframes modalScaleIn {
  from { transform: scale(0.8) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.free-trial-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer !important;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.free-trial-modal-close svg {
  width: 14px;
  height: 14px;
}

.free-trial-modal-close:hover {
  color: white;
  background: var(--primary);
  transform: scale(1.1);
}

.free-trial-modal-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: iconFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.free-trial-modal-title {
  font-family: 'Germania One', cursive;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.free-trial-modal-desc {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.free-trial-modal-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.free-trial-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.free-trial-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.free-trial-input-group input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.free-trial-input-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.free-trial-input-group input::placeholder {
  color: var(--text-muted);
}

.free-trial-input-group button {
  white-space: nowrap;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary), #9c27b0);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.free-trial-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(233, 30, 99, 0.6);
}

.free-trial-input-group button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.free-trial-terms {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 10px;
}

.free-trial-success {
  padding: 30px 20px;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.free-trial-success .success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: iconFloat 2s ease-in-out infinite;
}

.free-trial-success h3 {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.free-trial-success p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOGIN MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10003;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(15px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.login-modal-content {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-surface));
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 60px rgba(233, 30, 99, 0.4), 0 0 100px rgba(156, 39, 176, 0.2);
  animation: modalScaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-modal-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--gold), var(--primary));
  border-radius: 26px;
  z-index: -1;
  animation: borderGlow 3s infinite;
}

.login-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer !important;
  font-size: 1.5rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-modal-close:hover {
  color: white;
  background: var(--primary);
  transform: scale(1.1);
}

.login-modal h2 {
  font-family: 'Germania One', cursive;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.login-modal .form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.login-modal .form-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.login-modal .form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.login-modal .form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.login-modal .form-input::placeholder {
  color: var(--text-muted);
}

.login-modal .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .free-trial-content {
    flex-wrap: wrap;
    padding: 0 40px;
    gap: 8px;
  }

  .free-trial-text {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .free-trial-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .free-trial-icon {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .free-trial-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 0 40px;
  }

  .free-trial-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .free-trial-input-group {
    flex-direction: column;
  }

  .free-trial-modal-info {
    flex-direction: column;
    gap: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTENT COUNTDOWN SECTION (v2.34)
   ═══════════════════════════════════════════════════════════════════════════ */

.content-countdown {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(236, 72, 153, 0.05));
}

.countdown-card {
  position: relative;
  background: rgba(20, 20, 30, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  overflow: hidden;
}

.countdown-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(147, 51, 234, 0.15), transparent 50%);
  pointer-events: none;
}

.countdown-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.countdown-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #9333ea, #ec4899);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.countdown-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #fff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-desc {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
}

.countdown-timer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.countdown-unit {
  text-align: center;
}

.countdown-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-unit-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.countdown-separator {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(167, 139, 250, 0.5);
  margin-bottom: 1.5rem;
}

.countdown-type {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .countdown-card {
    padding: 2rem 1.5rem;
  }

  .countdown-title {
    font-size: 1.5rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-separator {
    font-size: 1.5rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ENHANCED RESPONSIVE - Mobile & Tablet Optimization (v2.35)
   Professional, Clean, Premium Experience on All Devices
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── TABLET LANDSCAPE (max-width: 1024px) ─────────────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* ─── TABLET PORTRAIT (max-width: 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Container & Spacing */
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 3rem 0;
  }

  /* Navbar */
  .navbar-inner {
    height: 70px;
  }

  .sexy-logo {
    padding: 8px 14px;
  }

  .logo-text {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .logo-badge {
    font-size: 0.55rem;
    padding: 2px 6px;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .online-badge {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 100px 20px 40px;
  }

  .hero-prefix {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  .hero-title .gradient-text-animated {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-social a {
    width: 44px;
    height: 44px;
  }

  /* About Section */
  .about-grid {
    gap: 2rem;
  }

  .about-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-image::before {
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    top: -8px;
    left: -8px;
  }

  .about-tagline {
    font-size: 1.4rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Featured Banner */
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .featured-card {
    aspect-ratio: 16/9;
  }

  .featured-card-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .featured-card-icon {
    font-size: 2.5rem;
  }

  /* Section Headers */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  /* Media Grid (Videos/Photos) */
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .media-card {
    border-radius: 12px;
  }

  .media-info {
    padding: 12px;
  }

  .media-title {
    font-size: 0.9rem;
  }

  .media-meta {
    font-size: 0.75rem;
  }

  /* Testimonials */
  .testimonials-grid {
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }

  /* Live Section */
  .live-card {
    border-radius: 16px;
  }

  .live-preview {
    min-height: 220px;
    aspect-ratio: 16/9;
  }

  .live-info {
    padding: 1.5rem;
  }

  .live-title {
    font-size: 1.4rem;
  }

  .live-description {
    font-size: 0.95rem;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card.featured {
    transform: none;
    margin: 0;
  }

  .price {
    font-size: 2.5rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }

  /* Trust Badges */
  .trust-badges {
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

  .trust-badge svg {
    width: 20px;
    height: 20px;
  }

  /* Buttons */
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  /* Age Gate */
  .age-gate-card {
    padding: 2rem 1.5rem;
    margin: 20px;
    border-radius: 20px;
  }

  .age-gate-icon {
    width: 90px;
    height: 90px;
  }

  .age-gate-title {
    font-size: 1.8rem;
  }

  /* Flash Sale */
  .flash-sale-banner {
    padding: 12px 0;
  }

  .flash-sale-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .flash-sale-left,
  .flash-sale-center,
  .flash-sale-right {
    justify-content: center;
  }

  .flash-sale-title {
    font-size: 1rem;
  }

  /* Login Modal */
  .login-modal-content {
    margin: 20px;
    max-width: calc(100% - 40px);
  }

  /* Tip Button */
  .tip-float-btn {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

/* ─── SMARTPHONE (max-width: 480px) ────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 2.5rem 0;
  }

  /* Navbar */
  .navbar-inner {
    height: 60px;
    padding: 0 12px;
  }

  .sexy-logo {
    padding: 6px 10px;
  }

  .logo-icon {
    font-size: 1.1rem;
  }

  .logo-text {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .logo-badge {
    display: none;
  }

  /* Mobile Menu */
  .nav-menu .nav-link {
    font-size: 1.5rem;
    padding: 12px 24px;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 80px 16px 30px;
  }

  .hero-prefix {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .model-name h2 {
    font-size: clamp(40px, 16vw, 80px) !important;
  }

  .hero-title .gradient-text-animated {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-cta .btn {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .hero-social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* About */
  .about-image {
    max-width: 220px;
  }

  .about-tagline {
    font-size: 1.2rem;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Featured */
  .featured-card {
    aspect-ratio: 4/3;
  }

  .featured-card-title {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .featured-card-icon {
    font-size: 2rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-link {
    font-size: 0.8rem;
  }

  /* Media Grid */
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .media-card {
    border-radius: 10px;
  }

  .media-info {
    padding: 10px;
  }

  .media-title {
    font-size: 0.8rem;
  }

  .media-meta {
    font-size: 0.7rem;
  }

  .media-badge {
    font-size: 0.6rem;
    padding: 3px 6px;
  }

  /* Filter Tabs */
  .filter-tabs {
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    font-size: 0.75rem;
    padding: 8px 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }

  .testimonial-tier {
    font-size: 0.7rem;
  }

  /* Live */
  .live-card {
    border-radius: 12px;
  }

  .live-preview {
    min-height: 180px;
  }

  .live-info {
    padding: 1.25rem;
  }

  .live-title {
    font-size: 1.2rem;
  }

  .live-description {
    font-size: 0.9rem;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-item {
    min-width: 50px;
    padding: 10px 8px;
  }

  .countdown-value {
    font-size: 1.4rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  /* Pricing */
  .pricing-card {
    padding: 1.25rem;
  }

  .tier-name {
    font-size: 1.1rem;
  }

  .price {
    font-size: 2rem;
  }

  .price-period {
    font-size: 0.85rem;
  }

  .tier-features li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  /* FAQ */
  .faq-item {
    border-radius: 10px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 14px 16px;
  }

  .faq-answer {
    font-size: 0.85rem;
    padding: 0 16px 14px;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-brand .logo-text {
    font-size: 1.4rem;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  /* Trust Badges */
  .trust-badges {
    flex-direction: column;
    gap: 12px;
    padding: 1rem 0;
  }

  .trust-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    width: 100%;
    justify-content: center;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .btn-sm {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  /* Age Gate */
  .age-gate-card {
    padding: 1.75rem 1.25rem;
    margin: 16px;
    border-radius: 16px;
  }

  .age-gate-icon {
    width: 80px;
    height: 80px;
  }

  .age-gate-icon-main {
    font-size: 2.5rem;
  }

  .age-gate-title {
    font-size: 1.5rem;
  }

  .age-gate-title-line {
    font-size: 1.8rem;
  }

  .age-gate-text {
    font-size: 0.9rem;
  }

  .age-gate-question {
    font-size: 1rem;
  }

  .age-gate-actions {
    flex-direction: column;
    gap: 10px;
  }

  .age-gate-btn {
    padding: 16px;
    font-size: 0.85rem;
  }

  .age-gate-badges {
    gap: 8px;
  }

  .age-gate-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  /* Flash Sale */
  .flash-sale-banner {
    padding: 10px 0;
  }

  .flash-sale-title {
    font-size: 0.85rem;
  }

  .flash-sale-price {
    font-size: 0.9rem;
  }

  .flash-sale-countdown-item {
    min-width: 32px;
    font-size: 0.75rem;
  }

  /* Countdown Section */
  .countdown-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .countdown-title {
    font-size: 1.3rem;
  }

  .countdown-desc {
    font-size: 0.85rem;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-separator {
    font-size: 1.2rem;
  }

  .countdown-unit-label {
    font-size: 0.65rem;
  }

  /* Tip Button */
  .tip-float-btn {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Modals */
  .login-modal-content,
  .tip-modal-content,
  .referral-modal-content {
    margin: 16px;
    max-width: calc(100% - 32px);
    border-radius: 16px;
  }

  .modal-header {
    padding: 1rem;
  }

  .modal-body {
    padding: 1rem;
  }

  /* Top Tippers */
  .top-tippers {
    padding: 2rem 0;
  }

  .tipper-card {
    padding: 10px 12px;
  }

  .tipper-rank {
    font-size: 1.2rem;
  }

  .tipper-name {
    font-size: 0.85rem;
  }

  .tipper-amount {
    font-size: 0.8rem;
  }
}

/* ─── SMALL SMARTPHONE (max-width: 360px) ──────────────────────────────────── */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 2rem 0;
  }

  /* Navbar */
  .navbar-inner {
    height: 56px;
    padding: 0 10px;
  }

  .logo-icon {
    font-size: 1rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  /* Hero */
  .hero-content {
    padding: 70px 12px 24px;
  }

  .hero-prefix {
    font-size: 0.65rem;
  }

  .model-name h2 {
    font-size: clamp(36px, 14vw, 60px) !important;
  }

  .hero-title .gradient-text-animated {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-cta .btn {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .hero-social a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* About */
  .about-image {
    max-width: 180px;
  }

  .about-tagline {
    font-size: 1.1rem;
  }

  .about-text {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  /* Section */
  .section-title {
    font-size: 1.2rem;
  }

  /* Media Grid */
  .media-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .media-card {
    border-radius: 12px;
  }

  .media-info {
    padding: 12px;
  }

  .media-title {
    font-size: 0.9rem;
  }

  /* Filter Tabs */
  .filter-tab {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  /* Live */
  .live-preview {
    min-height: 150px;
  }

  .live-info {
    padding: 1rem;
  }

  .live-title {
    font-size: 1.1rem;
  }

  .countdown-item {
    min-width: 44px;
    padding: 8px 6px;
  }

  .countdown-value {
    font-size: 1.2rem;
  }

  /* Pricing */
  .pricing-card {
    padding: 1rem;
  }

  .tier-name {
    font-size: 1rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .tier-features li {
    font-size: 0.8rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.85rem;
    padding: 12px 14px;
  }

  .faq-answer {
    font-size: 0.8rem;
    padding: 0 14px 12px;
  }

  /* Footer */
  .footer-brand .logo-text {
    font-size: 1.2rem;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  /* Age Gate */
  .age-gate-card {
    padding: 1.5rem 1rem;
    margin: 12px;
  }

  .age-gate-icon {
    width: 70px;
    height: 70px;
  }

  .age-gate-title {
    font-size: 1.3rem;
  }

  .age-gate-title-line {
    font-size: 1.5rem;
  }

  .age-gate-btn {
    padding: 14px;
    font-size: 0.8rem;
  }
}

/* ─── TOUCH DEVICE OPTIMIZATIONS ───────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover effects on touch */
  .media-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .faq-item:hover,
  .featured-card:hover {
    transform: none;
  }

  /* Show actions by default */
  .media-actions {
    opacity: 1;
  }

  .favorite-btn {
    opacity: 1;
  }

  /* Larger touch targets */
  .btn,
  .nav-link,
  .filter-tab,
  .faq-question,
  .social-link,
  a {
    min-height: 44px;
  }

  /* Active states for feedback */
  .btn:active {
    transform: scale(0.98);
  }

  .media-card:active {
    transform: scale(0.99);
  }

  /* Remove video preview on hover (touch devices) */
  .video-preview {
    display: none !important;
  }

  /* Scrollable elements with momentum */
  .filter-tabs,
  .trust-badges {
    -webkit-overflow-scrolling: touch;
  }
}

/* ─── SAFE AREA (iPhone Notch) ─────────────────────────────────────────────── */
@supports (padding: max(0px)) {
  .navbar {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .age-gate-card {
    margin-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .tip-float-btn {
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 10px));
    right: max(16px, env(safe-area-inset-right));
  }
}

/* ─── REDUCED MOTION (Accessibility) ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg video {
    animation: none;
  }
}

/* ─── LANDSCAPE PHONE OPTIMIZATION ─────────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 60px 0 20px;
  }

  .hero-content {
    padding-top: 70px;
  }

  .model-name h2 {
    font-size: clamp(30px, 10vw, 50px) !important;
  }

  .hero-subtitle {
    display: none;
  }

  .age-gate-card {
    padding: 1.5rem;
    flex-direction: row;
    gap: 2rem;
    max-width: 90vw;
  }

  .age-gate-header {
    margin-bottom: 0;
  }

  .age-gate-actions {
    flex-direction: row;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS - Confetti, Welcome, Celebration (v2.34)
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes scale-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float-hearts {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Celebration Overlay */
.celebration-content,
.welcome-content {
  text-align: center;
  padding: 3rem;
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 24px;
  max-width: 450px;
  margin: 20px;
  animation: scale-in 0.5s ease;
}

.celebration-icon,
.welcome-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: bounce-in 0.6s ease 0.2s both;
}

.celebration-title,
.welcome-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, #ec4899, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.celebration-text,
.welcome-text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.celebration-hearts,
.welcome-sparkles {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.celebration-hearts span,
.welcome-sparkles span {
  animation: float-hearts 2s ease-in-out infinite;
}

.celebration-hearts span:nth-child(2),
.welcome-sparkles span:nth-child(2) { animation-delay: 0.2s; }
.celebration-hearts span:nth-child(3),
.welcome-sparkles span:nth-child(3) { animation-delay: 0.4s; }
.celebration-hearts span:nth-child(4),
.welcome-sparkles span:nth-child(4) { animation-delay: 0.6s; }
.celebration-hearts span:nth-child(5),
.welcome-sparkles span:nth-child(5) { animation-delay: 0.8s; }

.celebration-btn,
.welcome-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #9333ea, #ec4899);
  border: none;
  border-radius: 100px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.celebration-btn:hover,
.welcome-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   USER BADGES DISPLAY (v2.34)
   ═══════════════════════════════════════════════════════════════════════════ */

.user-badges {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.user-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.9rem;
  background: rgba(147, 51, 234, 0.2);
  border-radius: 50%;
  border: 1px solid rgba(147, 51, 234, 0.3);
  cursor: help;
  transition: all 0.2s ease;
}

.user-badge:hover {
  transform: scale(1.2);
  background: rgba(147, 51, 234, 0.3);
}

.user-badge[data-tooltip] {
  position: relative;
}

.user-badge[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  margin-bottom: 6px;
  z-index: 100;
}

/* Badge in navbar next to username */
.nav-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-user-tier {
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLAYLIST STYLES (v2.34)
   ═══════════════════════════════════════════════════════════════════════════ */

.playlist-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.playlist-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: rgba(147, 51, 234, 0.3);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WOW FEATURES v2.35 - Online Counter, Page Transitions, Stagger, Stats
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. Live Online Counter Widget ────────────────────────────────────────── */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: counterPulse 3s ease-in-out infinite;
}

.live-counter-dot {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  animation: liveDotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
}

@keyframes liveDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes counterPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
  50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0.1); }
}

.live-counter-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00ff88;
  min-width: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.live-counter-number.updating {
  transform: scale(1.2);
  color: #fff;
}

.live-counter-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.live-counter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  font-size: 12px;
}

/* ─── 2. Page Transitions ──────────────────────────────────────────────────── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Page enter animation */
body {
  animation: pageEnter 0.5s ease-out;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page exit animation class */
body.page-exit {
  animation: pageExit 0.3s ease-in forwards;
}

@keyframes pageExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Loading bar at top */
.page-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  background-size: 200% 100%;
  z-index: 100000;
  width: 0%;
  transition: width 0.3s ease;
  animation: loadingBarShimmer 1s linear infinite;
}

@keyframes loadingBarShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.page-loading-bar.loading {
  width: 70%;
}

.page-loading-bar.complete {
  width: 100%;
  opacity: 0;
  transition: width 0.2s ease, opacity 0.3s ease 0.2s;
}

/* ─── 3. Stagger Animation on Scroll ───────────────────────────────────────── */
/* Only apply stagger to static elements, not dynamically loaded ones */
.stagger-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dynamically loaded cards - use different class to avoid hiding */
.video-card, .photo-card {
  opacity: 1 !important;
  transform: none !important;
}

.video-card.animate-in, .photo-card.animate-in {
  animation: cardFadeIn 0.5s ease forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger delays - applied via JS but CSS fallback */
.stagger-item:nth-child(1) { transition-delay: 0ms; }
.stagger-item:nth-child(2) { transition-delay: 80ms; }
.stagger-item:nth-child(3) { transition-delay: 160ms; }
.stagger-item:nth-child(4) { transition-delay: 240ms; }
.stagger-item:nth-child(5) { transition-delay: 320ms; }
.stagger-item:nth-child(6) { transition-delay: 400ms; }
.stagger-item:nth-child(7) { transition-delay: 480ms; }
.stagger-item:nth-child(8) { transition-delay: 560ms; }
.stagger-item:nth-child(9) { transition-delay: 640ms; }
.stagger-item:nth-child(10) { transition-delay: 720ms; }
.stagger-item:nth-child(11) { transition-delay: 800ms; }
.stagger-item:nth-child(12) { transition-delay: 880ms; }

/* Scale + fade variant */
.stagger-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stagger-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide up variant */
.stagger-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 4. Views/Likes Stats on Media Cards ──────────────────────────────────── */
.media-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.media-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.media-stat svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.media-stat:hover {
  color: var(--text-light);
}

.media-stat:hover svg {
  opacity: 1;
}

.media-stat.views svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.media-stat.likes svg {
  fill: currentColor;
}

.media-stat.likes:hover {
  color: var(--primary);
}

/* Animated number counting */
.stat-number {
  display: inline-block;
  min-width: 20px;
}

.stat-number.counting {
  animation: countPop 0.3s ease;
}

@keyframes countPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Stats overlay on thumbnail (alternative style) */
.media-thumbnail-stats {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.thumbnail-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}

.thumbnail-stat svg {
  width: 12px;
  height: 12px;
}

.thumbnail-stat.views svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.thumbnail-stat.likes svg {
  fill: #ff4757;
}

/* ─── Activity Feed (Bonus) ────────────────────────────────────────────────── */
.activity-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(30, 31, 50, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.activity-toast.show {
  transform: translateX(0);
}

.activity-toast-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  font-size: 18px;
}

.activity-toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.activity-toast-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.activity-toast-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .live-counter {
    padding: 10px 16px;
    gap: 8px;
  }

  .live-counter-number {
    font-size: 1.1rem;
  }

  .live-counter-text {
    font-size: 0.75rem;
  }

  .activity-toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PPV MODAL - Pay Per View Purchase Modal
   ═══════════════════════════════════════════════════════════════════════════ */

.ppv-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.ppv-modal.active {
  opacity: 1;
  visibility: visible;
}

.ppv-modal-content {
  background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(233, 30, 99, 0.2);
  animation: ppvModalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes ppvModalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ppv-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ppv-modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.ppv-modal-preview {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.ppv-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--text-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ppv-modal-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.ppv-modal-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.ppv-crypto-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.ppv-crypto-btn {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ppv-crypto-btn:hover {
  border-color: var(--primary);
  background: rgba(233, 30, 99, 0.1);
}

.ppv-crypto-btn.selected {
  border-color: var(--primary);
  background: rgba(233, 30, 99, 0.2);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

/* PPV Badge on video/photo cards */
.ppv-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(244, 173, 108, 0.4);
}

.ppv-badge::before {
  content: '💎 ';
}

/* Responsive PPV Modal */
@media (max-width: 480px) {
  .ppv-modal-content {
    padding: 20px;
    margin: 10px;
  }

  .ppv-modal-price {
    font-size: 2rem;
  }

  .ppv-crypto-options {
    flex-direction: column;
  }

  .ppv-crypto-btn {
    padding: 14px;
  }
}
