/* ==========================================================================
   Seksitreffit Forssa - "Midnight Velvet" Design System
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --primary-color: #c2185b;
  --primary-dark: #ad1457;
  --primary-light: #e91e8f;
  --secondary-color: #d4a574;
  --accent-color: #f48fb1;
  --dark-bg: #121212;
  --darker-bg: #1e1e1e;
  --card-bg: #181818;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --gradient-primary: linear-gradient(135deg, #c2185b 0%, #d4a574 100%);
  --gradient-dark: linear-gradient(180deg, #121212 0%, #1e1e1e 100%);
  --shadow-soft: 0 4px 20px rgba(194, 24, 91, 0.15);
  --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-neon: 0 0 15px rgba(194, 24, 91, 0.3), 0 0 30px rgba(194, 24, 91, 0.1);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  color: var(--accent-color);
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  background: rgba(18, 18, 18, 0.97) !important;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(194, 24, 91, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.navbar-brand span {
  color: var(--secondary-color);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 10px;
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(194, 24, 91, 0.1);
  color: var(--primary-color) !important;
}

.dropdown-menu {
  background: var(--darker-bg);
  border: 1px solid rgba(194, 24, 91, 0.15);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(194, 24, 91, 0.15);
  color: var(--accent-color);
}

.btn-cta {
  background: transparent;
  border: 2px solid var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-cta:hover::before,
.btn-cta:focus::before {
  width: 100%;
}

.btn-cta:hover {
  border-color: var(--primary-light);
  color: white;
  box-shadow: var(--shadow-neon);
  transform: scale(1.02);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 75vh;
  background: var(--dark-bg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(194, 24, 91, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(244, 143, 177, 0.06) 0%, transparent 50%);
  animation: meshShift 25s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% {
    background:
      radial-gradient(ellipse at 20% 50%, rgba(194, 24, 91, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 60% 80%, rgba(244, 143, 177, 0.06) 0%, transparent 50%);
  }
  100% {
    background:
      radial-gradient(ellipse at 40% 30%, rgba(194, 24, 91, 0.10) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 70%, rgba(212, 165, 116, 0.10) 0%, transparent 50%),
      radial-gradient(ellipse at 30% 60%, rgba(244, 143, 177, 0.08) 0%, transparent 50%);
  }
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(194, 24, 91, 0.02) 80px,
    rgba(194, 24, 91, 0.02) 81px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.search-form {
  background: rgba(24, 24, 24, 0.9);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(194, 24, 91, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.search-form .form-control,
.search-form .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  padding: 1rem;
  border-radius: 12px;
}

.search-form .form-control::placeholder {
  color: var(--text-muted);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.2);
}

.search-form .form-select option {
  background: var(--darker-bg);
  color: var(--text-light);
  padding: 0.75rem;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Category Cards
   ========================================================================== */
.category-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
  height: 100%;
}

.category-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
  border-color: var(--primary-color);
}

.category-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.category-card .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover .card-img-top {
  transform: scale(1.08);
}

.category-card .card-img-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
}

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

.category-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.category-card .card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.category-card .badge {
  background: var(--gradient-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 500;
}

/* ==========================================================================
   Profile Cards
   ========================================================================== */
.profile-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
  height: 100%;
}

.profile-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-neon);
  border-color: var(--primary-color);
}

.profile-card .profile-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.profile-card:hover .profile-img {
  transform: scale(1.05);
}

.profile-card .position-relative {
  overflow: hidden;
}

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

.profile-card .profile-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
  color: var(--text-light);
}

