:root {
  --bg-deep: #0f0205;
  --bg-card: rgba(35, 7, 15, 0.85);
  --gold-300: #ffd875;
  --gold-400: #e5b03b;
  --gold-500: #c68a1d;
  --gold-glow: rgba(245, 182, 59, 0.4);
  --crimson-400: #d62246;
  --crimson-600: #93112c;
  --cream: #fff8eb;
  --muted: #cbb4ba;
  --border-gold: rgba(229, 176, 59, 0.28);
  --border-active: rgba(255, 216, 117, 0.9);
  
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  color: var(--cream);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

.ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 600px;
  height: 480px;
  background: radial-gradient(circle at 50% 20%, rgba(214, 34, 70, 0.3) 0%, rgba(229, 176, 59, 0.15) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.particle-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-petal {
  position: absolute;
  bottom: -30px;
  animation: floatUpward linear infinite;
  opacity: 0.7;
  filter: drop-shadow(0 0 5px rgba(255, 216, 117, 0.4));
}

@keyframes floatUpward {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.9; }
  100% { transform: translateY(-105vh) rotate(360deg); opacity: 0; }
}

.music-toggle-btn {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 99;
  background: rgba(35, 7, 15, 0.9);
  border: 1px solid var(--gold-400);
  color: var(--gold-300);
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.music-toggle-btn.playing {
  border-color: var(--gold-300);
  box-shadow: 0 0 14px var(--gold-glow);
}

.app-wrapper {
  width: 100%;
  max-width: 460px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.view-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 1.25rem 1.25rem 5rem;
  width: 100%;
}

.view-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-back {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
}

.step-indicator {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.screen-title-box {
  text-align: center;
  margin-bottom: 1.75rem;
}

.screen-title-box h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-300);
  margin-bottom: 0.35rem;
}

.screen-title-box p {
  color: var(--muted);
  font-size: 0.88rem;
}

.btn-gold {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  color: #27060d;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease;
}

.btn-gold:active { transform: scale(0.98); }
.btn-gold.disabled, .btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-gold-outline {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--gold-400);
  color: var(--gold-300);
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 12px;
  cursor: pointer;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--cream);
  padding: 13px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Landing Page Visuals */
.hero-section { text-align: center; padding-top: 1rem; }
.badge-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(229, 176, 59, 0.12);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.badge-pill.mini { font-size: 0.65rem; padding: 3px 10px; margin-bottom: 0.75rem; }

.hero-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.75rem;
}
.hero-title span { color: var(--gold-300); }
.hero-sub { color: var(--muted); font-size: 0.9rem; line-height: 1.45; margin-bottom: 1.5rem; }

