/* ==========================================================================
   BIRTHDAY WEBSITE - PURE LIGHT THEME EDITION
   Dedicated to Adhi (Icha) ❤️ | Forever by ur Annu
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Caveat:wght@600;700&family=Cormorant+Garamond:ital,wght@0,600;1,400;1,600&family=Inter:ital,wght@0,300;0,400;0,600;0,800;1,400&family=Montserrat:wght@400;500;600;700&family=Outfit:wght@400;600;800;900&family=Playfair+Display:ital,wght@0,600;1,400;1,700&family=Space+Mono:wght@400;700&family=Syne:wght@700;800&display=swap');

:root {
  --rose:     #e8547a;
  --rose-lt:  #f9b8cb;
  --blush:    #fde8ef;
  --blush2:   #fcd5e0;
  --petal:    #fff0f5;
  --gold:     #d4956a;
  --gold-lt:  #f5c9a0;
  --mauve:    #c2607a;
  --cream:    #fff8fb;
  --ink:      #3a1828;
  --ink-soft: #6b3050;
  --bg:       #fff0f4;

  --rose-dark: #c2607a;
  --glass-bg: rgba(255, 248, 251, 0.95);
  --glass-border: rgba(249, 184, 203, 0.65);
  --glass-shadow: 0 15px 38px rgba(232, 84, 122, 0.12);

  --font-display: 'Archivo Black', sans-serif;
  --font-syne: 'Syne', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-mono: 'Space Mono', monospace;
  --font-hand: 'Caveat', cursive;
  --font-sans: 'Inter', sans-serif;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* No scrolling needed for step presentation */
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--ink);
  user-select: none;
}

/* --------------------------------------------------------------------------
   00. PREMIUM PASSCODE PROTECTION GATE SCREEN (MATCHING DESIGN SCRIPT)
   -------------------------------------------------------------------------- */
.passcode-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fde8ef 0%, #fff0f5 45%, #fce4ec 100%);
  overflow: hidden;
}

.passcode-ambient-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 201, 160, 0.35) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(249, 184, 203, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.passcode-floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p-heart {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: floatSparkle 4s ease-in-out infinite alternate;
}

.p-heart.ph-1 { top: 8%; left: 8%; animation-delay: 0s; font-size: 2rem; }
.p-heart.ph-2 { top: 12%; right: 10%; animation-delay: 1s; }
.p-heart.ph-3 { top: 45%; left: 6%; animation-delay: 2s; }
.p-heart.ph-4 { bottom: 18%; right: 12%; animation-delay: 1.5s; font-size: 2.2rem; }
.p-heart.ph-5 { bottom: 8%; right: 25%; animation-delay: 2.5s; font-size: 2.5rem; }

.passcode-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 360px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.passcode-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.passcode-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

/* 4 PIN DIGIT DISPLAY BOXES */
.pin-display-boxes {
  display: flex;
  gap: 14px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.pin-display-boxes.error-shake {
  animation: shakeError 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shakeError {
  10%, 90% { transform: translate3d(-3px, 0, 0); }
  20%, 80% { transform: translate3d(5px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-7px, 0, 0); }
  40%, 60% { transform: translate3d(7px, 0, 0); }
}

.pin-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(249, 184, 203, 0.6);
  box-shadow: 0 6px 18px rgba(232, 84, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pin-star {
  font-size: 1.4rem;
  color: var(--rose);
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.25s ease;
}

.pin-box.filled {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--rose);
  box-shadow: 0 8px 22px rgba(232, 84, 122, 0.28);
  transform: scale(1.05);
}

.pin-box.filled .pin-star {
  opacity: 1;
  transform: scale(1);
}

.pin-display-boxes.success .pin-box {
  border-color: #4caf50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

/* 3x4 CIRCULAR KEYPAD */
.keypad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 22px;
  margin-bottom: 1.5rem;
}

.key-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(249, 184, 203, 0.5);
  box-shadow: 0 6px 20px rgba(232, 84, 122, 0.12);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  touch-action: manipulation;
}

.key-btn:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: scale(1.08);
  border-color: var(--rose);
  box-shadow: 0 10px 25px rgba(232, 84, 122, 0.25);
}

.key-btn:active {
  transform: scale(0.95);
  background: var(--rose-lt);
}

.key-btn.spec-key {
  font-size: 1.2rem;
  color: var(--mauve);
}

.passcode-hint-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mauve);
  background: var(--blush);
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid var(--rose-lt);
}

