/* ============================================================
   NARA — Premium Dating Site Stylesheet
   greecebulgarialove.eu
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --navy:         #0a1628;
  --navy-mid:     #0f2040;
  --navy-light:   #162d55;
  --navy-card:    #111e38;
  --gold:         #c9a84c;
  --gold-light:   #e4c97a;
  --gold-dark:    #a07833;
  --gold-subtle:  rgba(201,168,76,0.12);
  --white:        #ffffff;
  --off-white:    #f0ead8;
  --text-muted:   #8899b4;
  --text-light:   #c8d4e8;
  --danger:       #e05252;
  --success:      #3fb87a;
  --warning:      #f0a830;
  --border:       rgba(201,168,76,0.2);
  --border-subtle: rgba(255,255,255,0.08);
  --shadow:       0 8px 32px rgba(0,0,0,0.4);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.25);
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.25);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main:    'Cormorant Garamond', 'Georgia', serif;
  --font-ui:      'Montserrat', 'Helvetica Neue', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-ui);
  background-color: var(--navy);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-sm { max-width: 720px; }
.container-lg { max-width: 1400px; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.25rem;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.nav-logo img { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); background: var(--gold-subtle); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-switcher { display: flex; gap: 0.25rem; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.06em;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}
.nav-unread {
  background: var(--danger);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  vertical-align: middle;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.mobile-nav a:hover { background: var(--gold-subtle); color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-subtle);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn-navy {
  background: var(--navy-light);
  color: var(--white);
  border: 1px solid var(--border-subtle);
}
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-icon { padding: 0.6rem; border-radius: 50%; }
.btn-block { width: 100%; }

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 60px;
  overflow: hidden;
  padding: 6rem 1.25rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,22,40,0.6) 0%, var(--navy) 100%);
  z-index: 1;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* --- Cards --- */
.card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.card-body { padding: 1.5rem; }
.card-gold {
  background: linear-gradient(135deg, var(--navy-card), var(--navy-light));
  border-color: var(--border);
}

/* --- Profile Cards --- */
.profile-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.profile-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.profile-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.profile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.profile-card:hover .profile-card-img img { transform: scale(1.05); }
.profile-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.profile-card-country {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(10,22,40,0.8);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  backdrop-filter: blur(8px);
}
.profile-card-verified {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--success);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.profile-card-name {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.profile-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.profile-card-actions {
  padding: 0.875rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}
.profile-card-actions .btn { flex: 1; min-width: 0; overflow: hidden; }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Profile locked overlay */
.profile-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  z-index: 10;
}
.lock-icon { font-size: 2.5rem; }
.lock-title { font-family: var(--font-main); font-size: 1.3rem; color: var(--white); }
.lock-text { font-size: 0.85rem; color: var(--text-muted); }

/* --- Forms --- */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control option { background: var(--navy-mid); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }
.form-error { font-size: 0.8rem; color: var(--danger); margin-top: 0.4rem; display: none; }
.form-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input-group { position: relative; }
.input-group .form-control { padding-left: 2.75rem; }
.input-group-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