.visual-composition {
  position: relative;
  width: 240px;
  height: 120px;
  margin: 0.5rem auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-halo {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(10px);
}
.rakhi-side, .rakhi-center {
  border-radius: 50%;
  background: #110306;
  border: 2px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rakhi-side img, .rakhi-center img { width: 100%; height: 100%; object-fit: cover; }
.rakhi-side { width: 60px; height: 60px; z-index: 1; }
.rakhi-side.left { transform: translateX(14px) scale(0.9); }
.rakhi-side.right { transform: translateX(-14px) scale(0.9); }
.rakhi-center { width: 90px; height: 90px; z-index: 2; border-color: var(--gold-300); box-shadow: 0 0 25px var(--gold-glow); }
.fallback-icon { font-size: 1.5rem; display: none; }

.micro-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.85rem;
}
.micro-points .dot { color: var(--gold-400); }

.value-prop { margin: 2.5rem 0 1.5rem; }
.section-heading { font-family: var(--font-serif); font-size: 1.15rem; text-align: center; color: var(--gold-300); margin-bottom: 1.2rem; }
.features-grid { display: grid; gap: 0.85rem; }
.feature-item { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 14px; padding: 1rem; }
.feature-item h3 { font-size: 0.95rem; color: #fff; margin-bottom: 0.2rem; }
.feature-item p { color: var(--muted); font-size: 0.82rem; line-height: 1.4; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.label-with-hint { display: flex; justify-content: space-between; align-items: center; }
.label-with-hint small { color: var(--gold-400); }
input[type="text"] {
  width: 100%;
  background: rgba(20, 3, 7, 0.85);
  border: 1px solid var(--border-gold);
  color: #fff;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
}
input[type="text"]:focus { border-color: var(--gold-400); box-shadow: 0 0 12px var(--gold-glow); }

.message-cards-list { display: flex; flex-direction: column; gap: 0.65rem; max-height: 250px; overflow-y: auto; }
.msg-card {
  background: rgba(45, 10, 19, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.msg-card.selected {
  border-color: var(--border-active);
  background: linear-gradient(135deg, rgba(85, 12, 31, 0.9) 0%, rgba(45, 10, 19, 0.9) 100%);
  box-shadow: 0 0 15px var(--gold-glow);
}
.msg-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg-card.selected .msg-radio-custom::after { content: "✓"; font-size: 10px; color: var(--gold-300); font-weight: bold; }
.msg-card-text { font-size: 0.82rem; line-height: 1.4; }

/* Payment Screen */
.order-summary-card { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 16px; padding: 1.35rem; margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; }
.summary-label { color: var(--muted); }
.summary-val { font-weight: 600; }
.features-included-list { font-size: 0.8rem; color: var(--gold-300); display: flex; flex-direction: column; gap: 6px; margin: 0.5rem 0; }
.divider { height: 1px; background: var(--border-gold); margin: 1rem 0; }
.price-box { display: flex; justify-content: space-between; align-items: center; }
.price-tag { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--gold-300); }
.secure-badge { font-size: 0.72rem; color: var(--muted); margin-top: 0.85rem; text-align: center; }

/* Top Navigation Bar */
.exp-top-bar { margin-bottom: 0.8rem; }
.exp-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
#expProgressText {
  font-size: 0.8rem;
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-preview-back, .btn-preview-next {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
}
.exp-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.exp-progress-fill {
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-400), var(--crimson-400));
  transition: width 0.4s ease;
}

/* Preview Mode Banner */
.preview-mode-banner {
  background: linear-gradient(90deg, #93112c 0%, #4a0714 100%);
  border: 1px dashed var(--gold-400);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.preview-mode-banner.hidden { display: none; }
.btn-mini-unlock {
  background: var(--gold-300);
  color: #1a0309;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.72rem;
  cursor: pointer;
}

/* Sticky Preview Floating Bottom Bar */
.sticky-preview-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 460px;
  background: rgba(26, 3, 8, 0.95);
  border-top: 1.5px solid var(--gold-400);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 90;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
}
.sticky-preview-bottom-bar.hidden { display: none; }
.sp-text { display: flex; flex-direction: column; }
.sp-text span { font-size: 0.72rem; color: var(--muted); }
.sp-text strong { font-size: 0.85rem; color: var(--gold-300); }
.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  color: #1a0309;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  text-transform: uppercase;
}

/* Page Transition */
.exp-page {
  display: none;
  animation: fadeInSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.exp-page.active { display: block; }
@keyframes fadeInSlide {
  0% { opacity: 0; transform: translateY(16px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.page-theme-box {
  border-radius: 24px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}
.ch-heading { font-family: var(--font-serif); font-size: 1.35rem; color: #fff; margin-bottom: 0.3rem; }
.ch-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.4; }

/* Chapter Specific Styles */
.gift-box-theme { background: radial-gradient(circle at 50% 30%, #4f081a 0%, #150207 100%); border: 2px solid var(--gold-400); }
.gift-anim-stage { padding: 2.5rem 0 1.5rem; cursor: pointer; }
.gift-box-3d {
  width: 110px; height: 110px; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, #e5b03b 0%, #9e102e 100%);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; box-shadow: 0 0 35px var(--gold-glow); position: relative;
  animation: giftBounce 2s infinite ease-in-out;
}
@keyframes giftBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.05); } }
.gift-sparkles { position: absolute; top: -12px; right: -12px; font-size: 1.5rem; animation: spinSlow 4s linear infinite; }
@keyframes spinSlow { 100% { transform: rotate(360deg); } }
.tap-hint-anim { font-size: 0.85rem; color: var(--gold-300); font-weight: 600; }
.unboxed-content.hidden { display: none; }
.reveal-badge { font-size: 0.75rem; letter-spacing: 2px; color: var(--gold-400); text-transform: uppercase; margin-bottom: 0.5rem; }
.reveal-names { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; margin-bottom: 1.5rem; }

.royal-welcome-theme { background: radial-gradient(circle at 50% 0%, #680d23 0%, #1e030a 100%); border: 2px solid var(--border-active); }
.ornate-sub { font-size: 0.72rem; letter-spacing: 3px; color: var(--gold-400); text-transform: uppercase; margin-bottom: 0.5rem; }
.ch-big-title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold-300); margin-bottom: 1.5rem; }
.royal-avatar-circle { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--gold-400); margin: 0 auto 1.5rem; overflow: hidden; box-shadow: 0 0 30px var(--gold-glow); }
.royal-avatar-circle img { width: 100%; height: 100%; object-fit: cover; }
.names-showcase { display: flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-serif); font-size: 1.4rem; color: #fff; margin-bottom: 1.2rem; }
.heart-pulse { animation: pulse 1.2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.welcome-short-note { font-size: 0.88rem; color: var(--cream); line-height: 1.5; margin-bottom: 1.5rem; }

.cards-theme { background: #190308; border: 1px solid var(--border-gold); }
.bond-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.5rem; }
.bond-tile { background: rgba(45, 10, 19, 0.8); border: 1px solid var(--border-gold); border-radius: 14px; padding: 1rem 0.8rem; min-height: 110px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.bond-tile.full-width { grid-column: span 2; min-height: 90px; }
.tile-front span { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.tile-front h4 { font-size: 0.88rem; color: var(--gold-300); }
.tile-front small { font-size: 0.68rem; color: var(--muted); }
.tile-back { display: none; font-size: 0.78rem; color: var(--cream); line-height: 1.4; text-align: left; }
.bond-tile.flipped { background: linear-gradient(135deg, #5c0d20 0%, #30050f 100%); border-color: var(--gold-400); }
.bond-tile.flipped .tile-front { display: none; }
.bond-tile.flipped .tile-back { display: block; }

.ceremony-theme { background: radial-gradient(circle at 50% 50%, #3d0714 0%, #150207 100%); border: 1.5px solid var(--gold-400); }
.ritual-stepper { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.ritual-step-card { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border-gold); border-radius: 14px; padding: 0.85rem 1rem; display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer; transition: all 0.2s ease; }
.ritual-step-card.active { border-color: var(--gold-400); background: rgba(229, 176, 59, 0.12); box-shadow: 0 0 15px var(--gold-glow); }
.ritual-step-card.completed { border-color: #25d366; background: rgba(37, 211, 102, 0.08); }
.ritual-step-card.locked { opacity: 0.5; cursor: not-allowed; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-400); color: #110306; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.ritual-step-card.completed .step-num { background: #25d366; color: #fff; }
.step-details h4 { font-size: 0.88rem; color: #fff; }
.step-details p { font-size: 0.72rem; color: var(--muted); }
.step-status { margin-left: auto; font-size: 0.72rem; color: var(--gold-300); font-weight: 600; }

.message-letter-theme { background: #20040a; border: 1.5px solid var(--border-gold); }
.wax-seal { font-size: 2.2rem; margin-bottom: 0.3rem; }
.letter-parchment { background: #fbf5e5; color: #2b1117; border-radius: 12px; padding: 1.4rem 1.1rem; text-align: left; margin-bottom: 1.4rem; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); }
.parchment-text { font-family: var(--font-hand); font-size: 1.25rem; line-height: 1.5; min-height: 80px; }
.parchment-sign { font-family: var(--font-hand); font-size: 1.15rem; font-weight: 700; text-align: right; margin-top: 1rem; color: #730f25; }
.letter-actions { display: flex; gap: 8px; }
.letter-actions .btn-gold { flex: 2; }

.game-theme { background: radial-gradient(circle at 50% 20%, #4d0d1f 0%, #170208 100%); border: 2px solid var(--border-active); }
.quiz-card { background: rgba(0, 0, 0, 0.35); border: 1px solid var(--border-gold); border-radius: 16px; padding: 1.4rem 1rem; }
.quiz-card h3 { font-size: 1rem; color: var(--gold-300); margin-bottom: 1.2rem; line-height: 1.4; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt-btn { background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border-gold); color: #fff; padding: 12px; border-radius: 12px; font-size: 0.95rem; cursor: pointer; font-weight: 600; }
.quiz-opt-btn:active { background: var(--gold-400); color: #000; }
.quiz-result-box { background: rgba(0, 0, 0, 0.4); border: 2px solid var(--gold-400); border-radius: 16px; padding: 1.5rem 1rem; }
.quiz-result-box.hidden { display: none; }
.trophy-anim { font-size: 3rem; margin-bottom: 0.5rem; animation: pulse 1s infinite; }
.quiz-result-box h3 { font-size: 1.1rem; color: var(--gold-300); margin-bottom: 0.4rem; }
.quiz-result-box p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; }

/* Chapter 5: Shagun Lifafa */
.shagun-vault-theme {
  background: #1c0309;
  border: 2px dashed var(--gold-400);
}

.envelope-wrapper {
  width: 100%;
  max-width: 320px;
  min-height: 140px;
  height: auto;
  margin: 1.5rem auto;
  background: #85122b;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.envelope-seal {
  font-size: 2.2rem;
  position: relative;
  z-index: 2;
}

.envelope-letter {
  display: none;
  width: 100%;
  background: #fff8eb;
  color: #3b0612;
  border-radius: 12px;
  padding: 16px 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.envelope-letter h4 {
  color: #85122b;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

#lifafaPromiseText {
  color: #2b1117;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
}

.envelope-wrapper.open {
  display: block !important;
  min-height: auto !important;
  height: auto !important;
  padding: 12px !important;
}

.envelope-wrapper.open .envelope-body,
.envelope-wrapper.open .envelope-seal,
.envelope-wrapper.open .envelope-top-flap {
  display: none !important;
}

.envelope-wrapper.open .envelope-letter {
  display: block !important;
  position: static !important;
  inset: auto !important;
  animation: fadeInSlide 0.3s ease forwards;
}

.shagun-note {
  font-size: 0.8rem;
  color: var(--gold-300);
  margin-bottom: 1.4rem;
}

.wishes-theme { background: radial-gradient(circle at 50% 0%, #3d0714 0%, #150207 100%); border: 1px solid var(--border-gold); }
.wishes-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.wish-item { background: rgba(45, 10, 19, 0.7); border: 1px solid var(--border-gold); border-radius: 14px; padding: 0.9rem; display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer; }
.wish-item.activated { border-color: var(--gold-300); background: rgba(229, 176, 59, 0.15); box-shadow: 0 0 15px var(--gold-glow); }
.wish-icon { font-size: 1.5rem; }
.wish-content h4 { font-size: 0.88rem; color: #fff; }
.wish-content p { font-size: 0.72rem; color: var(--muted); }
.wish-check { margin-left: auto; font-size: 0.75rem; color: var(--gold-300); font-weight: 700; }
.wish-item.activated .wish-check { color: #25d366; }

.grand-finale-theme { background: radial-gradient(circle at 50% 50%, #610d22 0%, #150207 100%); border: 2px solid var(--border-active); box-shadow: 0 0 40px var(--gold-glow); }
.grand-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-300); margin-bottom: 1.5rem; }
.celebration-circle { width: 150px; height: 150px; border-radius: 50%; border: 3px dashed var(--gold-400); margin: 0 auto 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; color: #fff; background: rgba(0, 0, 0, 0.4); }
.infinity-symbol { font-size: 1.6rem; color: var(--crimson-400); }
.quote-box-finale { background: rgba(0, 0, 0, 0.35); border-radius: 12px; padding: 1rem; font-size: 0.88rem; font-style: italic; margin-bottom: 1.5rem; color: var(--cream); }
.finale-buttons { display: flex; flex-direction: column; gap: 10px; }

/* Chapter 8: Share & QR */
.share-hub-theme { background: #1e040a; border: 1.5px solid var(--border-gold); }
.lock-icon-huge { font-size: 3.5rem; margin-bottom: 0.5rem; }
.share-unlocked-state.hidden { display: none; }
.share-locked-state.hidden { display: none; }

.qr-card { background: #fff; border-radius: 16px; padding: 1.2rem; width: 200px; margin: 0 auto 1.5rem; color: #111; text-align: center; }
.qrcode-wrapper { display: flex; justify-content: center; margin-bottom: 0.5rem; }
.qr-card small { font-size: 0.65rem; color: #555; display: block; }
.final-share-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-share-whatsapp { background: #25d366; color: #0c3318; font-weight: 800; font-size: 0.95rem; padding: 14px; border-radius: 12px; border: none; cursor: pointer; text-transform: uppercase; }
.btn-copy-link { background: transparent; border: 1px solid var(--gold-400); color: var(--gold-300); font-weight: 600; padding: 13px; border-radius: 12px; cursor: pointer; }
.btn-reset { background: none; border: none; color: var(--muted); font-size: 0.82rem; cursor: pointer; text-decoration: underline; margin-top: 10px; }