/* --------------------------------------------------------------------------
   0. MODERN LUXURY GIFT UNWRAPPING LOADER SCREEN (PURE LIGHT THEME)
   -------------------------------------------------------------------------- */
.gift-loader-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--cream) 0%, var(--petal) 60%, var(--bg) 100%);
  overflow: hidden;
}

.loader-ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.loader-ambient-glow.orb-1 {
  top: 15%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 184, 203, 0.45) 0%, rgba(232, 84, 122, 0.15) 70%, transparent 100%);
}

.loader-ambient-glow.orb-2 {
  bottom: 15%;
  right: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 201, 160, 0.45) 0%, rgba(212, 149, 106, 0.15) 70%, transparent 100%);
}

.loader-card {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 520px;
  width: 90vw;
  padding: 2.5rem 2rem;
  background: rgba(255, 248, 251, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--rose-lt);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(232, 84, 122, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  border: 1px solid var(--rose-lt);
  padding: 5px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mauve);
  margin-bottom: 1rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 8px var(--rose);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.gift-box-stage {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0.5rem auto;
  cursor: pointer;
}

.gift-glow-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 84, 122, 0.3) 0%, transparent 70%);
  animation: giftRingPulse 2s infinite alternate;
}

@keyframes giftRingPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.9; }
}

.gift-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 10px 20px rgba(232, 84, 122, 0.25));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gift-box-stage:hover .gift-svg {
  transform: scale(1.08) rotate(-2deg);
}

.gift-sparkles-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.g-spark {
  position: absolute;
  font-size: 1.2rem;
  animation: floatSparkle 3s ease-in-out infinite alternate;
}

.g-spark.sp-1 { top: 0; left: 10%; animation-delay: 0s; }
.g-spark.sp-2 { top: 20%; right: 5%; animation-delay: 1s; }
.g-spark.sp-3 { bottom: 10%; left: 15%; animation-delay: 2s; }

.loader-title {
  font-family: var(--font-syne);
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
  margin-top: 0.8rem;
  line-height: 1.3;
}

.loader-subtitle {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--mauve);
  margin-top: 4px;
}

.loader-progress-container {
  width: 80%;
  height: 6px;
  background: var(--blush2);
  border-radius: 10px;
  margin: 1.4rem auto 1.2rem;
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%);
  border-radius: 10px;
}

.open-gift-btn {
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 12px 30px;
  border-radius: 30px;
  border: 1.5px solid var(--rose-lt);
  box-shadow: 0 8px 22px rgba(232, 84, 122, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulseBlowBtn 2s infinite alternate;
}

.open-gift-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 30px rgba(232, 84, 122, 0.5);
}

/* --------------------------------------------------------------------------
   1. HERO COVER SECTION (PURE LIGHT THEME)
   -------------------------------------------------------------------------- */
.hero-cover-section {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.92) contrast(1.02);
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero-cover-section:hover .hero-bg-image {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 240, 244, 0.55) 0%, rgba(253, 232, 239, 0.92) 100%),
              linear-gradient(180deg, rgba(255, 248, 251, 0.4) 0%, transparent 40%, rgba(255, 240, 244, 0.95) 100%);
  pointer-events: none;
}

.hero-top-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.glass-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 248, 251, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--rose-lt);
  padding: 6px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(232, 84, 122, 0.12);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--mauve);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.hero-age-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -0.5rem;
}