/* Checkbox */
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
  cursor: pointer;
}
.form-check-label { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* Radio gender selector */
.gender-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.gender-option { position: relative; }
.gender-option input { position: absolute; opacity: 0; }
.gender-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.gender-icon { font-size: 2.5rem; }
.gender-name { font-weight: 700; color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
.gender-desc { font-size: 0.78rem; color: var(--text-muted); }
.gender-option input:checked + .gender-label {
  border-color: var(--gold);
  background: var(--gold-subtle);
  box-shadow: var(--shadow-gold);
}
.gender-option.male input:checked + .gender-label { border-color: #4d8ef0; background: rgba(77,142,240,0.1); }
.gender-option.female input:checked + .gender-label { border-color: #e87aad; background: rgba(232,122,173,0.1); }

/* File upload */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.file-upload-area:hover { border-color: var(--gold); background: var(--gold-subtle); }
.file-upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.file-upload-text { font-size: 0.9rem; color: var(--text-muted); }
.file-upload-text strong { color: var(--gold); }
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.photo-preview-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--navy-mid);
  position: relative;
}
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Alerts / Notices --- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.alert-icon { flex-shrink: 0; font-size: 1.1rem; margin-top: 0.05rem; }
.alert-success { background: rgba(63,184,122,0.12); border: 1px solid rgba(63,184,122,0.3); color: #6de0a8; }
.alert-danger  { background: rgba(224,82,82,0.12);  border: 1px solid rgba(224,82,82,0.3);  color: #f08080; }
.alert-warning { background: rgba(240,168,48,0.12); border: 1px solid rgba(240,168,48,0.3); color: #f0c060; }
.alert-info    { background: rgba(77,142,240,0.12); border: 1px solid rgba(77,142,240,0.3); color: #7ab4f5; }
.alert-gold    { background: var(--gold-subtle); border: 1px solid var(--border); color: var(--gold-light); }

/* Subscription banner */
.subscription-banner {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-card));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.subscription-banner-text h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.subscription-banner-text p { font-size: 0.875rem; color: var(--text-muted); }
.verification-notice {
  background: rgba(240,168,48,0.1);
  border: 1px solid rgba(240,168,48,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.verification-notice h3 { color: var(--warning); margin-bottom: 0.5rem; }

/* --- Steps / How it works --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--border); transform: translateY(-4px); }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; }

/* --- Features Grid --- */
.feature-card {
  padding: 2rem 1.5rem;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }

/* --- Membership / Pricing --- */
.plan-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.plan-card.featured {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-card));
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 0.3rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.plan-price {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; }
.plan-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
.plan-features { text-align: left; margin-bottom: 2rem; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-subtle);
}
.plan-feature:last-child { border-bottom: none; }
.plan-feature-icon { color: var(--success); flex-shrink: 0; margin-top: 0.15rem; }
.plan-feature-icon.no { color: var(--text-muted); }

/* --- Messages / Chat --- */
.messages-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: calc(100vh - 72px - 68px); /* top nav + bottom nav */
  margin-top: 72px;
}
.conversations-sidebar {
  background: var(--navy-card);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-header h2 { font-size: 1.1rem; }
.conversations-list { flex: 1; overflow-y: auto; }
.conversations-list::-webkit-scrollbar { width: 4px; }
.conversations-list::-webkit-scrollbar-track { background: transparent; }
.conversations-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.conversation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
}
.conversation-item:hover, .conversation-item.active {
  background: var(--gold-subtle);
}
.conversation-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.conversation-info { flex: 1; min-width: 0; }
.conversation-name { font-weight: 600; color: var(--white); font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conversation-preview { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conversation-meta { text-align: right; flex-shrink: 0; }
.conversation-time { font-size: 0.75rem; color: var(--text-muted); }
.conversation-unread {
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  margin-left: auto;
}
.chat-area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--navy-card);
}
.chat-header-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.chat-header-name { font-weight: 600; color: var(--white); }
.chat-header-status { font-size: 0.78rem; color: var(--text-muted); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.message-bubble {
  max-width: 70%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.message-bubble.sent {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.message-bubble.received {
  background: var(--navy-light);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.message-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.25rem;
}
.message-bubble.sent .message-time { color: rgba(10,22,40,0.6); }
.chat-input-area {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--navy-card);
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  resize: none;
  outline: none;
  max-height: 120px;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--gold); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-send-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--navy);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.chat-send-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-gold); }

/* Messages lock overlay */
.messages-lock {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.94);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.messages-lock-inner { text-align: center; max-width: 380px; padding: 2rem; }
.messages-lock-icon { font-size: 3.5rem; margin-bottom: 1rem; }

/* --- Dashboard --- */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}
.sidebar {
  background: var(--navy-card);
  border-right: 1px solid var(--border-subtle);
  padding: 2rem 1rem;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active {
  background: var(--gold-subtle);
  color: var(--gold);
}
.sidebar-nav-item .nav-icon { font-size: 1.1rem; flex-shrink: 0; }
.main-content { padding: 2rem; overflow-y: auto; }

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.stat-card:hover { border-color: var(--border); }
.stat-value {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* --- Tables (Admin) --- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-subtle); }
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.table th {
  background: var(--navy-light);
  color: var(--text-muted);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  white-space: nowrap;
}
.table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-light);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(255,255,255,0.02); }
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-success { background: rgba(63,184,122,0.15); color: var(--success); }
.badge-danger  { background: rgba(224,82,82,0.15);  color: var(--danger); }
.badge-warning { background: rgba(240,168,48,0.15); color: var(--warning); }
.badge-info    { background: rgba(77,142,240,0.15); color: #4d8ef0; }
.badge-gold    { background: var(--gold-subtle); color: var(--gold); }
.badge-muted   { background: rgba(136,153,180,0.15); color: var(--text-muted); }

/* --- Profile View --- */
.profile-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.profile-photo-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.profile-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info-block { padding-top: 0.5rem; }
.profile-name-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.profile-detail-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.profile-detail-row .icon { font-size: 1rem; }
.profile-bio {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.profile-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.08); }

/* --- Footer --- */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 1.25rem 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand-name {
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-brand-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }

