/* =========================================
   LoveOdds — Dark Romantic Design System
   ========================================= */

:root {
  --bg-primary: #1a0a12;
  --bg-card: #2a0f1c;
  --bg-nav: #12060d;
  --bg-elevated: #321325;
  --border: #3d1226;
  --border-light: #4d1832;

  --accent-pink: #ff6b9d;
  --accent-rose: #c44569;
  --accent-teal: #4ecdc4;
  --accent-teal-dim: #2a7a74;
  --accent-gold: #ffb347;

  --text-primary: #f5e6ee;
  --text-muted: #8a4a64;
  --text-secondary: #c17a9a;

  --yes-bg: rgba(78, 205, 196, 0.12);
  --no-bg: rgba(255, 107, 157, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-card: 16px;
  --radius-pill: 999px;

  --shadow-card: 0 0 0 1px var(--border), 0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow-pink: 0 0 40px rgba(255, 107, 157, 0.15);
  --shadow-glow-teal: 0 0 40px rgba(78, 205, 196, 0.15);
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: pointer;
}

.nav-link:hover { color: var(--text-primary); }

.nav-cta { margin-left: auto; }

.wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-pink);
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  padding: 80px 24px 96px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-pink);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #ff9cc4;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  color: var(--border-light);
  font-size: 16px;
}

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card), var(--shadow-glow-pink);
}

.card-avatar {
  font-size: 48px;
  margin-bottom: 12px;
}

.card-couple {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-context {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.card-badge-hot {
  background: rgba(255, 107, 157, 0.15);
  color: var(--accent-pink);
  border: 1px solid rgba(255, 107, 157, 0.3);
}

.card-question {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.card-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.option {
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-yes { background: var(--yes-bg); border: 1px solid rgba(78, 205, 196, 0.25); }
.option-no  { background: var(--no-bg);  border: 1px solid rgba(255, 107, 157, 0.25); }

.option-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.option-pct {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.option-yes .option-pct { color: var(--accent-teal); }
.option-no  .option-pct { color: var(--accent-pink); }

.option-price {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.card-progress {
  height: 5px;
  border-radius: 99px;
  background: var(--bg-primary);
  overflow: hidden;
  display: flex;
  margin-bottom: 16px;
}

.progress-yes {
  background: var(--accent-teal);
  transition: width 0.4s ease;
}

.progress-no {
  background: var(--accent-pink);
  transition: width 0.4s ease;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- SECTIONS ---- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 48px;
  line-height: 1.2;
}

.section-header { text-align: center; }
.section-header .section-title { margin-bottom: 24px; }

.section-divider {
  text-align: center;
  color: var(--border-light);
  font-size: 14px;
  letter-spacing: 12px;
  margin-top: 64px;
}

/* ---- THE TEA ---- */
.the-tea {
  padding: 80px 0;
  background: var(--bg-primary);
}

/* Top Predictor banner — shown when a weekly leader exists */
.top-predictor-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  margin-bottom: 28px;
  background: rgba(255, 179, 71, 0.08);
  border: 1px solid rgba(255, 179, 71, 0.3);
  border-radius: var(--radius-pill);
  flex-wrap: wrap;
  justify-content: center;
}

.tp-crown { font-size: 18px; }

.tp-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.tp-handle {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
}
.tp-handle:hover { text-decoration: underline; }

.tp-stats {
  font-size: 13px;
  color: var(--text-muted);
}

.tp-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-pink);
  text-decoration: none;
  margin-left: 4px;
}
.tp-link:hover { text-decoration: underline; }

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.market-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.market-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.m-bet-cta {
  color: var(--accent-pink);
  font-weight: 600;
  font-size: 13px;
}

.m-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.m-avatar {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 12px;
}

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

.m-names {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 3px;
}

.m-context {
  font-size: 12px;
  color: var(--text-muted);
}

.card-badge-trending {
  background: rgba(255, 179, 71, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 179, 71, 0.3);
}

.card-badge-new {
  background: rgba(78, 205, 196, 0.12);
  color: var(--accent-teal);
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.m-question {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.m-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.m-option {
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-yes { background: var(--yes-bg); border: 1px solid rgba(78, 205, 196, 0.2); }
.m-no  { background: var(--no-bg);  border: 1px solid rgba(255, 107, 157, 0.2); }

.m-opt-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.m-opt-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.m-opt-pct {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.m-yes .m-opt-pct { color: var(--accent-teal); }
.m-no  .m-opt-pct { color: var(--accent-pink); }

.m-opt-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.m-bar {
  height: 5px;
  border-radius: 99px;
  background: var(--bg-primary);
  overflow: hidden;
  display: flex;
  margin-bottom: 14px;
}

.bar-yes { background: var(--accent-teal); }
.bar-no  { background: var(--accent-pink); }

.m-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-it-works .section-eyebrow { text-align: center; display: block; }
.how-it-works .section-title { text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  padding: 32px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-pink);
  opacity: 0.6;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arrow {
  font-size: 28px;
  color: var(--border-light);
  padding-top: 80px;
  text-align: center;
}

/* ---- CATEGORIES ---- */
.couples-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

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

.cat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.cat-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.cat-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- CLOSING ---- */
.closing-section {
  padding: 96px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 680px; }

.closing-heart {
  font-size: 40px;
  color: var(--accent-pink);
  margin-bottom: 32px;
  opacity: 0.7;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 0;
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo .logo-text {
  font-size: 18px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text-secondary); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { display: none; }
  .hero-sub { max-width: 100%; }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-arrow { display: none; }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-copy { width: 100%; margin-left: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 20px 72px; }
  .hero-title { font-size: 36px; }
  .nav-links { display: none; }

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

  .m-options { grid-template-columns: 1fr; }
}