.hero-21-badge {
  font-family: var(--font-syne);
  font-size: clamp(5rem, 15vw, 9.5rem);
  font-weight: 800;
  line-height: 0.85;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 20px rgba(232, 84, 122, 0.25));
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0.5rem;
}

.hero-title .title-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--ink);
}

.hero-title .title-bold {
  font-family: var(--font-syne);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 4px 15px rgba(232, 84, 122, 0.2));
}

.hero-title .title-bold small {
  font-size: 0.55em;
  color: var(--mauve);
}

.hero-gold-divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--rose) 50%, transparent 100%);
  margin: 1.2rem 0;
  border-radius: 2px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 620px;
  font-weight: 500;
}

.hero-time-readout {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mauve);
  background: var(--cream);
  padding: 6px 20px;
  border-radius: 20px;
  border: 1px solid var(--rose-lt);
  box-shadow: 0 4px 15px rgba(232, 84, 122, 0.1);
}

.hero-start-btn {
  margin-top: 1.8rem;
  font-family: var(--font-outfit);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 14px 38px;
  border-radius: 40px;
  border: 1.5px solid var(--rose-lt);
  box-shadow: 0 10px 28px rgba(232, 84, 122, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseStart 2s infinite alternate;
}

.hero-start-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 35px rgba(232, 84, 122, 0.5);
}

@keyframes pulseStart {
  0% { box-shadow: 0 8px 24px rgba(232, 84, 122, 0.3); }
  100% { box-shadow: 0 14px 36px rgba(232, 84, 122, 0.55); }
}

.hero-bottom-hint {
  position: relative;
  z-index: 10;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   2. STEP-BY-STEP INTERACTIVE APP CONTAINER (PURE LIGHT THEME)
   -------------------------------------------------------------------------- */
.story-app-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at center, var(--cream) 0%, var(--petal) 60%, var(--bg) 100%);
  z-index: 90;
}

/* TOP CONTROL NAVIGATION BAR (PURE LIGHT THEME) */
.app-top-nav {
  height: 60px;
  padding: max(6px, env(safe-area-inset-top)) 1.5rem 6px 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(255, 248, 251, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rose-lt);
  box-shadow: 0 4px 16px rgba(232, 84, 122, 0.08);
  z-index: 30;
  box-sizing: border-box;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 380px;
  min-width: 0;
}

.nav-home-btn, .nav-action-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--petal);
  border: 1px solid var(--rose-lt);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  touch-action: manipulation;
}

.nav-home-btn:hover, .nav-action-btn:hover {
  background: var(--rose);
  color: #ffffff;
  border-color: var(--rose-lt);
}

.nav-action-btn.highlight-btn {
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  color: #ffffff;
  border-color: var(--rose-lt);
}

.chapter-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--mauve);
  background: var(--blush);
  padding: 5px 14px;
  border-radius: 16px;
  border: 1px solid var(--rose-lt);
  white-space: nowrap;
}

.chapter-dropdown {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rose-lt);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* STEP STAGE (VIEWPORT CENTER NO SCROLL) */
.step-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  overflow: hidden;
}

.step-card-wrapper {
  width: 100%;
  max-width: 1150px;
  height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

/* MEDIA COLUMN (LEFT SIDE) */
.step-media-col {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-frame-container {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.step-photo-item {
  position: relative;
  background: #ffffff;
  padding: 12px 12px 28px 12px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(232, 84, 122, 0.15), 0 0 15px rgba(249, 184, 203, 0.3);
  transform: rotate(-2deg);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  max-width: 100%;
  max-height: 100%;
}

.step-photo-item:nth-child(even) {
  transform: rotate(2deg);
}

.step-photo-item:hover {
  transform: scale(1.03) rotate(0deg);
  z-index: 10;
  box-shadow: 0 18px 40px rgba(232, 84, 122, 0.28);
}

.step-photo-item img {
  width: 100%;
  max-height: 48vh;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.photo-zoom-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* STORY CONTENT COLUMN (RIGHT SIDE - PURE LIGHT THEME) */
.step-content-col {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.glass-story-card {
  width: 100%;
  max-height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem 2.2rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.card-chapter-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--rose);
  background: var(--blush);
  padding: 4px 14px;
  border-radius: 14px;
  border: 1px solid var(--rose-lt);
}

.card-date-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--mauve);
  background: var(--petal);
  padding: 4px 14px;
  border-radius: 14px;
  border: 1px solid var(--rose-lt);
}

.card-title {
  font-family: var(--font-syne);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.card-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--mauve);
  margin-top: 4px;
}

.card-divider {
  width: 60px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%);
  margin: 0.9rem 0;
  border-radius: 2px;
}

