/* ==========================================================================
   Datez - "Barbie Dream" Design System - Tailwind CSS Extensions
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables - Barbie Pink Theme
   ========================================================================== */
:root {
  --barbie-pink: #e91e90;
  --barbie-hot: #ff2d9b;
  --barbie-light: #ff7eb3;
  --barbie-soft: #ffb6d5;
  --barbie-pastel: #ffd6eb;
  --barbie-cream: #fff0f6;
  --barbie-magenta: #d6006e;
  --barbie-fuchsia: #f50293;
  --gold-accent: #ffc857;
  --gold-light: #ffe49a;
  --rose-bg: #fff5f9;
  --rose-card: #fff8fb;
  --rose-dark: #1a0a12;
  --rose-deep: #2d0f1e;
  --text-dark: #2d0f1e;
  --text-medium: #6b3a53;
  --text-soft: #a05c7a;
  --gradient-barbie: linear-gradient(135deg, #e91e90 0%, #ff7eb3 50%, #ffc857 100%);
  --gradient-hot: linear-gradient(135deg, #ff2d9b 0%, #f50293 100%);
  --gradient-soft: linear-gradient(135deg, #ffb6d5 0%, #ffd6eb 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 246, 0.8) 100%);
  --shadow-pink: 0 4px 25px rgba(233, 30, 144, 0.2);
  --shadow-glow: 0 0 20px rgba(233, 30, 144, 0.3), 0 0 40px rgba(233, 30, 144, 0.1);
  --shadow-card: 0 8px 30px rgba(233, 30, 144, 0.08);
  --shadow-hover: 0 12px 40px rgba(233, 30, 144, 0.15);
  --border-radius: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--rose-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
}

/* ==========================================================================
   Animated Background
   ========================================================================== */
.barbie-bg {
  position: relative;
  overflow: hidden;
}

.barbie-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(233, 30, 144, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 25%, rgba(255, 126, 179, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 75%, rgba(255, 200, 87, 0.04) 0%, transparent 50%);
  animation: dreamShift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes dreamShift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(2%, 2%) rotate(2deg);
  }
}

/* Floating hearts decoration */
.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-hearts .heart {
  position: absolute;
  font-size: 1.2rem;
  color: rgba(233, 30, 144, 0.08);
  animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

/* ==========================================================================
   Glassmorphism Cards
   ========================================================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(233, 30, 144, 0.12);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(233, 30, 144, 0.25);
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.topbar-datez {
  background: var(--gradient-barbie);
  padding: 6px 0;
  font-size: 0.78rem;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  letter-spacing: 0.02em;
}

.topbar-marquee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.topbar-marquee i {
  font-size: 0.7rem;
}

.topbar-sep {
  opacity: 0.4;
  font-weight: 300;
}

.topbar-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.78rem;
}

.topbar-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-datez {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(233, 30, 144, 0.08);
  box-shadow: 0 2px 20px rgba(233, 30, 144, 0.04);
  padding: 0.6rem 0;
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-datez.scrolled {
  box-shadow: 0 4px 30px rgba(233, 30, 144, 0.1);
  top: 0;
}

.navbar-datez.scrolled + .mega-overlay ~ .mega-menu-grid,
.navbar-datez.scrolled ~ .mega-menu-grid {
  top: 56px;
}

/* Brand New Design */
.brand-datez-new {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-barbie);
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(233, 30, 144, 0.25);
  transition: var(--transition);
}

.brand-datez-new:hover .brand-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: var(--shadow-glow);
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-barbie);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--text-soft);
}

/* Nav Pills */
.nav-pill-datez {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.nav-pill-datez i:not(.mega-chevron) {
  font-size: 0.85rem;
  opacity: 0.7;
}

.nav-pill-datez:hover {
  color: var(--barbie-pink);
  background: rgba(233, 30, 144, 0.06);
  border-color: rgba(233, 30, 144, 0.1);
}

.nav-pill-datez.active {
  color: var(--barbie-pink);
  background: rgba(233, 30, 144, 0.08);
  border-color: rgba(233, 30, 144, 0.15);
  font-weight: 600;
}

.mega-chevron {
  font-size: 0.65rem !important;
  opacity: 0.5 !important;
  transition: transform 0.3s ease;
}

.nav-pill-datez[aria-expanded="true"] .mega-chevron {
  transform: rotate(180deg);
}

/* CTA Glow Button */
.btn-glow {
  animation: ctaGlow 2.5s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { box-shadow: 0 4px 15px rgba(233, 30, 144, 0.3); }
  100% { box-shadow: 0 4px 25px rgba(233, 30, 144, 0.5), 0 0 40px rgba(233, 30, 144, 0.15); }
}

.online-badge-datez {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(233, 30, 144, 0.06);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--barbie-pink);
  font-weight: 500;
  border: 1px solid rgba(233, 30, 144, 0.1);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-barbie {
  background: var(--gradient-hot);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(233, 30, 144, 0.3);
}

.btn-barbie::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-barbie:hover::before {
  left: 100%;
}

.btn-barbie:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow);
  color: white;
}