/* --- Page Layout (non-dashboard) --- */
.page-wrapper { padding-top: 72px; min-height: 100vh; }
.page-header { padding: 3rem 0 2rem; border-bottom: 1px solid var(--border-subtle); margin-bottom: 2.5rem; }
.page-header h1 { margin-bottom: 0.5rem; }

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--gold-subtle);
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Modals --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: var(--transition);
}
.modal-close:hover { color: var(--white); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

/* --- Trust Section --- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: var(--transition);
}
.trust-item:hover { border-color: var(--border); }
.trust-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.trust-desc { font-size: 0.8rem; color: var(--text-muted); }

/* --- Scrollbar global --- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* --- Utility --- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.relative { position: relative; }

/* Section bg alternation */
.section-dark { background: var(--navy); }
.section-mid { background: var(--navy-mid); }

/* Avatar small */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  background: var(--navy-light);
}
.avatar-sm { width: 36px; height: 36px; }
.avatar-md { width: 56px; height: 56px; }
.avatar-lg { width: 96px; height: 96px; border: 3px solid var(--gold); }

/* Verification photo */
.verification-photo {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

/* ============================================================
   Responsive Design
   ============================================================ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .messages-layout { grid-template-columns: 280px 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .profile-hero { grid-template-columns: 260px 1fr; gap: 1.5rem; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .messages-layout { grid-template-columns: 1fr; grid-template-rows: auto 1fr; height: auto; }
  .conversations-sidebar { height: 300px; }
  .chat-input-area { padding-bottom: calc(1rem + 60px + env(safe-area-inset-bottom, 0px)); }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .subscription-banner { flex-direction: column; text-align: center; }
  .profile-hero { grid-template-columns: 1fr; }
  .profile-photo-main { max-width: 300px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .btn-lg { padding: 0.875rem 1.75rem; font-size: 0.95rem; }
  .section { padding: 3.5rem 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr 1fr; }
  .profile-card-actions { flex-direction: column; padding: 0.75rem; }
  .profile-card-actions .btn { flex: none; width: 100%; }
}

@media (max-width: 400px) {
  .navbar { padding: 0 0.75rem; }
  .nav-inner { gap: 0.5rem; }
  .nav-logo img { height: 30px; }
  .nav-actions .lang-switcher { display: none; }
  .nav-actions .btn { display: none; }
}

/* =============================================================
   INDEX PAGE TOP BAR
   ============================================================= */
.index-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.index-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 480px) {
  .index-topbar { padding: 0 1rem; }
  .index-topbar-right { gap: 0.5rem; }
  .index-topbar .lang-switcher { display: none; }
}

/* =============================================================
   BOTTOM NAVIGATION (logged-in, all screen sizes)
   ============================================================= */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  z-index: 300;
  align-items: stretch;
  justify-content: space-around;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.6rem;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--gold); }
.bottom-nav-icon {
  font-size: 1.3rem;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.bottom-nav-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--danger);
  color: #fff;
  font-size: 0.55rem;
  min-width: 15px;
  height: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-family: var(--font-ui);
  font-weight: 700;
}
.bottom-nav-label { font-size: 0.6rem; }
.bottom-nav-item-admin { color: var(--gold) !important; }
.bottom-nav-item-admin:hover { color: var(--gold-light) !important; }

/* Push page content above the bottom nav (all sizes) */
.page-wrapper,
.swipe-page-wrapper { padding-bottom: 76px; }

/* Hide hamburger + mobile nav when bottom nav is present */
body:has(.bottom-nav) .hamburger  { display: none !important; }
body:has(.bottom-nav) .mobile-nav { display: none !important; }

/* On mobile, cap bottom-nav width and keep lang switcher */
@media (max-width: 768px) {
  body:has(.bottom-nav) .nav-actions .lang-switcher { display: flex; }
}

/* On desktop, widen the nav and give items more breathing room */
@media (min-width: 769px) {
  .bottom-nav {
    max-width: 1100px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: var(--radius) var(--radius) 0 0;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 68px;
    justify-content: center;
    gap: 0;
  }
  .bottom-nav-item {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 8px 24px;
    font-size: 0.72rem;
  }
  .bottom-nav-icon {
    font-size: 1.5rem;
  }
  /* On desktop nav-links still show so users have both nav options */
  .nav-links { display: flex; }
}

/* =============================================================
   SWIPE / DISCOVER PAGE
   ============================================================= */