.card-text-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.highlight-quote {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--mauve);
  background: var(--blush);
  padding: 10px 18px;
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  margin: 0.8rem 0;
}

.card-footer {
  margin-top: 1.2rem;
  display: flex;
  justify-content: flex-end;
}

.signature-tag {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mauve);
  background: var(--blush2);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid var(--rose-lt);
}

/* BOTTOM CONTROL NAVIGATION BAR (PURE LIGHT THEME) */
.app-bottom-nav {
  min-height: 65px;
  padding: 8px 1.5rem max(8px, env(safe-area-inset-bottom)) 1.5rem;
  background: rgba(255, 248, 251, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--rose-lt);
  box-shadow: 0 -4px 16px rgba(232, 84, 122, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 30;
  box-sizing: border-box;
}

.nav-progress-bar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blush2);
}

.nav-progress-bar {
  height: 100%;
  width: 3.5%;
  background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%);
  transition: width 0.35s ease;
}

.controls-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  gap: 12px;
}

.step-btn {
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  border: 1px solid var(--rose-lt);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(232, 84, 122, 0.3);
  white-space: nowrap;
  touch-action: manipulation;
}

.step-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.step-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 84, 122, 0.45);
}

.step-btn.glow-final-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  animation: pulseStart 1.5s infinite alternate;
}

.autoplay-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--petal);
  border: 1px solid var(--rose-lt);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  touch-action: manipulation;
}

.autoplay-btn.active {
  background: var(--rose);
  color: #ffffff;
  border-color: var(--rose-lt);
}

.step-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.step-dots-container::-webkit-scrollbar {
  display: none;
}

.step-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blush2);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.step-dot.active {
  background: var(--rose);
  transform: scale(1.5);
  box-shadow: 0 0 8px var(--rose);
}

.btn-text-desktop { display: inline-block; }
.btn-text-mobile { display: none; }

/* --------------------------------------------------------------------------
   3. MODALS (PHOTO LIGHTBOX, SECRET ENVELOPE, BIRTHDAY CAKE - PURE LIGHT THEME)
   -------------------------------------------------------------------------- */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.photo-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 24, 40, 0.75);
  backdrop-filter: blur(10px);
}

.photo-modal-content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-modal-img-wrap img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  border: 4px solid var(--cream);
  box-shadow: 0 20px 50px rgba(58, 24, 40, 0.4);
}

.photo-modal-caption {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
}

.photo-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2.2rem;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
}

/* AUDIO FLOATING CONTROLLER */
.audio-floating-pill {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 248, 251, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rose-lt);
  padding: 6px 16px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 84, 122, 0.18);
}

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 12px;
}

.eq-bar {
  width: 3px;
  height: 100%;
  background: var(--rose);
  animation: eqPulse 0.8s infinite alternate;
}

.eq-bar:nth-child(2) { animation-delay: 0.2s; }
.eq-bar:nth-child(3) { animation-delay: 0.4s; }

.paused .eq-bar { animation: none; height: 3px; }

@keyframes eqPulse {
  0% { height: 3px; }
  100% { height: 12px; }
}

.audio-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink);
  font-weight: 700;
}

