* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cloud: #F5F0EB;
  --sky: #B8D4E3;
  --lavender: #D8B4E2;
  --pink: #F4C2C2;
  --rose: #E8B4B8;
  --gold: #D4AF37;
  --star: #FFF8DC;
  --dark: #1A1A2E;
  --gray: #6B6B80;
  --white: #FFFBFC;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-cute: 'Quicksand', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--dark);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0e6f6; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--pink), var(--lavender)); border-radius: 3px; }

#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e, #2d1b69, #1a1a2e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s, visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-star {
  font-size: 60px;
  animation: spinStar 1.5s ease-in-out infinite, floatY 2s ease-in-out infinite;
}

@keyframes spinStar {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(180deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.loader-text {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; text-shadow: 0 0 10px rgba(212,175,55,0.2); }
  50% { opacity: 1; text-shadow: 0 0 30px rgba(212,175,55,0.6), 0 0 60px rgba(212,175,55,0.2); }
}

/* ===== LIVE BACKGROUND ===== */
#live-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.sky-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #0d0221 0%,
    #1a0a3e 20%,
    #2d1b69 40%,
    #4a2d8a 55%,
    #7b4fa2 70%,
    #b8a9c9 85%,
    #f0e6f6 100%
  );
  animation: skyBreathe 8s ease-in-out infinite alternate;
}

@keyframes skyBreathe {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* CLOUDS */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  animation: cloudDrift linear infinite;
  pointer-events: none;
}

.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 { width: 300px; height: 80px; top: 15%; animation-duration: 60s; }
.cloud-1::before { width: 120px; height: 120px; top: -60px; left: 40px; }
.cloud-1::after { width: 160px; height: 100px; top: -50px; right: 40px; }

.cloud-2 { width: 400px; height: 100px; top: 30%; animation-duration: 80s; animation-delay: -20s; }
.cloud-2::before { width: 150px; height: 150px; top: -75px; left: 60px; }
.cloud-2::after { width: 200px; height: 120px; top: -60px; right: 50px; }

.cloud-3 { width: 250px; height: 70px; top: 50%; animation-duration: 70s; animation-delay: -40s; }
.cloud-3::before { width: 100px; height: 100px; top: -50px; left: 30px; }
.cloud-3::after { width: 130px; height: 80px; top: -40px; right: 30px; }

.cloud-4 { width: 350px; height: 90px; top: 70%; animation-duration: 90s; animation-delay: -10s; }
.cloud-4::before { width: 130px; height: 130px; top: -65px; left: 50px; }
.cloud-4::after { width: 170px; height: 110px; top: -55px; right: 45px; }

@keyframes cloudDrift {
  0% { transform: translateX(-120%); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateX(120vw); opacity: 0; }
}

/* STARS */
.star {
  position: absolute;
  border-radius: 50%;
  background: var(--star);
  animation: starTwinkle ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes starTwinkle {
  0% { opacity: 0.2; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}

/* FLOATIES */
.floaty {
  position: absolute;
  pointer-events: none;
  animation: floatyRise linear infinite;
  opacity: 0;
}

@keyframes floatyRise {
  0% { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(360deg) scale(1.2); opacity: 0; }
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s;
}

#navbar.scrolled {
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.nav-item {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--font-cute);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  border-radius: 2px;
  transition: width 0.4s;
}

.nav-item:hover, .nav-item.active { color: var(--white); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }

.nav-toggle { display: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-cute);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 28px;
  border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 0 40px rgba(216, 180, 226, 0.3), 0 0 80px rgba(216, 180, 226, 0.1);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--font-cute);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: linear-gradient(135deg, #e8a0b4, #c084fc, #93c5fd);
  background-size: 200% 200%;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s;
  animation: gradShift 4s ease infinite;
}

@keyframes gradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(192, 132, 252, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--font-cute);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--font-cute);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
}

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

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  animation: bounceY 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

.badge {
  font-family: var(--font-cute);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 56px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(216, 180, 226, 0.2);
}

/* ===== STORY ===== */
.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.story-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 180, 226, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(216, 180, 226, 0.1);
}

.story-icon { font-size: 40px; margin-bottom: 16px; }

.story-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.story-card p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* ===== REASONS ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.reason-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.reason-card:hover::before { transform: scaleX(1); }

.reason-card:hover {
  border-color: rgba(216, 180, 226, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.r-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.reason-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.reason-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== PROMISE ===== */
.promise-box {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 56px 48px;
  position: relative;
  text-align: center;
}

.promise-ornament {
  font-size: 36px;
  margin-bottom: 24px;
  animation: floatY 3s ease-in-out infinite;
}

.promise-line {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-weight: 300;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.promise-line.reveal { opacity: 1; transform: translateY(0); }

.promise-sign {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--lavender);
  opacity: 0;
  transition: opacity 0.6s ease 0.5s;
}

.promise-sign.reveal { opacity: 1; }

/* ===== LOVE METER ===== */
.meter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.meter-ring-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.meter-svg { width: 100%; height: 100%; }

#meterCircle {
  transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(216, 180, 226, 0.3));
}