.swipe-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem 90px;
  box-sizing: border-box;
}
.swipe-arena {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.swipe-stack {
  width: 100%;
  height: 560px;
  position: relative;
}
@media (min-width: 769px) {
  .swipe-stack { height: 620px; }
  .swipe-arena { max-width: 480px; }
}
.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  cursor: grab;
  user-select: none;
  will-change: transform;
  transition: transform 0.15s ease;
}
.swipe-card.is-dragging { cursor: grabbing; transition: none; }
.swipe-card-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  position: relative;
}
/* Gradient overlay at bottom of photo */
.swipe-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 40%, transparent 70%);
  pointer-events: none;
}
.swipe-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.25rem;
  z-index: 2;
}
.swipe-card-name {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.swipe-card-age {
  font-size: 1.3rem;
  font-weight: 400;
}
.swipe-card-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.swipe-card-bio {
  font-size: 0.8rem;
  color: rgba(200,212,232,0.8);
  margin-top: 6px;
  line-height: 1.4;
}
/* LIKE / NOPE stamp labels */
.swipe-label {
  position: absolute;
  top: 28px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  border: 3px solid;
  z-index: 10;
  text-transform: uppercase;
}
.like-label {
  left: 20px;
  color: #4cce70;
  border-color: #4cce70;
  background: rgba(76,206,112,0.12);
  transform: rotate(-15deg);
}
.nope-label {
  right: 20px;
  color: var(--danger);
  border-color: var(--danger);
  background: rgba(224,82,82,0.12);
  transform: rotate(15deg);
}
.super-label {
  left: 50%;
  top: 28px;
  transform: translateX(-50%) rotate(0deg);
  color: #4da8ff;
  border-color: #4da8ff;
  background: rgba(77,168,255,0.12);
}
/* Action buttons */
.swipe-actions {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
}
.swipe-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}
.swipe-btn:hover  { transform: scale(1.08); }
.swipe-btn:active { transform: scale(0.92); }
.swipe-btn-nope {
  background: var(--navy-card);
  border: 2px solid var(--danger);
  color: var(--danger);
  font-size: 1.1rem;
  font-weight: 700;
}
.swipe-btn-like {
  background: linear-gradient(135deg, #e85d9e 0%, #c9a84c 100%);
  color: #fff;
  font-size: 1.3rem;
}
.swipe-btn-superlike {
  width: 68px;
  height: 68px;
  background: var(--navy-card);
  border: 2px solid #4da8ff;
  color: #4da8ff;
  font-size: 1.8rem;
}
.swipe-btn-superlike:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Daily counters strip */
.swipe-counters {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.swipe-counter {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.swipe-counter-star { color: #4da8ff; }

/* Limit toast */
.swipe-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.85rem;
  font-family: var(--font-ui);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  z-index: 500;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.5s ease;
  box-shadow: var(--shadow);
}

/* Match popup overlay */
.match-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: 1rem;
}
.match-popup.match-popup-show { opacity: 1; }
.match-popup-inner {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-gold);
  transform: scale(0.9);
  transition: transform 0.35s ease;
}
.match-popup.match-popup-show .match-popup-inner { transform: scale(1); }
.match-popup-hearts { font-size: 2.5rem; margin-bottom: 0.75rem; }
.match-popup-title {
  font-family: var(--font-main);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.match-popup-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.match-popup-photo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1.5rem;
  display: block;
}
.match-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* New match indicator dot */
.match-new-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--navy-card);
}
.conversation-item.new-match { border-left: 3px solid var(--gold); }

/* ── Profile Quiz ────────────────────────────────────────── */
.quiz-section {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.quiz-section-header {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.quiz-section-header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.quiz-section-header p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.quiz-question {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.quiz-question:last-child { border-bottom: none; }
.quiz-question-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}
.quiz-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.quiz-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  user-select: none;
}
.quiz-pill input { display: none; }
.quiz-pill:has(input:checked) {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}
.quiz-pill:hover { border-color: rgba(201,168,76,0.5); color: var(--text-light); }
.quiz-pill:has(input:checked):hover { border-color: var(--gold-light); }

/* Height / Weight row inside quiz */
.quiz-hw-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.quiz-hw-field { flex: 1; min-width: 130px; }
.quiz-hw-field label.quiz-hw-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.quiz-hw-field .quiz-hw-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quiz-hw-field input[type="number"] {
  width: 80px;
  padding: 0.4rem 0.6rem;
  background: var(--navy-mid);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
}
.quiz-hw-field input[type="number"]:focus { outline: none; border-color: var(--gold); }
.quiz-hw-unit { font-size: 0.8rem; color: var(--text-muted); }
.quiz-hw-hide {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  cursor: pointer;
}
.quiz-hw-hide input[type="checkbox"] { accent-color: var(--gold); width: 14px; height: 14px; }

/* Empty state card */
.swipe-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