.btn-barbie-outline {
  background: transparent;
  color: var(--barbie-pink);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--barbie-pink);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-barbie-outline:hover {
  background: var(--barbie-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.btn-barbie-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-barbie-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-datez {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 110px;
  background:
    linear-gradient(180deg, var(--rose-bg) 0%, var(--barbie-pastel) 50%, var(--barbie-soft) 100%);
  overflow: hidden;
}

.hero-datez::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(233, 30, 144, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255, 200, 87, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 126, 179, 0.08) 0%, transparent 40%);
  animation: heroGlow 15s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-title-datez {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--barbie-magenta) 0%, var(--barbie-hot) 40%, var(--barbie-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-datez {
  font-size: 1.15rem;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 520px;
}

.member-counter-datez {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--barbie-pink);
  border: 1px solid rgba(233, 30, 144, 0.15);
}

.countdown-datez {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 30, 144, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--barbie-magenta);
  font-weight: 500;
}

/* Search Form */
.search-form-datez {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(233, 30, 144, 0.12);
  box-shadow: 0 12px 40px rgba(233, 30, 144, 0.08);
}

.search-form-datez select,
.search-form-datez input {
  background: var(--rose-bg);
  border: 1px solid rgba(233, 30, 144, 0.15);
  color: var(--text-dark);
  padding: 0.875rem 1rem;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: var(--transition);
}

.search-form-datez select:focus,
.search-form-datez input:focus {
  border-color: var(--barbie-pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 144, 0.12);
}

.search-form-datez label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 0.4rem;
  display: block;
}

/* ==========================================================================
   Hero Profiles
   ========================================================================== */
.hero-profile-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 3/4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.75);
  transform: scale(1.05);
}

.hero-profile-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-pink);
}

.hero-profile-card .online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.hero-profile-card .hero-profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.hero-profile-card .hero-profile-info .name {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section-title-datez {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-datez h2 {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-title-datez p {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.bg-rose-alt {
  background: linear-gradient(180deg, var(--rose-bg) 0%, var(--barbie-cream) 100%);
}

.bg-barbie-gradient {
  background: linear-gradient(135deg, var(--barbie-pastel) 0%, var(--rose-bg) 50%, var(--barbie-cream) 100%);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stat-item-datez {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-number-datez {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-datez {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Category Cards
   ========================================================================== */
.category-card-datez {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(233, 30, 144, 0.08);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.category-card-datez:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--barbie-light);
}

.category-card-datez .card-icon-datez {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-barbie);
  font-size: 3.5rem;
  color: white;
}

.category-card-datez .card-body-datez {
  padding: 1.5rem;
}

.category-card-datez .card-body-datez h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.category-card-datez .card-body-datez p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.badge-datez {
  display: inline-block;
  background: rgba(233, 30, 144, 0.08);
  color: var(--barbie-pink);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ==========================================================================
   Bento Categories Grid
   ========================================================================== */
.bento-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-cat {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.bento-cat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(233, 30, 144, 0.3);
  color: #fff;
}
.bento-cat--lg {
  grid-column: span 2;
  min-height: 280px;
}
.bento-cat-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e91e90, #ff7eb3);
  z-index: 0;
}
.bento-cat-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 100%);
}
.bento-cat-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}
.bento-cat-trend {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.bento-cat-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.bento-cat--lg .bento-cat-icon {
  font-size: 2.8rem;
}
.bento-cat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
.bento-cat--lg h3 {
  font-size: 1.75rem;
}
.bento-cat p {
  font-size: 0.88rem;
  opacity: 0.88;
  margin-bottom: 16px;
  line-height: 1.45;
  max-width: 400px;
}
.bento-cat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bento-cat-count {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.bento-cat-count .pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
}
.bento-cat-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
}
.bento-cat:hover .bento-cat-arrow {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .bento-categories {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bento-cat--lg {
    grid-column: span 1;
  }
  .bento-cat {
    min-height: 180px;
  }
  .bento-cat--lg {
    min-height: 200px;
  }
  .bento-cat-content {
    padding: 20px;
  }
  .bento-cat h3 {
    font-size: 1.25rem;
  }
  .bento-cat--lg h3 {
    font-size: 1.35rem;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .bento-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-cat--lg {
    grid-column: span 2;
  }
}

/* ==========================================================================
   Woman Ad Cards
   ========================================================================== */
.woman-ad-card-datez {
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid rgba(233, 30, 144, 0.08);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.woman-ad-card-datez:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.woman-ad-card-datez .ad-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(233, 30, 144, 0.06);
}

.woman-ad-card-datez .ad-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--barbie-soft);
}

.woman-ad-card-datez .ad-username {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  color: var(--text-dark);
}

.woman-ad-card-datez .ad-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 2px 0 0 0;
}

.woman-ad-card-datez .ad-body {
  padding: 1.25rem;
}

.woman-ad-card-datez .ad-text {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.woman-ad-card-datez .ad-tag {
  display: inline-block;
  background: var(--barbie-pastel);
  color: var(--barbie-magenta);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 6px;
}

.woman-ad-card-datez .ad-footer {
  padding: 0 1.25rem 1.25rem;
}

/* ==========================================================================
   Profile Cards
   ========================================================================== */
.profile-card-datez {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(233, 30, 144, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.profile-card-datez:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-pink);
}

.profile-card-datez .profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: blur(8px) brightness(0.75);
  transform: scale(1.05);
}

.profile-card-datez .online-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid white;
}

.profile-card-datez .profile-info {
  padding: 0.75rem;
  text-align: center;
}

.profile-card-datez .profile-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}

