*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --black: #080608;
  --deep: #100d10;
  --card-bg: #150f15;
  --surface: #1e1520;
  --border: rgba(255, 255, 255, 0.07);
  --red: #c0392b;
  --red-glow: #e74c3c;
  --gold: #f0b429;
  --gold-lt: #e8cfa0;
  --cream: #f5ede0;
  --muted: rgba(245, 237, 224, 0.45);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 180, 41, 0.12);
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.logo-spiced {
  color: var(--red-glow);
}
.logo-dot {
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
}
.logo-couple {
  color: var(--cream);
}
.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(192, 57, 43, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(192, 57, 43, 0.06) 0%, transparent 60%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--red-glow);
}
.hero-subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold-lt);
  margin-bottom: 52px;
  opacity: 0.8;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-copy {
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-copy strong {
  color: var(--cream);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.4s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 0 40px rgba(192, 57, 43, 0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(192, 57, 43, 0.55);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FOMO BADGE */
.fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  animation: fadeUp 0.8s ease 0.5s both;
}
.fomo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute;
  bottom: 5px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  animation: fadeUp 1s ease 1s both;
}
.scroll-hint svg {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ─── DIVIDER ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 900px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-icon {
  color: var(--red);
  font-size: 0.9rem;
}

/* ─── HOW IT WORKS ─── */
.section {
  padding: 100px 24px;
}
.section-label {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--red-glow);
}
.section-desc {
  text-align: center;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 70px;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 44px 32px;
  position: relative;
  transition: border-color 0.3s;
}
.step:hover {
  border-color: rgba(192, 57, 43, 0.4);
}
.step-num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(192, 57, 43, 0.85);
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}
.step h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── LEVELS ─── */
.levels-section {
  background: var(--deep);
  padding: 100px 24px;
}
.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.level-card {
  border: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition:
    transform 0.3s,
    border-color 0.3s;
  cursor: default;
}
.level-card:hover {
  transform: translateY(-6px);
}
.level-card.featured {
  border-color: rgba(192, 57, 43, 0.5);
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), transparent);
}
.level-badge {
  font-size: 0.6rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
  display: inline-block;
  margin-bottom: 18px;
}
.level-card:nth-child(1) .level-badge {
  color: #a0c4ff;
  border-color: rgba(160, 196, 255, 0.3);
}
.level-card:nth-child(2) .level-badge {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.3);
}
.level-card:nth-child(3) .level-badge {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
}
.level-card:nth-child(4) .level-badge {
  color: #c0392b;
  border-color: rgba(192, 57, 43, 0.4);
}
.level-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.level-name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.level-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.level-lock {
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.feature {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
  text-align: center;
}
.feature h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.feature p strong,
.feature p b {
  font-weight: 500;
  color: var(--cream);
}
.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  background: rgba(192, 57, 43, 0.15);
  color: var(--red-glow);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── SOCIAL PROOF / FOMO ─── */
.social-section {
  padding: 80px 24px;
  text-align: center;
}
.counter-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 60px;
  border: 1px solid var(--border);
}
.counter-item {
  flex: 1;
  min-width: 180px;
  padding: 36px 20px;
  border-right: 1px solid var(--border);
}
.counter-item:last-child {
  border-right: none;
}
.counter-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}
.counter-num span {
  color: var(--red-glow);
}
.counter-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* TESTIMONIAL TICKER */
.ticker-wrap {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  margin-bottom: 80px;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}
.ticker-item strong {
  color: var(--cream);
  font-style: normal;
  font-weight: 500;
}
.ticker-item .stars {
  color: var(--gold);
  font-style: normal;
  letter-spacing: 2px;
}

/* ─── CTA FINAL ─── */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(192, 57, 43, 0.15), transparent 70%);
}
.cta-ornament {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.7;
}
.cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-title em {
  font-style: italic;
  color: var(--red-glow);
}
.cta-copy {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-note {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.52);
}
footer a {
  color: rgba(245, 237, 224, 0.52);
  text-decoration: none;
}
footer a:hover {
  color: var(--gold);
}

/* ─── SAMPLE CARD PREVIEW ─── */
.card-preview-section {
  padding: 100px 24px;
  background: var(--deep);
}
.cards-showcase {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1000px;
}
.game-card {
  width: 280px;
  min-height: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
  cursor: default;
}
.game-card:hover {
  transform: translateY(-10px) rotateY(-4deg);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.6);
  border-color: rgba(201, 169, 110, 0.3);
}
.game-card.blurred .card-text {
  filter: blur(6px);
  user-select: none;
}
.game-card.blurred::after {
  content: var(--unlock-text, '🔒 Unlock this level');
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(8, 6, 8, 0.4);
}
.card-level {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.card-level.romantic {
  color: #a0c4ff;
}
.card-level.spicy {
  color: var(--gold);
}
.card-level.fire {
  color: #ff6b6b;
}
.card-level.hard {
  color: #c084fc;
}
.card-emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
  text-align: center;
}
.card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--cream);
  flex: 1;
}
.card-hint {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 18px 40px;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.07) 0%, transparent 60%);
  border-top: 1px solid rgba(192, 57, 43, 0.18);
  border-bottom: 1px solid rgba(192, 57, 43, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}
.cta-banner-text {
  font-family: var(--ff-serif);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: var(--cream);
  line-height: 1.35;
}
.cta-banner-text em {
  color: var(--red-glow);
  font-style: italic;
}
.cta-banner .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* slide-in from left */
.cta-banner.from-left {
  opacity: 0;
  transform: translateX(-56px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
/* slide-in from right */
.cta-banner.from-right {
  opacity: 0;
  transform: translateX(56px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.cta-banner.from-left.visible,
.cta-banner.from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── MOBILE ─── */
@media (max-width: 640px) {
  nav {
    padding: 16px 20px;
  }
  .nav-cta {
    padding: 10px 10px;
  }
  .hero {
    padding: 100px 20px 70px;
  }
  .section,
  .levels-section,
  .card-preview-section,
  .cta-section,
  .social-section {
    padding: 50px 20px;
  }
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
  }
  .step {
    text-align: center;
  }
  .step-num {
    text-align: center;
  }
  .step-icon {
    text-align: center;
  }
  .feature {
    text-align: center;
  }
  .counter-strip {
    flex-direction: column;
  }
  .counter-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .counter-item:last-child {
    border-bottom: none;
  }
  .cta-banner {
    flex-direction: row;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 14px;
  }
  .cta-banner .btn-primary {
    align-self: center;
  }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section {
  padding: 80px 24px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #1e1520;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid rgba(240, 180, 41, 0.4);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, border-left-color 0.25s;
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--gold);
}

.faq-answer {
  padding: 16px 24px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 0.93rem;
    padding: 16px 18px;
  }
  .faq-answer {
    padding: 14px 18px 18px;
  }
}
