/* ============================================================
   BOOK A DATE — Premium Design System
   A crystal-clean, elite dating & hangout platform
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Primary Palette — derived from logo */
  --primary: #C2185B;
  --primary-light: #E91E63;
  --primary-lighter: #F06292;
  --primary-dark: #880E4F;
  --primary-glow: rgba(194, 24, 91, 0.35);
  --primary-gradient: linear-gradient(135deg, #C2185B 0%, #E91E63 50%, #F06292 100%);
  --primary-gradient-hover: linear-gradient(135deg, #E91E63 0%, #F06292 50%, #F8BBD0 100%);

  /* Dark Palette */
  --dark: #0A0A0F;
  --dark-100: #0D0D14;
  --dark-200: #12121C;
  --dark-300: #1A1A2E;
  --dark-400: #16213E;
  --dark-500: #1E2A4A;
  --dark-600: #2A2A3E;
  --dark-700: #3A3A50;

  /* Neutral */
  --neutral-100: #F5F5F7;
  --neutral-200: #E8E8ED;
  --neutral-300: #B0B0C0;
  --neutral-400: #8888A0;
  --neutral-500: #6E6E85;
  --neutral-600: #4A4A5E;

  /* Accent Colors */
  --accent-gold: #FFD700;
  --accent-green: #00E676;
  --accent-blue: #2979FF;
  --accent-orange: #FF9100;
  --accent-red: #FF1744;
  --accent-purple: #7C4DFF;

  /* Functional */
  --white: #FFFFFF;
  --text-primary: #F0F0F5;
  --text-secondary: #B0B0C0;
  --text-muted: #6E6E85;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  /* Surfaces */
  --surface-glass: rgba(26, 26, 46, 0.6);
  --surface-card: rgba(18, 18, 28, 0.85);
  --surface-elevated: rgba(30, 30, 50, 0.9);
  --surface-input: rgba(255, 255, 255, 0.05);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(194, 24, 91, 0.2);
  --shadow-glow-strong: 0 0 50px rgba(194, 24, 91, 0.35);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 900;
  --z-modal: 1000;
  --z-tooltip: 1100;
  --z-nav: 500;
}

/* ===== CSS RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Background ambient glow */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(194, 24, 91, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(41, 121, 255, 0.04) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--primary-lighter);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-200);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-600);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-light);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-weight: 400;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-sm {
  max-width: 720px;
}

.container-lg {
  max-width: 1400px;
}

section {
  padding: var(--space-4xl) 0;
}

.page-section {
  padding-top: 120px;
  min-height: 100vh;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  z-index: 10;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  padding: var(--space-sm) var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle i.fa-chevron-down {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--dark-300);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  z-index: var(--z-dropdown);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown-menu a i {
  width: 16px;
  color: var(--primary-light);
  font-size: 0.85rem;
}

/* Nav Auth */
.nav-auth {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: var(--space-md);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
  background: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-fast);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(194, 24, 91, 0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background: var(--surface-glass);
  color: var(--white);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-full);
}

.btn-icon.btn-sm {
  width: 34px;
  height: 34px;
}

/* ===== CARDS ===== */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-glass {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.card-body {
  padding: var(--space-lg);
}

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

/* ===== PROFILE CARDS ===== */
.profile-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(194, 24, 91, 0.3);
}

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

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

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

.profile-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.profile-card-body {
  padding: var(--space-lg);
}

.profile-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.profile-card-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.profile-card-meta i {
  color: var(--primary-light);
  font-size: 0.75rem;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--accent-green);
}

.online-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.profile-card-actions {
  display: flex;
  gap: var(--space-sm);
  padding: 0 var(--space-lg) var(--space-lg);
}

.profile-card-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 var(--space-lg) var(--space-lg);
}

/* ===== AVATAR ===== */
.avatar {
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.avatar-xs { width: 28px; height: 28px; }
.avatar-sm { width: 36px; height: 36px; }
.avatar-md { width: 48px; height: 48px; }
.avatar-lg { width: 64px; height: 64px; }
.avatar-xl { width: 96px; height: 96px; }
.avatar-2xl { width: 128px; height: 128px; }

.avatar-online {
  position: relative;
}

.avatar-online::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border: 2px solid var(--dark);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
}