.profile-card-datez .profile-age {
  color: var(--barbie-pink);
  font-weight: 500;
  font-size: 0.85rem;
}

.profile-card-datez .profile-location {
  color: var(--text-soft);
  font-size: 0.8rem;
  margin: 2px 0 0 0;
}

/* ==========================================================================
   Feature Boxes
   ========================================================================== */
.feature-box-datez {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid rgba(233, 30, 144, 0.08);
  transition: var(--transition);
}

.feature-box-datez:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.feature-box-datez .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: var(--gradient-barbie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
}

.feature-box-datez h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-box-datez p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================================================
   Date Spot Cards
   ========================================================================== */
.date-spot-card-datez {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.75rem;
  border: 1px solid rgba(233, 30, 144, 0.08);
  transition: var(--transition);
  height: 100%;
}

.date-spot-card-datez:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.date-spot-card-datez .date-spot-icon {
  width: 52px;
  height: 52px;
  background: var(--barbie-pastel);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--barbie-pink);
  margin-bottom: 1rem;
}

.date-spot-card-datez h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.date-spot-card-datez p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.date-spot-tag-datez {
  display: inline-block;
  background: var(--barbie-pastel);
  color: var(--barbie-magenta);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.date-spot-cta-card {
  background: var(--gradient-barbie) !important;
  border: none !important;
}

.date-spot-cta-card h4,
.date-spot-cta-card p {
  color: white !important;
}

.date-spot-cta-card .date-spot-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card-datez {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(233, 30, 144, 0.06);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card-datez:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}

.testimonial-stars-datez {
  color: var(--gold-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text-datez {
  color: var(--text-medium);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-name-datez {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.testimonial-location-datez {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ==========================================================================
   Enhanced Testimonials (city badges, avatar placeholders, trust bar)
   ========================================================================== */
.testimonial-card-enhanced {
  position: relative;
  padding-top: 2.5rem;
}

.testimonial-city-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--barbie-pastel);
  color: var(--barbie-magenta);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--barbie-pink);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-trust-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(233, 30, 144, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
}

.trust-item i {
  color: var(--barbie-pink);
  font-size: 1rem;
}

/* ==========================================================================
   Enhanced Date Spots (city labels)
   ========================================================================== */
.date-spot-card-enhanced {
  position: relative;
  padding-top: 2.5rem;
}

.date-spot-city-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-hot);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ==========================================================================
   City Atmosphere Cards
   ========================================================================== */
.city-atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.city-atmo-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: var(--transition);
}

.city-atmo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.city-atmo-helsinki { background: linear-gradient(135deg, #1a1a3e, #2d3a8c, #5f6fd6); }
.city-atmo-tampere { background: linear-gradient(135deg, #1e3a2f, #2e7d6f, #5eb8a0); }
.city-atmo-turku { background: linear-gradient(135deg, #3d1c0f, #8b4513, #d4a06a); }
.city-atmo-oulu { background: linear-gradient(135deg, #0d1b3e, #1a3a6e, #4a9bd9); }
.city-atmo-espoo { background: linear-gradient(135deg, #1a3320, #2e6b3e, #6db87a); }
.city-atmo-jyvaskyla { background: linear-gradient(135deg, #2a1a3d, #5b2d8e, #9b6dc6); }

.city-atmo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

.city-atmo-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.city-atmo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.75rem;
}

.city-atmo-content h3 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.city-atmo-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.city-atmo-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--barbie-soft);
}

@media (max-width: 1024px) {
  .city-atmosphere-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .city-atmosphere-grid {
    grid-template-columns: 1fr;
  }
  .city-atmo-card {
    min-height: 180px;
  }
  .testimonial-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   Activity Feed
   ========================================================================== */
.activity-feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.875rem;
  background: white;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 30, 144, 0.05);
  transition: var(--transition);
}

.activity-feed-item:hover {
  box-shadow: 0 2px 10px rgba(233, 30, 144, 0.08);
}

.activity-feed-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--barbie-soft);
  flex-shrink: 0;
}

.activity-feed-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.activity-feed-icon.type-signup { background: rgba(74, 222, 128, 0.1); color: #22c55e; }
.activity-feed-icon.type-photo { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.activity-feed-icon.type-like { background: rgba(233, 30, 144, 0.1); color: var(--barbie-pink); }
.activity-feed-icon.type-message { background: rgba(255, 200, 87, 0.15); color: #f59e0b; }

.activity-feed-content {
  flex: 1;
  min-width: 0;
}

.activity-feed-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.activity-feed-time {
  font-size: 0.75rem;
  color: var(--text-soft);
  white-space: nowrap;
}

/* Online Widget */
.online-widget-datez {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(233, 30, 144, 0.08);
  text-align: center;
}

.online-widget-count-datez {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.online-widget-label-datez {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.online-widget-grid-datez {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.online-widget-grid-datez img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--barbie-soft);
}

/* ==========================================================================
   Quick Match / Swipe
   ========================================================================== */
.quick-match-stack {
  position: relative;
  width: 100%;
  height: 420px;
  margin: 0 auto;
}

.quick-match-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s, opacity 0.4s;
  cursor: grab;
}

.quick-match-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.75);
  transform: scale(1.05);
}

.quick-match-card .quick-match-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.quick-match-card .quick-match-info h5 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin: 0;
}

.quick-match-card .quick-match-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 2px 0 0 0;
}

.quick-match-card .quick-match-compat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient-hot);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quick-match-card.swipe-left {
  animation: swipeCardLeft 0.4s forwards;
}

.quick-match-card.swipe-right {
  animation: swipeCardRight 0.4s forwards;
}

@keyframes swipeCardLeft {
  to { transform: translateX(-150%) rotate(-15deg); opacity: 0; }
}

@keyframes swipeCardRight {
  to { transform: translateX(150%) rotate(15deg); opacity: 0; }
}

.quick-match-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.quick-match-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-match-btn.btn-skip {
  background: white;
  color: #ef4444;
}

.quick-match-btn.btn-info-qm {
  background: white;
  color: var(--barbie-pink);
}

.quick-match-btn.btn-like {
  background: var(--gradient-hot);
  color: white;
}

.quick-match-btn:hover {
  transform: scale(1.12);
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(233, 30, 144, 0.1);
}

.map-sidebar-datez {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(233, 30, 144, 0.08);
  height: 100%;
}

.map-online-counter-datez {
  text-align: center;
  margin-bottom: 1.25rem;
}

.map-online-number-datez {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-online-label-datez {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.map-hotspot-datez {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(233, 30, 144, 0.05);
  cursor: pointer;
  transition: var(--transition);
}

.map-hotspot-datez:hover {
  color: var(--barbie-pink);
}

.map-hotspot-name-datez {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.map-hotspot-count-datez {
  font-size: 0.8rem;
  color: var(--barbie-pink);
  font-weight: 500;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section-datez {
  background: var(--gradient-barbie);
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.cta-section-datez::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ctaPulse 8s ease-in-out infinite;
}

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

.cta-section-datez h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.cta-section-datez p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-section-datez .btn {
  background: white;
  color: var(--barbie-pink);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.cta-section-datez .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-item-datez {
  background: white;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 30, 144, 0.06);
  overflow: hidden;
}

.faq-btn-datez {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-btn-datez:hover {
  color: var(--barbie-pink);
}

.faq-btn-datez .faq-icon {
  transition: transform 0.3s;
  color: var(--barbie-pink);
}

.faq-btn-datez.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content-datez {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content-datez.open {
  max-height: 300px;
}

.faq-content-datez .faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-datez {
  background: var(--rose-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-datez h5 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-datez ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-datez li {
  margin-bottom: 0.5rem;
}

.footer-datez a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-datez a:hover {
  color: var(--barbie-light);
}

.footer-datez .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-datez .social-links a:hover {
  background: var(--barbie-pink);
  color: white;
}

.footer-bottom-datez {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Pre-lander / Overlay
   ========================================================================== */
.prelander-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 10, 18, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.prelander-container {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 480px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(233, 30, 144, 0.2);
}

.prelander-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-soft);
  cursor: pointer;
  line-height: 1;
}

.prelander-steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.prelander-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--barbie-pastel);
  transition: var(--transition);
}

.prelander-step-dot.active {
  background: var(--barbie-pink);
  transform: scale(1.3);
}

.prelander-step-dot.completed {
  background: var(--barbie-light);
}

.prelander-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.prelander-gender-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.prelander-btn-gender {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: var(--rose-bg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.prelander-btn-gender span {
  font-size: 0.85rem;
}

.prelander-btn-gender:hover,
.prelander-btn-gender.selected {
  border-color: var(--barbie-pink);
  background: var(--barbie-pastel);
}

.prelander-age-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.prelander-btn-age {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: var(--rose-bg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

.prelander-btn-age:hover,
.prelander-btn-age.selected {
  border-color: var(--barbie-pink);
  background: var(--barbie-pastel);
}

.prelander-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--barbie-pastel);
  border-top-color: var(--barbie-pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.prelander-loading-text {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.prelander-loading-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.prelander-results-icon {
  text-align: center;
  font-size: 3rem;
  color: #4ade80;
  margin-bottom: 0.5rem;
}

.prelander-results-count {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.prelander-results-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.prelander-final-cta {
  display: block;
  width: 100%;
  text-align: center;
}

.prelander-results-free {
  text-align: center;
  color: #4ade80;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ==========================================================================
   Exit Intent Popup
   ========================================================================== */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 10, 18, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
}

.exit-popup-container {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(233, 30, 144, 0.2);
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-soft);
  cursor: pointer;
}

.exit-popup-icon {
  font-size: 3rem;
  color: var(--barbie-pink);
  margin-bottom: 0.75rem;
}

.exit-popup-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.exit-popup-sub {
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.exit-popup-dismiss a {
  color: var(--text-soft);
  font-size: 0.85rem;
  text-decoration: underline;
}

/* ==========================================================================
   Social Proof Toast
   ========================================================================== */
.social-proof-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 9000;
  max-width: 340px;
  border: 1px solid rgba(233, 30, 144, 0.08);
  animation: slideInToast 0.4s ease;
}

@keyframes slideInToast {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.social-proof-toast.toast-hide {
  animation: slideOutToast 0.4s ease forwards;
}

@keyframes slideOutToast {
  to { transform: translateX(-100%); opacity: 0; }
}

.social-proof-toast .toast-avatar {
  position: relative;
  flex-shrink: 0;
}

.social-proof-toast .toast-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--barbie-soft);
}

.social-proof-toast .toast-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid white;
}

.social-proof-toast .toast-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0;
}

.social-proof-toast .toast-action {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 2px 0 0 0;
}

.social-proof-toast .toast-close {
  background: none;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 0 0 8px;
}

/* ==========================================================================
   Compat Badge
   ========================================================================== */
.compat-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gradient-hot);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ==========================================================================
   Pulse Dot
   ========================================================================== */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ==========================================================================
   Mega Menu Grid (Full Width)
   ========================================================================== */
.mega-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 10, 18, 0.3);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mega-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mega-menu-grid {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 2px solid rgba(233, 30, 144, 0.1);
  box-shadow: 0 20px 60px rgba(233, 30, 144, 0.1), 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 0 0 2rem;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              visibility 0.35s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.mega-menu-grid.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Mega Header */
.mega-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid rgba(233, 30, 144, 0.06);
  margin-bottom: 1.5rem;
}

.mega-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-title i {
  color: var(--barbie-pink);
}

.mega-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 144, 0.1);
  background: rgba(233, 30, 144, 0.04);
  color: var(--text-medium);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-close:hover {
  background: var(--barbie-pink);
  color: white;
  border-color: var(--barbie-pink);
}

/* 3-Column Grid */
.mega-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.mega-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--barbie-pink);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Category Icon Cards Grid (2x3) */
.mega-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mega-icon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--rose-bg);
  border: 1px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.mega-icon-card:hover {
  background: white;
  border-color: rgba(233, 30, 144, 0.15);
  box-shadow: 0 4px 15px rgba(233, 30, 144, 0.08);
  transform: translateY(-2px);
}

.mega-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.mega-icon-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.mega-icon-count {
  font-size: 0.68rem;
  color: var(--barbie-pink);
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

.mega-icon-label + .mega-icon-count {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  background: rgba(233, 30, 144, 0.06);
  padding: 2px 6px;
  border-radius: 8px;
}

/* City Tags */
.mega-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mega-city-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--rose-bg);
  border: 1px solid rgba(233, 30, 144, 0.08);
  color: var(--text-medium);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.mega-city-tag i {
  font-size: 0.7rem;
  color: var(--barbie-light);
}

.mega-city-tag:hover {
  background: var(--barbie-pink);
  color: white;
  border-color: var(--barbie-pink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 30, 144, 0.2);
}

.mega-city-tag:hover i {
  color: white;
}

.mega-city-hot {
  background: rgba(233, 30, 144, 0.08);
  border-color: rgba(233, 30, 144, 0.2);
  color: var(--barbie-pink);
  font-weight: 600;
}

.mega-city-badge {
  background: var(--barbie-pink);
  color: white;
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: 2px;
}

.mega-city-hot:hover .mega-city-badge {
  background: white;
  color: var(--barbie-pink);
}

.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--barbie-pink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.mega-all-link:hover {
  gap: 10px;
  color: var(--barbie-magenta);
}

/* Promo Card */
.mega-promo-card {
  background: var(--gradient-barbie);
  border-radius: 18px;
  padding: 1.75rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mega-promo-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: promoShine 4s ease-in-out infinite alternate;
}

@keyframes promoShine {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20%, 20%); }
}

.mega-promo-sparkle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
}

.mega-promo-card h5 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.mega-promo-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.mega-promo-profiles {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.mega-promo-profiles img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  margin-left: -8px;
}

.mega-promo-profiles img:first-child {
  margin-left: 0;
}

.mega-promo-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid white;
  margin-left: -8px;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
}

.mega-promo-cta {
  width: 100%;
  justify-content: center;
  background: white !important;
  color: var(--barbie-pink) !important;
  font-weight: 700 !important;
  position: relative;
}

.mega-promo-cta:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Live Stats in Mega Menu */
.mega-live-stats {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.mega-stat {
  flex: 1;
  text-align: center;
  padding: 8px;
  background: var(--rose-bg);
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--text-medium);
}

.mega-stat i {
  color: var(--barbie-pink);
  margin-right: 4px;
}

.mega-stat strong {
  color: var(--text-dark);
}

/* ==========================================================================
   Content Blocks
   ========================================================================== */
.content-block-datez {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(233, 30, 144, 0.06);
  height: 100%;
}

.content-block-datez h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.content-block-datez p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 10, 18, 0.5);
  z-index: 998;
  display: none;
}

.mobile-menu-overlay.show {
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100%;
  background: white;
  z-index: 999;
  padding: 2rem 1.5rem;
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-menu-panel.show {
  right: 0;
}

.mobile-nav-section {
  margin-bottom: 0.5rem;
}

.mobile-nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  padding: 0.75rem 0 0.25rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 0.75rem;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-bottom: 2px;
}

.mobile-nav-item i {
  font-size: 0.9rem;
  color: var(--barbie-light);
  width: 24px;
  text-align: center;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(233, 30, 144, 0.06);
  color: var(--barbie-pink);
}

.mobile-nav-item.active {
  font-weight: 600;
}

.mobile-nav-item.active i {
  color: var(--barbie-pink);
}

.mobile-menu-panel a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 30, 144, 0.06);
  font-size: 1rem;
}