.meter-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#meterScore {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
}

.meter-msg {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
  min-height: 32px;
}

.meter-emoji {
  font-size: 24px;
  min-height: 32px;
  text-align: center;
}

/* ===== GAMES ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
}

.game-card:hover {
  border-color: rgba(216, 180, 226, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(216, 180, 226, 0.08);
}

.g-icon { font-size: 44px; margin-bottom: 12px; }

.game-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}

.game-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.g-tag {
  display: inline-block;
  font-family: var(--font-cute);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lavender);
  border: 1px solid rgba(216, 180, 226, 0.2);
  padding: 6px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

.game-card:hover .g-tag { background: rgba(216, 180, 226, 0.08); }

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

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

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.8);
  backdrop-filter: blur(16px);
}

.modal-box {
  position: relative;
  background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(45,27,105,0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 44px;
  max-width: 480px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-x {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 20px;
  cursor: pointer;
  font-family: var(--font-cute);
  transition: color 0.3s;
}

.modal-x:hover { color: var(--white); }

/* Game internals */
.mem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 16px; }
.mem-card {
  aspect-ratio: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer; transition: all 0.3s; color: rgba(255,255,255,0.3);
}
.mem-card:hover { border-color: rgba(216,180,226,0.3); }
.mem-card.flipped { border-color: var(--lavender); background: rgba(216,180,226,0.08); color: var(--white); }
.mem-card.matched { border-color: var(--rose); background: rgba(232,180,184,0.1); color: var(--rose); cursor: default; }

.quiz-q {
  font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 20px; line-height: 1.5;
}
.quiz-opts { display: flex; flex-direction: column; gap: 8px; }
.quiz-btn {
  padding: 14px 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 16px;
  cursor: pointer; text-align: left; transition: all 0.3s;
}
.quiz-btn:hover { border-color: rgba(216,180,226,0.2); background: rgba(255,255,255,0.05); }
.quiz-btn.correct { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }
.quiz-btn.wrong { border-color: #e8a0b4; color: #e8a0b4; background: rgba(232,160,180,0.08); }

.catch-area {
  position: relative; width: 100%; height: 340px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden; margin-top: 16px;
}
.catch-star {
  position: absolute; font-size: 26px; cursor: pointer; transition: all 0.2s; user-select: none;
}
.catch-star:hover { transform: scale(1.4); }
.catch-star.caught { opacity: 0; pointer-events: none; }

.magic-ball {
  text-align: center; padding: 20px 0;
}
.magic-circle {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2d1b69, #1a1a2e);
  border: 3px solid rgba(216,180,226,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 20px auto; position: relative; box-shadow: 0 0 40px rgba(216,180,226,0.1);
}
.magic-triangle {
  width: 0; height: 0; border-left: 30px solid transparent; border-right: 30px solid transparent;
  border-top: 50px solid rgba(255,255,255,0.05); position: relative;
}
.magic-msg {
  font-family: var(--font-cute); font-size: 13px; color: var(--white); text-align: center;
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); white-space: nowrap;
}
.magic-input {
  width: 80%; padding: 12px 20px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; color: var(--white);
  font-family: var(--font-cute); font-size: 14px; text-align: center; outline: none; margin-top: 50px;
}
.magic-input:focus { border-color: var(--lavender); }

.game-hud {
  display: flex; justify-content: space-between;
  font-family: var(--font-cute); font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.game-hud b { color: var(--white); }

.game-end { text-align: center; padding: 24px 0; }
.game-end h3 { font-family: var(--font-display); font-size: 24px; color: var(--lavender); margin-bottom: 8px; }
.game-end p { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

/* ===== PROPOSAL ===== */
.proposal-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.proposal-deco {
  font-size: 28px;
  letter-spacing: 16px;
  margin-bottom: 24px;
  animation: floatY 3s ease-in-out infinite;
}

.proposal-letter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 44px 36px;
  margin-bottom: 32px;
  text-align: left;
}

.proposal-letter p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 14px;
}

.proposal-letter p:first-child {
  font-size: 22px;
  color: var(--white);
  font-family: var(--font-display);
}

.proposal-q {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--lavender);
  margin-bottom: 32px;
  line-height: 1.3;
}

.proposal-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.proposal-yes { animation: pulseGlow 2s ease-in-out infinite; }

.proposal-resp {
  margin-top: 24px;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: 20px;
}

/* ===== FINAL ===== */
.final-box {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 48px 40px;
}

.final-box p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}

.final-sign {
  margin-top: 32px;
  text-align: right;
}

.final-sign span {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.final-sign strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--lavender);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 60px 40px;
}