.avatar-group {
  display: flex;
}

.avatar-group .avatar {
  margin-left: -10px;
  border: 2px solid var(--dark-300);
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

/* ===== BADGES & TAGS ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
}

.badge-primary {
  background: rgba(194, 24, 91, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(194, 24, 91, 0.25);
}

.badge-success {
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.badge-warning {
  background: rgba(255, 145, 0, 0.12);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 145, 0, 0.2);
}

.badge-info {
  background: rgba(41, 121, 255, 0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(41, 121, 255, 0.2);
}

.badge-danger {
  background: rgba(255, 23, 68, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(255, 23, 68, 0.2);
}

.badge-gold {
  background: rgba(255, 215, 0, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.tag:hover {
  background: rgba(194, 24, 91, 0.1);
  color: var(--primary-light);
  border-color: rgba(194, 24, 91, 0.3);
}

.tag-active {
  background: rgba(194, 24, 91, 0.15);
  color: var(--primary-light);
  border-color: rgba(194, 24, 91, 0.3);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: var(--neutral-500);
}

.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23B0B0C0'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: all var(--transition-fast);
}

.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 4px;
}

/* Toggle Switch */
.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-color);
}

.toggle-info h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.toggle-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--dark-600);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition-base);
}

.toggle input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Search bar */
.search-bar {
  position: relative;
  max-width: 400px;
}

.search-bar input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.search-bar input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
}

.search-bar i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  font-size: 0.9rem;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: var(--space-xs);
  padding: 4px;
  background: var(--surface-input);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(194, 24, 91, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* ===== MODAL ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--dark-300);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 1.3rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.modal-close:hover {
  background: rgba(255, 23, 68, 0.15);
  color: var(--accent-red);
}

.modal-body {
  padding: var(--space-xl);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-color);
}

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

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.4) 50%, rgba(136, 14, 79, 0.3) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--space-xl);
  max-width: 1240px;
  margin: 0 auto;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  max-width: 700px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  color: var(--neutral-200);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-slider-dot.active {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: scale(1.2);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-bounce 2s ease infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--surface-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  font-size: 1.8rem;
  color: var(--primary-light);
  transition: all var(--transition-base);
}

.step-card:hover .step-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: -10px;
  right: calc(50% - 50px);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-card h4 {
  font-family: var(--font-body);
  margin-bottom: var(--space-sm);
}

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