.mobile-menu-panel a:hover {
  color: var(--barbie-pink);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .mega-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .mega-col:last-child {
    grid-column: span 2;
  }

  .mega-promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mega-live-stats {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .topbar-datez {
    font-size: 0.72rem;
    padding: 5px 0;
  }

  .topbar-marquee span:nth-child(n+4) {
    display: none;
  }

  .hero-title-datez {
    font-size: 2.25rem;
  }

  .hero-datez {
    padding-top: 100px;
  }

  .section-title-datez h2 {
    font-size: 1.75rem;
  }

  .quick-match-stack {
    height: 350px;
  }

  .social-proof-toast {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .cta-section-datez h2 {
    font-size: 1.75rem;
  }

  .mega-menu-grid {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-title-datez {
    font-size: 1.75rem;
  }

  .quick-match-stack {
    height: 300px;
  }

  .prelander-container {
    padding: 1.75rem;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Image Blur + 18+ Age Gate Overlay
   ========================================================================== */

/* 18+ Badge - shared base */
.hero-profile-card::after,
.profile-card-datez .position-relative::after,
.quick-match-card::after {
  content: '-18';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(233, 30, 144, 0.88);
  color: white;
  font-family: 'Poppins', 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(233, 30, 144, 0.2);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Ensure position-relative wrapper is actually positioned */
.profile-card-datez .position-relative {
  position: relative;
  overflow: hidden;
}

/* Smaller badge for hero profile cards (smaller images) */
.hero-profile-card::after {
  width: 44px;
  height: 44px;
  font-size: 0.82rem;
  border-width: 2.5px;
}

/* Larger badge for quick match (big card) */
.quick-match-card::after {
  width: 64px;
  height: 64px;
  font-size: 1.15rem;
  border-width: 3.5px;
}

/* Blur woman ad card avatars */
.woman-ad-card-datez .ad-avatar {
  filter: blur(5px) brightness(0.8);
}

/* Blur online widget grid images */
.online-widget-grid img {
  filter: blur(6px) brightness(0.8);
}

/* Blur activity feed avatars */
.activity-feed-avatar {
  filter: blur(4px) brightness(0.8);
}

/* Blur social proof toast avatar */
.toast-avatar img {
  filter: blur(4px) brightness(0.8);
}

/* Responsive adjustments for 18+ badge */
@media (max-width: 768px) {
  .hero-profile-card::after {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
    border-width: 2px;
  }

  .profile-card-datez .position-relative::after {
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
    border-width: 2.5px;
  }

  .quick-match-card::after {
    width: 52px;
    height: 52px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-profile-card::after {
    width: 34px;
    height: 34px;
    font-size: 0.68rem;
    border-width: 2px;
  }

  .profile-card-datez .position-relative::after {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }
}

/* ============================================
   SIDEBAR NAVIGATION LAYOUT
   ============================================ */

.datez-layout {
  display: flex;
  min-height: calc(100vh - 120px);
  max-width: 1440px;
  margin: 0 auto;
}

.datez-sidebar {
  width: 270px;
  min-width: 270px;
  background: linear-gradient(180deg, #fff0f6 0%, #ffffff 40%, #fff5f9 100%);
  border-right: 1px solid rgba(233, 30, 144, 0.1);
  position: sticky;
  top: 86px;
  height: calc(100vh - 86px);
  overflow-y: auto;
  padding: 1.25rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(233, 30, 144, 0.2) transparent;
  z-index: 40;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When navbar scrolled (topbar hidden), reduce top offset */
.navbar-datez.scrolled ~ .datez-layout .datez-sidebar,
body.navbar-scrolled .datez-sidebar {
  top: 58px;
  height: calc(100vh - 58px);
}

.datez-sidebar::-webkit-scrollbar {
  width: 4px;
}
.datez-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.datez-sidebar::-webkit-scrollbar-thumb {
  background: rgba(233, 30, 144, 0.2);
  border-radius: 4px;
}

.datez-main {
  flex: 1;
  min-width: 0;
  overflow-x: hidden;
}

/* Sidebar Sections */
.sidebar-section {
  padding: 0 1rem;
  margin-bottom: 1.25rem;
}

.sidebar-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a0047;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sidebar-section-title i {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Sidebar Links */
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: #4a1a2e;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
  line-height: 1.3;
}

.sidebar-link:hover {
  background: rgba(233, 30, 144, 0.08);
  color: #e91e90;
  transform: translateX(2px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, rgba(233, 30, 144, 0.12), rgba(255, 126, 179, 0.08));
  color: #d6006e;
  font-weight: 600;
}

.sidebar-link i {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
}

.sidebar-link-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sidebar-count {
  font-size: 0.65rem;
  font-weight: 600;
  color: #e91e90;
  background: rgba(233, 30, 144, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Sidebar Divider */
.sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 144, 0.12), transparent);
  margin: 0.75rem 1rem;
}

/* Sidebar CTA */
.sidebar-cta {
  margin: 1rem 1rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #e91e90, #ff7eb3);
  border-radius: 12px;
  text-align: center;
}

.sidebar-cta p {
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sidebar-cta a {
  display: inline-block;
  background: white;
  color: #e91e90;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.sidebar-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Sidebar Toggle Button */
.sidebar-toggle-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 16px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e90, #d6006e);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(233, 30, 144, 0.4);
  z-index: 1050;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
}

.sidebar-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(233, 30, 144, 0.5);
}

/* Mobile Sidebar Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1049;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1023px) {
  .datez-layout {
    display: block;
  }

  .datez-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    z-index: 1050;
    box-shadow: none;
    background: #fff;
  }

  .datez-sidebar.open {
    transform: translateX(0);
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
  }

  .sidebar-toggle-btn {
    display: flex;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .datez-main {
    width: 100%;
  }
}

/* ============================================
   FINLAND INTERACTIVE MAP
   ============================================ */

.finland-map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.map-filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1.5px solid rgba(233, 30, 144, 0.25);
  background: white;
  color: #8a0047;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.map-filter-btn:hover {
  border-color: #e91e90;
  color: #e91e90;
  background: rgba(233, 30, 144, 0.04);
}

.map-filter-btn.active {
  background: linear-gradient(135deg, #e91e90, #ff7eb3);
  color: white;
  border-color: transparent;
}

.finland-map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(233, 30, 144, 0.1);
  border: 1px solid rgba(233, 30, 144, 0.1);
}

.finland-map-container {
  height: 600px;
  width: 100%;
  background: #fdf2f8;
}

.finland-map-stats {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 500;
}

.map-stat-item {
  text-align: center;
}

.map-stat-number {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #e91e90, #d6006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-stat-label {
  font-size: 0.65rem;
  color: #8a0047;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Map Marker Styles */
.finland-marker {
  border-radius: 50%;
  background: radial-gradient(circle, #e91e90 40%, rgba(233, 30, 144, 0.3) 100%);
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(233, 30, 144, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.finland-marker:hover {
  transform: scale(1.3);
  z-index: 1000 !important;
}

.finland-marker.tier-1 {
  background: radial-gradient(circle, #d6006e 30%, rgba(214, 0, 110, 0.4) 100%);
  border: 3px solid white;
  box-shadow: 0 2px 12px rgba(214, 0, 110, 0.5), 0 0 0 3px rgba(214, 0, 110, 0.15);
  animation: marker-pulse 2s infinite;
}

.finland-marker.tier-2 {
  background: radial-gradient(circle, #e91e90 35%, rgba(233, 30, 144, 0.35) 100%);
  border: 2.5px solid white;
  box-shadow: 0 2px 10px rgba(233, 30, 144, 0.4);
}

.finland-marker.tier-3 {
  background: radial-gradient(circle, #ff7eb3 35%, rgba(255, 126, 179, 0.3) 100%);
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(255, 126, 179, 0.3);
}

.finland-marker.tier-4 {
  background: radial-gradient(circle, #ffb6d5 40%, rgba(255, 182, 213, 0.3) 100%);
  border: 1.5px solid white;
  box-shadow: 0 1px 4px rgba(255, 182, 213, 0.3);
}

@keyframes marker-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(214, 0, 110, 0.5), 0 0 0 3px rgba(214, 0, 110, 0.15); }
  50% { box-shadow: 0 2px 12px rgba(214, 0, 110, 0.5), 0 0 0 8px rgba(214, 0, 110, 0.08); }
}

/* Map Popup */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.finland-popup {
  text-align: center;
  padding: 0.25rem;
  min-width: 160px;
}

.finland-popup h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2d0f1e;
  margin: 0 0 0.25rem;
}

.finland-popup .popup-members {
  font-size: 0.78rem;
  color: #e91e90;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.finland-popup .popup-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e91e90, #ff7eb3);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}

.finland-popup .popup-btn:hover {
  transform: scale(1.05);
}

/* Quick City Links under map */
.finland-map-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.map-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(233, 30, 144, 0.15);
  background: white;
  color: #4a1a2e;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.map-quicklink:hover {
  border-color: #e91e90;
  color: #e91e90;
  background: rgba(233, 30, 144, 0.04);
  transform: translateY(-1px);
}

.map-quicklink span {
  color: #e91e90;
  font-weight: 700;
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .finland-map-container {
    height: 400px;
  }

  .finland-map-stats {
    top: 8px;
    right: 8px;
    padding: 0.5rem 0.7rem;
    gap: 0.75rem;
  }

  .map-stat-number {
    font-size: 0.9rem;
  }

  .map-filter-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
}

/* ============================================
   ANNONCES SECTION (Expanded)
   ============================================ */

.annonces-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.annonces-filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  border: 1.5px solid rgba(233, 30, 144, 0.25);
  background: white;
  color: #8a0047;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.annonces-filter-btn:hover {
  border-color: #e91e90;
  color: #e91e90;
}

.annonces-filter-btn.active {
  background: linear-gradient(135deg, #e91e90, #ff7eb3);
  color: white;
  border-color: transparent;
}

.annonces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.annonce-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(233, 30, 144, 0.06);
  border: 1px solid rgba(233, 30, 144, 0.08);
  transition: all 0.3s;
}

.annonce-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(233, 30, 144, 0.12);
}

.annonce-avatar {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.annonce-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.75);
  transform: scale(1.05);
}

.annonce-avatar::after {
  content: '-18';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(233, 30, 144, 0.88);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.annonce-status {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid white;
  z-index: 6;
}

.annonce-status.offline {
  background: #94a3b8;
}

.annonce-body {
  padding: 1rem;
}

.annonce-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.annonce-name {
  font-weight: 700;
  color: #2d0f1e;
  font-size: 0.95rem;
}

.annonce-age {
  font-size: 0.82rem;
  color: #e91e90;
  font-weight: 600;
}

.annonce-location {
  font-size: 0.75rem;
  color: #8a7a80;
  margin-bottom: 0.5rem;
}

.annonce-location i {
  color: #e91e90;
  margin-right: 0.2rem;
}

.annonce-desc {
  font-size: 0.78rem;
  color: #5a4a50;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.annonce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.annonce-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  background: rgba(233, 30, 144, 0.06);
  color: #d6006e;
  font-size: 0.65rem;
  font-weight: 600;
}

.annonce-cta {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91e90, #ff7eb3);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.annonce-cta:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

@media (max-width: 1023px) {
  .annonces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .annonces-grid {
    grid-template-columns: 1fr;
  }

  .annonce-avatar {
    height: 180px;
  }
}

/* ==============================
   CONVERSION QUIZ
   ============================== */
.datez-quiz {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(233,30,144,0.12), 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(233,30,144,0.1);
}

.quiz-progress {
  height: 6px;
  background: #fce4ec;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--gradient-barbie);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-progress-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.quiz-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fce4ec;
  color: #e91e90;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
}

.quiz-step-dot.active {
  background: var(--gradient-barbie);
  color: #fff;
  box-shadow: 0 2px 10px rgba(233,30,144,0.3);
}

.quiz-step-dot.done {
  background: #4caf50;
  color: #fff;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: quizFadeIn 0.35s ease-out;
}

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

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--barbie-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiz-question i {
  color: var(--barbie-500);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid #fce4ec;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--barbie-900);
  transition: all 0.2s;
}

.quiz-option:hover {
  border-color: var(--barbie-500);
  background: #fef0f5;
  transform: translateY(-1px);
}

.quiz-option.selected {
  border-color: var(--barbie-500);
  background: linear-gradient(135deg, #fef0f5, #fce4ec);
  box-shadow: 0 2px 8px rgba(233,30,144,0.15);
}

.quiz-option i {
  font-size: 1.2rem;
  color: var(--barbie-500);
}

/* Quiz Result */
.quiz-result-content {
  text-align: center;
  padding: 10px 0;
}

.quiz-result-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 8px;
}

.quiz-result-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--barbie-900);
  margin-bottom: 4px;
}

.quiz-result-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 16px;
}

.quiz-result-text strong {
  color: var(--barbie-500);
  font-size: 1.3rem;
}

.quiz-result-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.quiz-result-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -10px;
  filter: blur(3px);
}

.quiz-result-avatars img:first-child {
  margin-left: 0;
}

.quiz-result-more {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-barbie);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: -10px;
  border: 3px solid #fff;
}

.quiz-result-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 10px;
}

.quiz-result-note i {
  color: #4caf50;
}

/* ==============================
   PHOTO ANNONCES GALLERY
   ============================== */
.photo-annonces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.photo-annonce-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
}

.photo-annonce-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transition: filter 0.3s, transform 0.3s;
}

.photo-annonce-item:hover img {
  filter: blur(6px);
  transform: scale(1.05);
}

.photo-annonce-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.photo-annonce-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.photo-annonce-tag {
  display: inline-block;
  background: rgba(233,30,144,0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.photo-annonce-city {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
}

.photo-annonce-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4caf50;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.photo-annonce-item::before {
  content: '-18';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(233,30,144,0.85);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .photo-annonces-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .photo-annonces-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .photo-annonces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-annonce-name { font-size: 0.8rem; }
  .photo-annonce-tag { font-size: 0.6rem; }
}

/* ==============================
   NICHE + CITY DIRECTORY
   ============================== */
.niche-city-directory {
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(233,30,144,0.1);
}

.niche-dir-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--barbie-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.niche-dir-title i {
  color: var(--barbie-500);
}

.niche-dir-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(233,30,144,0.08);
}

.niche-dir-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.niche-dir-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--barbie-700);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.niche-dir-label i {
  font-size: 0.85rem;
}

.niche-dir-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.niche-dir-links a {
  display: inline-block;
  padding: 4px 12px;
  background: #fef0f5;
  color: var(--barbie-700);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.niche-dir-links a:hover {
  background: var(--barbie-500);
  color: #fff;
  border-color: var(--barbie-500);
}

.niche-dir-links a.niche-dir-more {
  background: var(--barbie-500);
  color: #fff;
  font-weight: 700;
}

.niche-dir-links a.niche-dir-more:hover {
  background: var(--barbie-700);
}