.footer-divider {
  font-size: 20px;
  letter-spacing: 12px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.footer p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.footer strong { color: rgba(255, 255, 255, 0.8); }

.footer-q {
  font-style: italic !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 16px !important;
}

/* ===== HERO QUOTE ===== */
.hero-quote {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-top: -32px;
  margin-bottom: 40px;
  min-height: 24px;
  transition: opacity 0.6s;
}

/* ===== MOOD HEARTS ===== */
.hero-mood {
  position: fixed;
  pointer-events: none;
  z-index: 999;
}

.mood-heart {
  position: absolute;
  font-size: 16px;
  animation: moodFloat 2s ease-out forwards;
  pointer-events: none;
}

@keyframes moodFloat {
  0% { transform: translateY(0) scale(0.5); opacity: 1; }
  100% { transform: translateY(-120px) scale(1.5); opacity: 0; }
}

/* ===== COUNTDOWN ===== */
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.countdown-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 80px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.cd-label {
  display: block;
  font-family: var(--font-cute);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

.cd-dot {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,0.2);
  animation: pulseDot 1s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.cd-msg {
  text-align: center;
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ===== DREAMS ===== */
.dreams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.dream-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.5s;
  cursor: default;
}

.dream-card:hover {
  border-color: rgba(216,180,226,0.2);
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px) scale(1.02);
}

.dream-icon { font-size: 36px; display: block; margin-bottom: 12px; }

.dream-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 6px;
}

.dream-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.4);
}

/* ===== HEARTBEAT ===== */
.heartbeat {
  position: fixed;
  bottom: 24px;
  left: 24px;
  font-size: 20px;
  z-index: 100;
  animation: heartPulse 1.5s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s;
  user-select: none;
}

.heartbeat:hover { transform: scale(1.5); }

@keyframes heartPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 10px rgba(255,107,157,0.2); }
  14% { transform: scale(1.3); text-shadow: 0 0 20px rgba(255,107,157,0.4); }
  28% { transform: scale(1); text-shadow: 0 0 10px rgba(255,107,157,0.2); }
  42% { transform: scale(1.3); text-shadow: 0 0 20px rgba(255,107,157,0.4); }
  70% { transform: scale(1); text-shadow: 0 0 10px rgba(255,107,157,0.2); }
}

/* ===== ROSE LAYER ===== */
.rose-layer { position: fixed; inset: 0; pointer-events: none; z-index: 6000; }

.rose-flying {
  position: absolute;
  font-size: 32px;
  animation: roseFly linear forwards;
  pointer-events: none;
}

@keyframes roseFly {
  0% { transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.5); opacity: 1; }
  50% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(200px) rotate(360deg) scale(1.2); opacity: 0; }
}

/* ===== FLOATING LOVE NOTES ===== */
.love-note {
  position: fixed;
  background: rgba(26,26,46,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(216,180,226,0.1);
  border-radius: 16px;
  padding: 16px 22px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  z-index: 5000;
  pointer-events: none;
  animation: noteFloat 6s ease-out forwards;
  max-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

@keyframes noteFloat {
  0% { transform: translateY(20px) scale(0.8); opacity: 0; }
  15% { opacity: 1; transform: translateY(-10px) scale(1); }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.9); }
}

/* ===== EASTER EGG GLOW ===== */
.easter-egg {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

.easter-egg:active { animation: wobble 0.5s ease; }

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-5deg); }
}

/* ===== SECRET CLICK ===== */
.secret-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  animation: sparkleBurst 0.8s ease-out forwards;
}

@keyframes sparkleBurst {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  100% { transform: scale(2) rotate(180deg) translateY(-40px); opacity: 0; }
}

/* ===== SHAKE (for magic 8 ball) ===== */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-8px) rotate(-2deg); }
  20% { transform: translateX(8px) rotate(2deg); }
  30% { transform: translateX(-6px) rotate(-1deg); }
  40% { transform: translateX(6px) rotate(1deg); }
  50% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  70% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}

/* ===== MUSIC PLAYER ===== */
.music-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
}

.music-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(216,180,226,0.15);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.music-btn:hover {
  transform: scale(1.1);
  border-color: rgba(216,180,226,0.3);
  box-shadow: 0 4px 30px rgba(216,180,226,0.15);
}

.music-btn.playing {
  animation: musicPulse 2s ease-in-out infinite;
}

@keyframes musicPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 rgba(216,180,226,0); }
  50% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px rgba(216,180,226,0.2); }
}

.music-info {
  font-family: var(--font-cute);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  background: rgba(26,26,46,0.8);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.04);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s;
  pointer-events: none;
}

.music-player:hover .music-info {
  opacity: 1;
  transform: translateX(0);
}

/* ===== NOTIF ===== */
.notif {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 14px 28px;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}

.notif.show { transform: translateY(0); opacity: 1; }

/* ===== CONFETTI ===== */
.confetti-p {
  position: fixed;
  pointer-events: none;
  z-index: 5000;
  animation: confFall linear forwards;
}

@keyframes confFall {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 14px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26,26,46,0.98); padding: 24px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .section { padding: 80px 24px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .story-cards { grid-template-columns: 1fr; }
  .promise-box, .proposal-letter, .final-box { padding: 32px 24px; }
  .countdown-wrap { gap: 6px; }
  .countdown-box { padding: 12px 14px; min-width: 60px; }
  .cd-num { font-size: 24px; }
  .heartbeat { display: none; }
}