/* ===== FEATURED PROFILES CAROUSEL ===== */
.profiles-carousel {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  padding: var(--space-md) var(--space-sm);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.profiles-carousel::-webkit-scrollbar {
  display: none;
}

.profiles-carousel .profile-card {
  min-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

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

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: var(--primary-gradient);
  border-radius: var(--radius-2xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-card h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

.cta-card .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-card .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== BROWSE PAGE ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-bar .form-select,
.filter-bar .form-input {
  flex: 1;
  min-width: 150px;
  padding: 12px 16px;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--space-xl);
}

.profile-card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
}

.profile-card-like {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.profile-card-like:hover,
.profile-card-like.liked {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.15);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== MY DATES ===== */
.dates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.date-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  margin-bottom: var(--space-md);
  cursor: pointer;
}

.date-card:hover {
  border-color: var(--border-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.date-card-users {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.date-card-users .avatar {
  border: 3px solid var(--dark-300);
}

.date-card-users .avatar:last-child {
  margin-left: -20px;
}

.date-card-info {
  flex: 1;
  min-width: 0;
}

.date-card-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 4px;
}

.date-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.date-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 0;
}

.date-card-date {
  text-align: right;
}

.date-card-date .day {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
}

.date-card-date .month {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== DATE DETAILS ===== */
.date-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.date-detail-info h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.date-detail-meta {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.date-detail-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.date-detail-meta-item i {
  color: var(--primary-light);
}

.date-users-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.date-user-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.date-user-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.date-user-info h4 {
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.date-user-info p {
  font-size: 0.85rem;
  margin: 0;
}

/* Chat section */
.chat-section {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-color);
}

.chat-header h4 {
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.chat-messages {
  padding: var(--space-xl);
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.chat-message {
  display: flex;
  gap: var(--space-md);
  max-width: 80%;
}

.chat-message.sent {
  margin-left: auto;
  flex-direction: row-reverse;
}

.chat-bubble {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: 0.92rem;
  line-height: 1.5;
}

.chat-message.received .chat-bubble {
  background: var(--dark-600);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.chat-message.sent .chat-bubble {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.chat-message.sent .chat-time {
  text-align: right;
}

.chat-input-area {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-color);
}

.chat-input-area input {
  flex: 1;
  padding: 12px 18px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
}

.chat-input-area input:focus {
  border-color: var(--primary-light);
}

/* ===== PROFILE PAGE ===== */
.profile-hero {
  position: relative;
  height: 350px;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  overflow: hidden;
}

.profile-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(10, 10, 15, 0.9));
}

.profile-main {
  position: relative;
  margin-top: -80px;
  z-index: 2;
}

.profile-avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.profile-avatar-wrapper .avatar {
  border: 4px solid var(--dark);
  box-shadow: var(--shadow-glow);
}

.profile-verified {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  border: 3px solid var(--dark);
}

.profile-name {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.profile-location {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.profile-location i {
  color: var(--primary-light);
  margin-right: 4px;
}

.profile-stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.profile-stat {
  text-align: center;
}

.profile-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
}

.profile-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-bio {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.profile-interests {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.lightbox-close:hover {
  background: var(--primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===== CHATROOM PAGE ===== */
.chatroom-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  height: calc(100vh - 80px);
  margin-top: 80px;
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.chatroom-sidebar {
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.chatroom-sidebar-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
}

.chatroom-sidebar-header h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.chatroom-topics {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-color);
  overflow-y: auto;
  flex-shrink: 0;
}

.chatroom-topic {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chatroom-topic:hover,
.chatroom-topic.active {
  background: rgba(194, 24, 91, 0.1);
  color: var(--primary-light);
}

.chatroom-topic i {
  font-size: 0.85rem;
  width: 16px;
}

.chatroom-users {
  padding: var(--space-md);
  overflow-y: auto;
  flex: 1;
}

.chatroom-user {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chatroom-user:hover {
  background: rgba(255, 255, 255, 0.05);
}

.chatroom-user-name {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.chatroom-user-name a {
  color: var(--text-primary);
}

.chatroom-user-name a:hover {
  color: var(--primary-light);
}

.chatroom-main {
  display: flex;
  flex-direction: column;
}

.chatroom-messages {
  flex: 1;
  padding: var(--space-xl);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chatroom-message {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.chatroom-message-content {
  flex: 1;
}

.chatroom-message-author {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.chatroom-message-author a {
  color: var(--primary-light);
}

.chatroom-message-author a:hover {
  text-decoration: underline;
}

.chatroom-message-author .chat-time {
  font-weight: 400;
  margin-left: var(--space-sm);
}

.chatroom-message-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.chatroom-input {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.chatroom-input input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.92rem;
}

.chatroom-input input:focus {
  border-color: var(--primary-light);
}

/* ===== BLOG ===== */
.blog-featured {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  height: 400px;
}

.blog-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(10, 10, 15, 0.9));
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-featured-overlay .badge {
  width: fit-content;
  margin-bottom: var(--space-md);
}

.blog-featured-overlay h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.blog-featured-overlay p {
  max-width: 600px;
  font-size: 0.95rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

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

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

.blog-card-img-wrapper {
  overflow: hidden;
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-body .badge {
  margin-bottom: var(--space-sm);
}

.blog-card-body h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-color);
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.blog-card-author span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Blog details */
.blog-detail-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.blog-detail-header .badge {
  margin-bottom: var(--space-md);
}

.blog-detail-header h1 {
  font-size: 2.4rem;
  margin-bottom: var(--space-lg);
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.blog-detail-meta i {
  color: var(--primary-light);
  margin-right: 4px;
}

.blog-detail-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.blog-detail-content {
  max-width: 760px;
  margin: 0 auto;
}

.blog-detail-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.blog-detail-content h3 {
  margin: var(--space-2xl) 0 var(--space-md);
}

.blog-detail-content blockquote {
  border-left: 3px solid var(--primary);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  background: var(--surface-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-color);
  margin-top: var(--space-2xl);
}

.blog-share span {
  font-weight: 600;
  color: var(--white);
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.share-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.related-articles {
  margin-top: var(--space-4xl);
}

/* ===== PARTIES ===== */
.party-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.party-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.party-card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.party-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.party-card-date-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--primary);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
}

.party-card-date-badge .day {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.party-card-date-badge .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.party-card-body {
  padding: var(--space-lg);
}

.party-card-body h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.party-card-location {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.party-card-location i {
  color: var(--primary-light);
}

.party-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-color);
}

.party-card-attendees {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.party-card-attendees span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Party details */
.party-detail-hero {
  position: relative;
  height: 400px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.party-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.party-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10, 10, 15, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl);
}

.party-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
}

.party-detail-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.party-detail-sidebar .card-glass {
  padding: var(--space-xl);
}

.party-detail-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.party-detail-info-item i {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-top: 2px;
}

.party-detail-info-item h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.party-detail-info-item p {
  color: var(--white);
  margin: 0;
  font-size: 0.95rem;
}

.party-attendees-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.party-attendee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.party-attendee:hover {
  transform: translateY(-2px);
}

.party-attendee span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== SETTINGS PAGE ===== */
.settings-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-2xl);
}

.settings-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.settings-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.settings-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px var(--space-md);
  color: var(--text-secondary);
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.settings-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.settings-nav-item.active {
  background: rgba(194, 24, 91, 0.1);
  color: var(--primary-light);
}

.settings-nav-item i {
  width: 20px;
  font-size: 0.9rem;
}

.settings-section {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.settings-section-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.settings-section-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.photo-upload {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.photo-upload-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

/* ===== TRANSACTIONS PAGE ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.stat-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 24, 91, 0.1);
  border-radius: var(--radius-lg);
  color: var(--primary-light);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.stat-card-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: 2px;
}

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

/* Table */
.table-wrapper {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  padding: var(--space-md) var(--space-xl);
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.data-table td {
  padding: var(--space-md) var(--space-xl);
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* Subscription cards */
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.subscription-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.subscription-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.subscription-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.subscription-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.subscription-card h4 {
  font-family: var(--font-body);
  margin-bottom: var(--space-sm);
}

.subscription-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-body);
}

.subscription-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.subscription-features {
  text-align: left;
  margin: var(--space-xl) 0;
}

.subscription-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.subscription-features li i {
  color: var(--accent-green);
  font-size: 0.8rem;
}

/* ===== NOTIFICATIONS ===== */
.notification-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  margin-bottom: var(--space-md);
  cursor: pointer;
}

.notification-card.unread {
  border-left: 3px solid var(--primary);
  background: rgba(194, 24, 91, 0.05);
}

.notification-card:hover {
  border-color: var(--border-light);
  transform: translateX(4px);
}

.notification-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.notification-icon.date {
  background: rgba(194, 24, 91, 0.1);
  color: var(--primary-light);
}

.notification-icon.message {
  background: rgba(41, 121, 255, 0.1);
  color: var(--accent-blue);
}

.notification-icon.system {
  background: rgba(255, 145, 0, 0.1);
  color: var(--accent-orange);
}

.notification-icon.gift {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-gold);
}

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

.notification-content h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

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

.notification-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== AUTH PAGES ===== */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.auth-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl);
  background: var(--primary-gradient);
  overflow: hidden;
}

.auth-brand::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.auth-brand::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.auth-brand-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 400px;
}

.auth-brand-content img {
  height: 60px;
  margin: 0 auto var(--space-xl);
}

.auth-brand-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.auth-brand-content p {
  color: rgba(255, 255, 255, 0.8);
}

.auth-form-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl);
  background: var(--dark-100);
}

.auth-form-wrapper {
  width: 100%;
  max-width: 420px;
}

.auth-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.auth-form-wrapper > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.social-login {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.auth-link {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-link a {
  color: var(--primary-light);
  font-weight: 600;
}

.auth-link a:hover {
  color: var(--primary-lighter);
}

/* Remember & Forgot */
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.form-actions a {
  font-size: 0.88rem;
  color: var(--primary-light);
}

/* ===== MULTI-STEP FORM ===== */
.multi-step-form {
  max-width: 500px;
  width: 100%;
}

.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.step-progress-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.step-progress-circle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--surface-input);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.step-progress-item.active .step-progress-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 15px rgba(194, 24, 91, 0.3);
}

.step-progress-item.completed .step-progress-circle {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--white);
}

.step-progress-line {
  width: 40px;
  height: 2px;
  background: var(--border-color);
  transition: background var(--transition-base);
}

.step-progress-item.completed + .step-progress-line,
.step-progress-line.active {
  background: var(--primary);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: slideIn 0.4s ease;
}

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

.form-step-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.form-step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-xl);
}

/* Interest selection */
.interests-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.interest-chip {
  padding: 8px 18px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.interest-chip:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.interest-chip.selected {
  background: rgba(194, 24, 91, 0.15);
  border-color: var(--primary);
  color: var(--primary-light);
}

/* Photo upload area */
.upload-area {
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.upload-area:hover {
  border-color: var(--primary-light);
  background: rgba(194, 24, 91, 0.05);
}

.upload-area i {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}

.upload-area h5 {
  font-family: var(--font-body);
  margin-bottom: var(--space-xs);
}

.upload-area p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Success step */
.success-step {
  text-align: center;
  padding: var(--space-xl) 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  background: rgba(0, 230, 118, 0.1);
  border-radius: 50%;
  font-size: 2.5rem;
  color: var(--accent-green);
  animation: bounceIn 0.6s ease;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-100);
  border-top: 1px solid var(--border-color);
  padding: var(--space-4xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-column h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.footer-column a {
  display: block;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation for grid items */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 0 var(--space-2xl);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  position: relative;
}

.page-header p {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  justify-content: center;
  position: relative;
}

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

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

.breadcrumb i {
  font-size: 0.65rem;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.empty-state i {
  font-size: 3rem;
  color: var(--neutral-500);
  margin-bottom: var(--space-lg);
}

.empty-state h3 {
  font-family: var(--font-body);
  margin-bottom: var(--space-sm);
}

.empty-state p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ===== MAP PLACEHOLDER ===== */
.map-container {
  width: 100%;
  height: 250px;
  background: var(--dark-300);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-lg);
  overflow: hidden;
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(26, 26, 46, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 46, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.map-container i {
  font-size: 2rem;
  margin-right: var(--space-sm);
  color: var(--primary-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-200);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--space-xl) var(--space-xl);
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
    z-index: var(--z-nav);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-auth {
    margin-left: 0;
    margin-top: var(--space-lg);
    flex-direction: column;
    width: 100%;
  }

  .nav-auth .btn {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
    padding-left: var(--space-lg);
    margin-top: var(--space-xs);
  }

  .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .steps-grid::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .date-users-grid {
    grid-template-columns: 1fr;
  }

  .settings-layout {
    grid-template-columns: 1fr;
  }

  .settings-sidebar {
    position: static;
  }

  .settings-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: var(--space-sm);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .subscription-grid {
    grid-template-columns: 1fr;
  }

  .party-detail-content {
    grid-template-columns: 1fr;
  }

  .party-detail-sidebar {
    position: static;
  }

  .chatroom-layout {
    grid-template-columns: 1fr;
    height: auto;
    margin-top: 80px;
  }

  .chatroom-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    max-height: 200px;
    overflow-y: auto;
  }

  .chatroom-messages {
    min-height: 400px;
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-brand {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .page-header {
    padding: 120px 0 var(--space-xl);
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-bar .form-select,
  .filter-bar .form-input {
    width: 100%;
  }

  .profiles-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .date-card {
    flex-direction: column;
    text-align: center;
  }

  .date-card-meta {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .party-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

  .cta-card {
    padding: var(--space-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .blog-featured {
    height: 300px;
  }

  .profile-hero {
    height: 250px;
  }

  .profile-stats {
    justify-content: center;
  }

  .dates-header {
    flex-direction: column;
    align-items: stretch;
  }

  .tabs {
    overflow-x: auto;
    width: 100%;
  }

  .data-table {
    font-size: 0.82rem;
  }

  .data-table th,
  .data-table td {
    padding: var(--space-sm) var(--space-md);
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .profile-stats {
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-login {
    flex-direction: column;
  }

  .step-progress {
    gap: 4px;
  }

  .step-progress-circle {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .step-progress-line {
    width: 24px;
  }
}

/* ===== UTILITY CLASSES ===== */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.w-full { width: 100%; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary-light); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm { font-size: 0.85rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