/* ENVELOPE MODAL & CAKE MODAL (PURE LIGHT THEME) */
.envelope-modal, .cake-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.envelope-modal.active, .cake-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.envelope-modal-backdrop, .cake-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 24, 40, 0.7);
  backdrop-filter: blur(12px);
}

.envelope-modal-box, .cake-modal-box {
  position: relative;
  z-index: 10;
  background: var(--cream);
  border: 2px solid var(--rose-lt);
  border-radius: 28px;
  padding: 2.5rem;
  max-width: 550px;
  width: 90vw;
  text-align: center;
  box-shadow: 0 25px 60px rgba(232, 84, 122, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.envelope-close-btn, .cake-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
}

/* WAX SEAL ENVELOPE DESIGN */
.envelope-wrapper {
  width: 280px;
  height: 180px;
  background: var(--blush2);
  border: 2px solid var(--rose);
  border-radius: 12px;
  margin: 1.5rem auto;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.wax-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(232, 84, 122, 0.4);
}

.wax-seal-prompt {
  position: absolute;
  bottom: -30px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--mauve);
}

.envelope-letter {
  display: none;
  text-align: left;
}

.letter-kitty-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.letter-kitty-gif {
  width: 95px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(232, 84, 122, 0.35);
  border: 2px solid var(--rose-lt);
}

.envelope-wrapper.is-open { display: none; }
.envelope-wrapper.is-open + .envelope-letter { display: block; }

.letter-title {
  font-family: var(--font-syne);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.letter-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}

.letter-signature {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--mauve);
  text-align: right;
  margin-top: 1.2rem;
}

.letter-close-action {
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--blush2);
  color: var(--mauve);
  border: 1px solid var(--rose-lt);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
}

/* PURE LIGHT THEME CAKE SECTION STYLING */
.cake-modal-box {
  position: relative;
  z-index: 10;
  background: var(--cream);
  border: 2px solid var(--rose-lt);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  max-width: 540px;
  width: 90vw;
  text-align: center;
  box-shadow: 0 25px 60px rgba(232, 84, 122, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.sec-label-cake {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mauve);
  text-transform: uppercase;
}

.sec-title-cake {
  font-family: var(--font-syne);
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
}

.cake-gold-line {
  width: 80px;
  height: 2.5px;
  background: linear-gradient(90deg, transparent 0%, var(--rose) 50%, transparent 100%);
  margin: 0.8rem auto 1.4rem;
  border-radius: 2px;
}

.cake-stage {
  width: 240px;
  height: 245px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 10px 20px rgba(232, 84, 122, 0.2));
}

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

.cake-instruction {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mauve);
  margin: 1rem 0;
}

.cake-action-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0.8rem 0;
}

.blow-btn {
  font-family: var(--font-outfit);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 14px 36px;
  border-radius: 40px;
  border: 2px solid var(--rose-lt);
  box-shadow: 0 10px 28px rgba(232, 84, 122, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pulseBlowBtn 2s infinite alternate;
}

.blow-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(232, 84, 122, 0.5);
}

.cake-gallery-btn {
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--blush);
  padding: 12px 28px;
  border-radius: 30px;
  border: 1.5px solid var(--rose-lt);
  box-shadow: 0 6px 20px rgba(232, 84, 122, 0.18);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cake-gallery-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background: var(--rose);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(232, 84, 122, 0.4);
}

@keyframes pulseBlowBtn {
  0% { box-shadow: 0 8px 25px rgba(232, 84, 122, 0.3); }
  100% { box-shadow: 0 14px 36px rgba(232, 84, 122, 0.55); }
}

.cake-signature {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--mauve);
  margin-top: 1.2rem;
}

/* LIGHT BULBS */
.lights-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.light-bulb {
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
  animation: bulbGlow 1.2s infinite alternate;
}