.profile-card .profile-age {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.profile-card .profile-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.profile-card .profile-location i {
  color: var(--primary-color);
  margin-right: 0.25rem;
}

.profile-card .online-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 12px;
  height: 12px;
  background: #4caf50;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@media (max-width: 991.98px) {
  .profile-card .profile-img {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .profile-card .profile-img {
    height: 150px;
  }

  .profile-card .profile-info {
    padding: 0.75rem;
  }

  .profile-card .profile-name {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  margin-bottom: 0.5rem;
}

.sidebar-widget ul li a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.sidebar-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.sidebar-widget ul li a i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb-section {
  background: var(--darker-bg);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.breadcrumb {
  margin: 0;
  background: transparent;
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section .accordion-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
}

.faq-section .accordion-button {
  background: var(--card-bg);
  color: var(--text-light);
  font-weight: 600;
  padding: 1.25rem;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: rgba(194, 24, 91, 0.08);
  color: var(--primary-color);
}

.faq-section .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
  background: var(--card-bg);
  color: var(--text-muted);
  padding: 1.25rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: var(--gradient-primary);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .btn {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.cta-section .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   See Also Section
   ========================================================================== */
.see-also-section {
  background: var(--darker-bg);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

.see-also-section h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.see-also-section .related-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.see-also-section .related-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 12px;
  transition: var(--transition);
}

.see-also-section .related-link:hover {
  background: rgba(194, 24, 91, 0.08);
  transform: translateX(5px);
}

.see-also-section .related-link i {
  margin-right: 0.75rem;
  color: var(--primary-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--darker-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-widget h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

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

.footer-widget ul li {
  margin-bottom: 0.75rem;
}

.footer-widget ul li a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  color: var(--text-muted);
  margin: 0 0.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   Content Area
   ========================================================================== */
.content-area {
  padding: 3rem 0;
}

.content-area h1 {
  margin-bottom: 1.5rem;
}

.content-area p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-area h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-area ul,
.content-area ol {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-area li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Statistics
   ========================================================================== */
.stats-section {
  padding: 3rem 0;
  background: var(--darker-bg);
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Features
   ========================================================================== */
.feature-box {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-box:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
  border-color: var(--primary-color);
}

.feature-box .icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-box h4 {
  margin-bottom: 1rem;
}

.feature-box p {
  font-size: 0.95rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .sidebar {
    margin-top: 3rem;
    position: relative;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .search-form {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.fade-in-up {
  animation: revealUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-dark-custom {
  background: var(--dark-bg);
}

.bg-darker {
  background: var(--darker-bg);
}

/* ==========================================================================
   Hero Profiles Module
   ========================================================================== */
.hero-profiles {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  background: rgba(24, 24, 24, 0.85);
  border-radius: var(--border-radius);
  border: 1px solid rgba(194, 24, 91, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-profile-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.hero-profile-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(194, 24, 91, 0.4);
}

.hero-profile-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-profile-card .online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

.hero-profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  border-radius: 0 0 12px 12px;
}

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

@media (max-width: 767.98px) {
  .hero-profile-card img {
    height: 100px;
  }

  .hero-profile-info .name {
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   Women Ads Section
   ========================================================================== */
.women-ads-section {
  background: var(--dark-bg);
}

.woman-ad-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.woman-ad-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
  border-color: var(--primary-color);
}

.ad-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(194, 24, 91, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ad-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  margin-right: 1rem;
}

.ad-user-info {
  flex: 1;
}

.ad-username {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--text-light);
}

.ad-username .badge {
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
}

.ad-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.ad-meta i {
  color: var(--primary-color);
  margin-right: 0.25rem;
}

.ad-body {
  padding: 1rem;
  flex: 1;
}

.ad-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ad-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ad-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(194, 24, 91, 0.1);
  color: var(--accent-color);
  border-radius: 50px;
  border: 1px solid rgba(194, 24, 91, 0.2);
}

.ad-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   Profile Page Styles
   ========================================================================== */
.profile-page-section {
  padding: 3rem 0;
}

.profile-main-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.profile-image-container {
  position: relative;
  overflow: hidden;
}

.profile-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: blur(15px);
  transition: var(--transition);
}

.profile-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.profile-image-overlay i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.profile-image-overlay h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.profile-image-overlay p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.profile-details {
  padding: 2rem;
}

.profile-name-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.profile-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-meta-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.profile-meta-item i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.profile-description {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.profile-description h5 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.profile-description p {
  font-size: 1rem;
  line-height: 1.8;
}

.profile-tags-section {
  margin-bottom: 1.5rem;
}

.profile-tags-section h5 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-tag {
  padding: 0.5rem 1rem;
  background: rgba(194, 24, 91, 0.1);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid rgba(194, 24, 91, 0.2);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.profile-actions .btn {
  flex: 1;
  min-width: 150px;
  padding: 1rem;
  font-weight: 600;
}

.online-status {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #4caf50;
}

.online-status .dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.offline-status {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(158, 158, 158, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #9e9e9e;
}

.offline-status .dot {
  width: 8px;
  height: 8px;
  background: #9e9e9e;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.similar-profiles-section {
  margin-top: 2rem;
}

.similar-profiles-section h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .profile-main-image {
    height: 300px;
  }

  .profile-details {
    padding: 1.5rem;
  }

  .profile-name-title {
    font-size: 1.5rem;
  }

  .profile-actions .btn {
    min-width: 100%;
  }
}

/* ==========================================================================
   Enhanced Hero CTA Button
   ========================================================================== */
.btn-cta-hero {
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  animation: neonPulse 2.5s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(194, 24, 91, 0.3);
  border: 2px solid var(--primary-color);
  background: var(--gradient-primary);
}

.btn-cta-hero::before {
  width: 100%;
}

.btn-cta-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(194, 24, 91, 0.5);
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(194, 24, 91, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(194, 24, 91, 0.6), 0 0 40px rgba(194, 24, 91, 0.2); }
}

@media (max-width: 767.98px) {
  .btn-cta-hero {
    width: 100%;
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
  }
}

/* ==========================================================================
   Member Counter
   ========================================================================== */
.member-counter {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.member-counter strong {
  color: var(--primary-color);
  margin: 0 0.25rem;
  font-size: 1.1rem;
}

.member-counter i {
  color: var(--primary-color);
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */
.countdown-timer {
  display: inline-flex;
  align-items: center;
  background: rgba(194, 24, 91, 0.1);
  border: 1px solid rgba(194, 24, 91, 0.25);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--accent-color);
  font-weight: 500;
  animation: timerGlow 2s ease-in-out infinite alternate;
}

.countdown-time {
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  min-width: 50px;
  text-align: center;
}

@keyframes timerGlow {
  from { border-color: rgba(194, 24, 91, 0.25); }
  to { border-color: rgba(194, 24, 91, 0.5); }
}

@media (max-width: 767.98px) {
  .countdown-timer {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
  .countdown-time {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Pre-lander Interactive Funnel
   ========================================================================== */
.prelander-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: prelanderFadeIn 0.3s ease;
}

@keyframes prelanderFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.prelander-container {
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.prelander-close {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  z-index: 10;
}

.prelander-close:hover {
  color: var(--text-light);
}

.prelander-steps {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.prelander-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.prelander-step-dot.active {
  background: var(--primary-color);
  box-shadow: 0 0 10px rgba(194, 24, 91, 0.5);
}

.prelander-step-dot.completed {
  background: var(--accent-color);
}

.prelander-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.prelander-gender-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.prelander-btn-gender {
  background: var(--card-bg);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 1.25rem 1.5rem;
  min-width: 120px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.prelander-btn-gender i {
  font-size: 2rem;
  color: var(--accent-color);
}

.prelander-btn-gender:hover {
  border-color: var(--primary-color);
  background: rgba(194, 24, 91, 0.08);
  transform: translateY(-3px);
}

.prelander-btn-gender.selected {
  border-color: var(--primary-color);
  background: rgba(194, 24, 91, 0.15);
  box-shadow: var(--shadow-neon);
}

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

.prelander-btn-age {
  background: var(--card-bg);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 1.25rem 2rem;
  min-width: 100px;
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.prelander-btn-age:hover {
  border-color: var(--primary-color);
  background: rgba(194, 24, 91, 0.08);
  transform: translateY(-3px);
}

.prelander-btn-age.selected {
  border-color: var(--primary-color);
  background: rgba(194, 24, 91, 0.15);
  box-shadow: var(--shadow-neon);
}

.prelander-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: prelanderSpin 1s linear infinite;
}

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

.prelander-loading-text {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.prelander-loading-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.prelander-results-icon {
  margin-bottom: 1.5rem;
}

.prelander-results-icon i {
  font-size: 4rem;
  color: #4caf50;
  animation: prelanderBounce 0.6s ease;
}

@keyframes prelanderBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.prelander-results-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.prelander-results-count span {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.prelander-results-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.prelander-final-cta {
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  display: inline-block;
  animation: neonPulse 2s ease-in-out infinite;
}

.prelander-results-free {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.prelander-results-free i {
  color: #4caf50;
}

@media (max-width: 575.98px) {
  .prelander-title {
    font-size: 1.35rem;
  }
  .prelander-btn-gender {
    min-width: 90px;
    padding: 1rem;
  }
  .prelander-btn-gender i {
    font-size: 1.5rem;
  }
  .prelander-btn-age {
    min-width: 80px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
  .prelander-results-count {
    font-size: 1.5rem;
  }
  .prelander-results-count span {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Exit Intent Popup
   ========================================================================== */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.88);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: prelanderFadeIn 0.3s ease;
}

.exit-popup-container {
  background: var(--card-bg);
  border: 1px solid rgba(194, 24, 91, 0.2);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-neon);
  animation: exitPopupBounce 0.5s ease;
}

@keyframes exitPopupBounce {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

.exit-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.exit-popup-close:hover {
  color: var(--text-light);
}

.exit-popup-icon {
  margin-bottom: 1rem;
}

.exit-popup-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.exit-popup-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.exit-popup-sub {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.exit-popup-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
}

.exit-popup-dismiss {
  margin-top: 1rem;
  margin-bottom: 0;
}

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

.exit-popup-dismiss a:hover {
  color: var(--text-light);
}

/* ==========================================================================
   Social Proof: Toast Notifications
   ========================================================================== */
.social-proof-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: 320px;
  animation: toastSlideIn 0.5s ease;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(-100%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

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

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

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

.toast-avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.toast-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
}

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

.toast-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-action {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.15rem 0 0;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.toast-close:hover {
  color: var(--text-light);
}

@media (max-width: 575.98px) {
  .social-proof-toast {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(194, 24, 91, 0.3);
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
}

.testimonial-stars {
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-right: 0.1rem;
}

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

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-location {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.testimonial-location i {
  color: var(--primary-color);
  margin-right: 0.25rem;
}

/* ==========================================================================
   Date Spots Section
   ========================================================================== */
.date-spot-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.date-spot-card:hover {
  border-color: rgba(194, 24, 91, 0.3);
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
}

.date-spot-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: white;
}

.date-spot-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.date-spot-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.date-spot-tag {
  font-size: 0.8rem;
  color: var(--accent-color);
}

.date-spot-tag i {
  color: var(--primary-color);
  margin-right: 0.25rem;
}

.date-spot-cta-card {
  background: rgba(194, 24, 91, 0.04);
  border-color: rgba(194, 24, 91, 0.15);
}

/* ==========================================================================
   Mega Menu
   ========================================================================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--darker-bg);
  border-top: 2px solid var(--primary-color);
  border-bottom: 1px solid rgba(194, 24, 91, 0.15);
  padding: 2rem 0;
  display: none;
  z-index: 1050;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.mega-menu.show {
  display: block;
  animation: megaMenuReveal 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes megaMenuReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu-col h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.mega-menu-col a {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: var(--transition);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.mega-menu-col a:hover {
  background: rgba(194, 24, 91, 0.08);
  color: var(--primary-color);
}

.mega-menu-col a i {
  margin-right: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.mega-menu-promo {
  background: rgba(194, 24, 91, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(194, 24, 91, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-menu-promo h5 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.mega-menu-promo p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.navbar-online-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}

.navbar-online-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 0.35rem;
  animation: pulse 2s infinite;
}

@media (max-width: 991.98px) {
  .mega-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .mega-menu.show {
    animation: none;
  }

  .mega-menu-col {
    margin-bottom: 1rem;
  }

  .mega-menu-promo {
    display: none;
  }
}

/* ==========================================================================
   Quick Match (Pikatreffit)
   ========================================================================== */
.quick-match-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.quick-match-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(194, 24, 91, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quick-match-stack {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 420px;
  margin: 0 auto;
}

.quick-match-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  cursor: grab;
  user-select: none;
}

.quick-match-card:active {
  cursor: grabbing;
}

.quick-match-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.quick-match-info {
  padding: 1rem 1.25rem;
}

.quick-match-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.quick-match-info p {
  font-size: 0.85rem;
  margin: 0;
}

.quick-match-compat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(194, 24, 91, 0.85);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

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

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

@keyframes swipeRight {
  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: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--card-bg);
}

.quick-match-btn.btn-skip {
  border-color: #ef5350;
  color: #ef5350;
}

.quick-match-btn.btn-skip:hover {
  background: #ef5350;
  color: white;
  box-shadow: 0 0 20px rgba(239, 83, 80, 0.3);
}

.quick-match-btn.btn-info-qm {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.quick-match-btn.btn-info-qm:hover {
  background: var(--secondary-color);
  color: white;
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.quick-match-btn.btn-like {
  border-color: #4caf50;
  color: #4caf50;
}

.quick-match-btn.btn-like:hover {
  background: #4caf50;
  color: white;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

@media (max-width: 575.98px) {
  .quick-match-stack {
    max-width: 300px;
    height: 380px;
  }

  .quick-match-card img {
    height: 260px;
  }
}

/* ==========================================================================
   Activity Feed (Tuore Toiminta)
   ========================================================================== */
.activity-feed-section {
  background: var(--darker-bg);
}

.activity-feed-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  animation: feedSlideIn 0.4s ease;
}

@keyframes feedSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.activity-feed-item:hover {
  border-color: rgba(194, 24, 91, 0.15);
}

.activity-feed-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

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

.activity-feed-content strong {
  color: var(--text-light);
}

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

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

.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(76, 175, 80, 0.15);
  color: #4caf50;
}

.activity-feed-icon.type-photo {
  background: rgba(33, 150, 243, 0.15);
  color: #2196f3;
}

.activity-feed-icon.type-like {
  background: rgba(194, 24, 91, 0.15);
  color: var(--primary-color);
}

.activity-feed-icon.type-message {
  background: rgba(212, 165, 116, 0.15);
  color: var(--secondary-color);
}

/* Online Now Widget */
.online-widget {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: sticky;
  top: 100px;
  text-align: center;
}

.online-widget-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #4caf50;
  line-height: 1;
  margin-bottom: 0.25rem;
}

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

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

.online-widget-grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid transparent;
  transition: var(--transition);
}

.online-widget-grid img:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* ==========================================================================
   Interactive Map (Forssa Kartta)
   ========================================================================== */
.map-section {
  background: var(--dark-bg);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 400px;
}

.map-container .leaflet-tile-pane {
  filter: brightness(0.6) contrast(1.2) saturate(0.3);
}

.map-sidebar {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  height: 100%;
}

.map-sidebar h4 {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.map-hotspot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.map-hotspot:hover {
  background: rgba(194, 24, 91, 0.08);
  border-color: rgba(194, 24, 91, 0.15);
}

.map-hotspot-name {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.9rem;
}

.map-hotspot-count {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

.map-online-counter {
  text-align: center;
  padding: 1.25rem;
  background: rgba(76, 175, 80, 0.08);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.map-online-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4caf50;
  line-height: 1;
}

.map-online-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 991.98px) {
  .map-container {
    height: 300px;
    margin-bottom: 1.5rem;
  }
}

/* ==========================================================================
   Compatibility Badges
   ========================================================================== */
.compat-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(194, 24, 91, 0.85);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Live Online Counter (Navbar)
   ========================================================================== */
.live-counter {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: #4caf50;
  font-weight: 500;
  margin-left: 0.5rem;
}

.live-counter .dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 0.35rem;
  animation: pulse 2s infinite;
}

/* ==========================================================================
   Visual Quiz Modal
   ========================================================================== */
.quiz-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: prelanderFadeIn 0.3s ease;
}

.quiz-container {
  max-width: 560px;
  width: 92%;
  text-align: center;
  position: relative;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

.quiz-close {
  position: absolute;
  top: -0.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  z-index: 10;
}

.quiz-close:hover {
  color: var(--text-light);
}

.quiz-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

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

.quiz-step-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.quiz-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.quiz-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 440px;
  margin: 0 auto;
}

.quiz-card {
  background: var(--card-bg);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-light);
  min-height: 120px;
  justify-content: center;
}

.quiz-card:hover {
  border-color: var(--primary-color);
  background: rgba(194, 24, 91, 0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.quiz-card:active {
  transform: translateY(-2px) scale(0.98);
}

.quiz-card.selected {
  border-color: var(--primary-color);
  background: rgba(194, 24, 91, 0.15);
  box-shadow: var(--shadow-neon);
  transform: scale(1.02);
}

.quiz-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: var(--transition);
}

.quiz-card:hover .quiz-card-icon {
  transform: scale(1.1);
}

.quiz-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-light);
}

.quiz-loading {
  padding: 2rem 0;
}

.quiz-loading-text {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.quiz-loading-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quiz-result {
  padding: 1rem 0;
}

.quiz-result-icon {
  margin-bottom: 1rem;
}

.quiz-result-icon i {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prelanderBounce 0.6s ease;
}

.quiz-result-type {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.quiz-result-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-result-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.75rem;
}

.quiz-result-stat {
  text-align: center;
}

.quiz-result-stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.quiz-result-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.quiz-final-cta {
  font-size: 1.15rem;
  padding: 0.9rem 2.25rem;
  display: inline-block;
  animation: neonPulse 2s ease-in-out infinite;
}

.quiz-result-free {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

/* Floating quiz trigger button */
.quiz-floating-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 8000;
  box-shadow: 0 4px 20px rgba(194, 24, 91, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.quiz-floating-btn.quiz-floating-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: quizBtnPulse 3s ease-in-out infinite;
}

.quiz-floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(194, 24, 91, 0.5);
}

.quiz-floating-btn i {
  font-size: 1.2rem;
}

@keyframes quizBtnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(194, 24, 91, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(194, 24, 91, 0.7), 0 0 50px rgba(194, 24, 91, 0.2); }
}

/* ==========================================================================
   Mobile Optimization - Touch Targets & Responsiveness
   ========================================================================== */

/* Minimum touch targets (44px) for all interactive elements */
.btn,
.btn-cta,
.btn-outline-light,
.nav-link,
.dropdown-item {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-control,
.form-select {
  min-height: 48px;
}

/* ==========================================================================
   Tablet Breakpoint (768px - 991.98px)
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }

  .online-widget {
    position: relative;
    top: 0;
    margin-top: 1.5rem;
  }

  .map-sidebar {
    height: auto;
  }
}

/* ==========================================================================
   Mobile Breakpoint (max-width: 767.98px)
   ========================================================================== */
@media (max-width: 767.98px) {
  /* Hero adjustments */
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    margin-top: 1.5rem;
  }

  /* Activity Feed mobile */
  .activity-feed-item {
    padding: 0.75rem;
    gap: 0.6rem;
  }

  .activity-feed-avatar {
    width: 38px;
    height: 38px;
  }

  .activity-feed-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .activity-feed-content p {
    font-size: 0.8rem;
  }

  .activity-feed-time {
    font-size: 0.7rem;
  }

  /* Online widget */
  .online-widget-count {
    font-size: 2.5rem;
  }

  .online-widget-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Map mobile */
  .map-container {
    height: 250px;
    margin-bottom: 1rem;
  }

  .map-sidebar {
    padding: 1rem;
  }

  .map-online-number {
    font-size: 2rem;
  }

  .map-hotspot {
    padding: 0.6rem;
  }

  .map-hotspot-name {
    font-size: 0.85rem;
  }

  /* Section title */
  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title p {
    font-size: 0.95rem;
  }

  /* Quick Match */
  .quick-match-stack {
    max-width: 100%;
    height: 400px;
  }

  .quick-match-card img {
    height: 280px;
  }

  .quick-match-actions {
    gap: 1.25rem;
  }
}

/* ==========================================================================
   Small Phone Breakpoint (max-width: 575.98px)
   ========================================================================== */
@media (max-width: 575.98px) {
  /* Typography */
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

  .section-title p {
    font-size: 0.9rem;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .search-form {
    padding: 1rem;
  }

  .search-form .form-control,
  .search-form .form-select {
    padding: 0.75rem;
  }

  /* Quick Match small phone */
  .quick-match-stack {
    max-width: 100%;
    height: 370px;
  }

  .quick-match-card img {
    height: 250px;
  }

  .quick-match-info {
    padding: 0.75rem 1rem;
  }

  .quick-match-info h5 {
    font-size: 1rem;
  }

  .quick-match-actions {
    gap: 1rem;
  }

  .quick-match-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  /* Activity Feed */
  .activity-feed-avatar {
    width: 36px;
    height: 36px;
  }

  .activity-feed-icon {
    display: none;
  }

  /* Map */
  .map-container {
    height: 220px;
  }

  .map-online-counter {
    padding: 0.75rem;
  }

  .map-online-number {
    font-size: 1.75rem;
  }

  /* Compat Badge */
  .compat-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    bottom: 0.3rem;
    left: 0.3rem;
  }

  /* Cards */
  .category-card .card-body {
    padding: 1rem;
  }

  .category-card .card-title {
    font-size: 1.1rem;
  }

  /* Mega Menu */
  .mega-menu-col a {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }

  /* Feature boxes */
  .feature-box {
    padding: 1.5rem;
  }

  .feature-box .icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    border-radius: 16px;
  }

  /* Date spots */
  .date-spot-card {
    padding: 1.25rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem;
  }

  /* Woman ads */
  .ad-avatar {
    width: 50px;
    height: 50px;
  }

  .ad-header {
    padding: 0.75rem;
  }

  .ad-body {
    padding: 0.75rem;
  }

  .ad-text {
    font-size: 0.85rem;
  }

  /* Stats */
  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-item {
    padding: 1rem;
  }

  /* Prelander mobile */
  .prelander-container {
    padding: 1.5rem;
  }

  /* Footer */
  .footer-widget h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

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

  .footer-widget ul li a {
    font-size: 0.9rem;
  }

  /* Quiz modal mobile */
  .quiz-container {
    padding: 1.25rem;
    width: 95%;
  }

  .quiz-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .quiz-cards-grid {
    gap: 0.75rem;
  }

  .quiz-card {
    padding: 1rem 0.75rem;
    min-height: 100px;
    border-radius: 12px;
  }

  .quiz-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    border-radius: 12px;
  }

  .quiz-card-label {
    font-size: 0.8rem;
  }

  .quiz-result-type {
    font-size: 1.35rem;
  }

  .quiz-result-stat-value {
    font-size: 1.75rem;
  }

  .quiz-result-stats {
    gap: 1.5rem;
  }

  .quiz-floating-btn {
    bottom: 4rem;
    right: 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Very Small Phone (max-width: 359.98px)
   ========================================================================== */
@media (max-width: 359.98px) {
  .hero-title {
    font-size: 1.3rem;
  }

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

  .quick-match-card img {
    height: 220px;
  }

  .btn-cta-hero {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .countdown-timer {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Quiz very small phone */
  .quiz-title {
    font-size: 1.1rem;
  }

  .quiz-card {
    padding: 0.75rem;
    min-height: 90px;
  }

  .quiz-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .quiz-card-label {
    font-size: 0.75rem;
  }
}