@keyframes bulbGlow {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* FLOATING SOLO IMAGE PARTICLES & MICRO CELEBRATION PARTICLES */
.solo-particle-item {
  position: fixed;
  bottom: -80px;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  border: 2.5px solid var(--rose-lt);
  box-shadow: 0 10px 25px rgba(232, 84, 122, 0.4);
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  animation: floatUp 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.solo-particle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  15% {
    opacity: 1;
    transform: translateY(-18vh) rotate(20deg) scale(1);
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-118vh) rotate(360deg) scale(0.75);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   4. RESPONSIVE DESIGN ADJUSTMENTS FOR ALL DEVICES
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .step-card-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }

  .step-photo-item img {
    max-height: 35vh;
  }

  .glass-story-card {
    padding: 1.4rem;
  }

  .card-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .app-top-nav {
    padding: max(6px, env(safe-area-inset-top)) 1rem 6px 1rem;
    height: 56px;
  }

  .chapter-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .chapter-dropdown {
    font-size: 10px;
    padding: 5px 10px;
  }

  .nav-home-btn, .nav-action-btn {
    font-size: 10px;
    padding: 5px 10px;
  }

  .btn-text-desktop { display: none; }
  .btn-text-mobile { display: inline-block; }

  .app-bottom-nav {
    min-height: 60px;
    padding: 6px 0.8rem max(6px, env(safe-area-inset-bottom)) 0.8rem;
  }

  .step-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .autoplay-btn {
    font-size: 10px;
    padding: 6px 12px;
  }
}

@media (max-width: 520px) {
  .app-top-nav {
    padding: max(4px, env(safe-area-inset-top)) 0.5rem 4px 0.5rem;
    gap: 6px;
  }

  .nav-left, .nav-right {
    gap: 6px;
  }

  .nav-btn-label {
    display: none;
  }

  .chapter-badge {
    font-size: 9px;
    padding: 3px 8px;
    letter-spacing: 0.05em;
  }

  .chapter-dropdown {
    font-size: 9px;
    padding: 4px 8px;
  }

  .controls-wrapper {
    gap: 6px;
  }

  .step-btn {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .autoplay-btn {
    font-size: 9px;
    padding: 5px 10px;
  }
}

/* --------------------------------------------------------------------------
   5. 4-ROW MOVING PHOTO MARQUEE WALL MODAL (CREATIVE & ENGAGING)
   -------------------------------------------------------------------------- */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 24, 40, 0.85);
  backdrop-filter: blur(14px);
}

.gallery-modal-content {
  position: relative;
  z-index: 10;
  width: 96vw;
  height: 94vh;
  max-width: 1400px;
  background: var(--cream);
  border: 2px solid var(--rose-lt);
  border-radius: 32px;
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 70px rgba(232, 84, 122, 0.3);
  overflow: hidden;
}

.gallery-close-btn {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 2.2rem;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.gallery-header {
  text-align: center;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}

.gallery-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rose);
  background: var(--blush);
  padding: 4px 16px;
  border-radius: 16px;
  border: 1px solid var(--rose-lt);
}

.gallery-title {
  font-family: var(--font-syne);
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
}

.gallery-subtitle {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--mauve);
  margin-top: 2px;
}

.gallery-gold-line {
  width: 90px;
  height: 2.5px;
  background: linear-gradient(90deg, transparent 0%, var(--rose) 50%, transparent 100%);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.marquee-wall-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0.8rem 0;
  position: relative;
}

.marquee-row {
  width: 100%;
  height: 145px;
  min-height: 145px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee-row::before,
.marquee-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.track-left {
  animation: scrollMarqueeLeft 26s linear infinite;
}

.track-right {
  animation: scrollMarqueeRight 26s linear infinite;
}

.marquee-row-2 .track-right { animation-duration: 22s; }
.marquee-row-3 .track-left { animation-duration: 28s; }
.marquee-row-4 .track-right { animation-duration: 24s; }

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-card-item {
  width: 170px;
  min-width: 170px;
  height: 125px;
  flex-shrink: 0;
  position: relative;
  background: #ffffff;
  padding: 5px;
  border-radius: 14px;
  border: 1.5px solid var(--rose-lt);
  box-shadow: 0 8px 20px rgba(232, 84, 122, 0.18);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.marquee-card-item:hover {
  transform: scale(1.15) translateY(-5px);
  z-index: 15;
  box-shadow: 0 16px 35px rgba(232, 84, 122, 0.4);
  border-color: var(--rose);
}

.marquee-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.marquee-card-caption {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-footer-tag {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mauve);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

@keyframes scrollMarqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollMarqueeRight {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* SCROLLABLE GALLERY CONTAINER */
.gallery-scrollable-body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* INTERACTIVE HEART BREAK STAGE */
.heart-break-stage-wrapper {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 1rem;
}

.heart-break-stage {
  position: relative;
  width: 160px;
  height: 150px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.heart-pulse-ring {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 84, 122, 0.3) 0%, transparent 70%);
  animation: giftRingPulse 1.8s infinite alternate;
}

.heart-break-svg {
  width: 110px;
  height: 100px;
  z-index: 5;
  filter: drop-shadow(0 10px 22px rgba(232, 84, 122, 0.4));
  transition: transform 0.3s ease;
}

.heart-break-stage:hover .heart-break-svg {
  transform: scale(1.12);
}

.heart-prompt-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--rose);
  background: var(--blush);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--rose-lt);
  margin-top: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(232, 84, 122, 0.15);
}

/* GRAND HERO BIG IMAGE CARD (THE LAST MEMORY IMAGE) */
.grand-hero-card-section {
  display: flex;
  justify-content: center;
  margin: 0.8rem 0;
}

.grand-hero-card {
  position: relative;
  background: var(--cream);
  border: 3px solid var(--rose-lt);
  border-radius: 32px;
  padding: 2.2rem;
  max-width: 920px;
  width: 100%;
  box-shadow: 0 25px 65px rgba(232, 84, 122, 0.28);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.2rem;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grand-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 75px rgba(232, 84, 122, 0.38);
}

.hero-card-badge {
  position: absolute;
  top: -16px;
  left: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 6px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(232, 84, 122, 0.4);
}

.hero-card-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 14px 30px rgba(232, 84, 122, 0.25);
  cursor: pointer;
}

.hero-card-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.hero-img-overlay-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 248, 251, 0.92);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid var(--rose-lt);
}

.hero-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card-title {
  font-family: var(--font-syne);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.hero-card-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

/* MARQUEE SECTION HEADER */
.marquee-section-header {
  text-align: center;
  margin-top: 0.8rem;
}

.marquee-sec-title {
  font-family: var(--font-syne);
  font-size: 1.15rem;
  color: var(--ink);
}

/* ALL-TOGETHER PHOTO MOSAIC GRID */
.all-together-section {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1.5px dashed var(--rose-lt);
}

.all-together-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.all-together-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mauve);
  background: var(--blush);
  padding: 4px 14px;
  border-radius: 16px;
  border: 1px solid var(--rose-lt);
}

.all-together-title {
  font-family: var(--font-syne);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 4px;
}

.all-together-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mauve);
}

.all-together-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.grid-photo-card {
  position: relative;
  background: #ffffff;
  padding: 6px 6px 20px 6px;
  border-radius: 12px;
  border: 1px solid var(--rose-lt);
  box-shadow: 0 6px 18px rgba(232, 84, 122, 0.12);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.grid-photo-card:hover {
  transform: scale(1.06) translateY(-3px);
  z-index: 10;
  box-shadow: 0 12px 28px rgba(232, 84, 122, 0.3);
  border-color: var(--rose);
}

.grid-photo-card img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.grid-card-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .grand-hero-card {
    grid-template-columns: 1fr;
    padding: 1.2rem;
    gap: 1rem;
  }
}