/* ==========================================================================
   EYES OF LYN - LUXURY ROMANTIC PINK & ROSE DESIGN SYSTEM
   Sophisticated Rose + Deep Burgundy + Dusty Pink + Intimate R&B Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Italianno&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  /* Pink & Rose Palette */
  --bg-deep-black: #0d0408;
  --bg-dark-burgundy: #1a050f;
  --bg-midnight-rose: #260817;
  
  --color-rose-primary: #b84d64;
  --color-rose-dusty: #d88a99;
  --color-rose-blush: #f2b8c6;
  --color-rose-soft: #fce8ec;
  --color-rose-gold: #e6a57e;
  
  --color-text-main: #fff5f7;
  --color-text-muted: #c9b5bd;
  --color-text-dim: #8c7882;
  
  --glass-bg: rgba(26, 8, 17, 0.68);
  --glass-border: rgba(216, 138, 153, 0.25);
  --glass-glow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(216, 138, 153, 0.25);
  --pink-glow-strong: 0 0 35px rgba(216, 138, 153, 0.45);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Italianno', cursive;

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 1, 0.5, 1);

  /* Spacing */
  --section-padding: 8rem 2rem;
  --container-max-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep-black);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-deep-black);
  overflow-x: hidden;
}

/* Custom Cursor (Desktop) */
@media (pointer: fine) {
  body, a, button, input {
    cursor: none !important;
  }
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--color-rose-blush);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 15px var(--color-rose-blush);
}

#cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99998;
}

/* Ambient Canvas Particle Overlay */
#ambient-particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

/* Background Film Grain Overlay */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Ambient Background Glow */
.ambient-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  height: 95vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 77, 100, 0.3) 0%, rgba(38, 8, 23, 0.2) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  animation: ambientGlowPulse 15s infinite alternate ease-in-out;
}

@keyframes ambientGlowPulse {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
  100% { transform: translate(-48%, -52%) scale(1.08); opacity: 1; }
}

/* Container Utility */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 5;
}

.text-center { text-align: center; }

/* Scroll Reveal Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.4s var(--ease-cinematic), transform 1.4s var(--ease-cinematic);
  will-change: opacity, transform;
}

.reveal-element.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* ==========================================================================
   1. OPENING OVERLAY ("FOR YOU") WITH FALLING ROSE PETALS
   ========================================================================== */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, var(--bg-dark-burgundy) 0%, var(--bg-deep-black) 100%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 1.6s var(--ease-cinematic), visibility 1.6s;
}

#intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.intro-line {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-soft), transform 1.2s var(--ease-soft);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(216, 138, 153, 0.4);
}

.intro-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-prompt {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--color-rose-dusty);
  margin-top: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity 1s var(--ease-soft);
}

.intro-prompt.visible {
  opacity: 1;
}

.btn-enter {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.8rem;
  background: linear-gradient(135deg, rgba(184, 77, 100, 0.4) 0%, rgba(216, 138, 153, 0.2) 100%);
  border: 1px solid var(--glass-border);
  color: var(--color-rose-blush);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  transition: all 0.5s var(--ease-soft);
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 0 25px rgba(216, 138, 153, 0.2);
}

.btn-enter.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-enter:hover {
  background: linear-gradient(135deg, var(--color-rose-primary) 0%, var(--color-rose-dusty) 100%);
  border-color: var(--color-rose-blush);
  color: #fff;
  box-shadow: 0 0 35px rgba(216, 138, 153, 0.6);
  transform: translateY(-3px) scale(1.03);
}

/* ==========================================================================
   2. HERO SECTION ("IT STARTED WITH YOUR EYES")
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.05);
  animation: heroKenBurns 30s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.03) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1.5%); }
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(26, 5, 15, 0.35) 0%, rgba(13, 4, 8, 0.88) 75%, var(--bg-deep-black) 100%),
              linear-gradient(180deg, rgba(13, 4, 8, 0.5) 0%, transparent 40%, transparent 60%, var(--bg-deep-black) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 850px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-text-main);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(216, 138, 153, 0.3);
}

.hero-title span { display: block; }

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-rose-dusty);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}

/* ==========================================================================
   3. INTERWOVEN MOVIE STORY SECTION
   ========================================================================== */
.interwoven-story-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-deep-black) 0%, var(--bg-dark-burgundy) 50%, var(--bg-deep-black) 100%);
}

.story-flow-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
}

.story-flow-card {
  width: 100%;
  text-align: center;
}

.story-flow-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--glass-glow);
  border: 1px solid var(--glass-border);
}

.glowing-pink-frame {
  position: relative;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(184, 77, 100, 0.5) 0%, rgba(216, 138, 153, 0.2) 50%, rgba(230, 165, 126, 0.4) 100%);
  box-shadow: 0 0 40px rgba(216, 138, 153, 0.4);
  transition: transform 1.2s var(--ease-cinematic), box-shadow 1.2s var(--ease-cinematic);
}

.glowing-pink-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 0 55px rgba(216, 138, 153, 0.65);
}

.story-caption {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-rose-blush);
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   4. HER EYES & HER VOICE SECTIONS
   ========================================================================== */
.eyes-section {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-deep-black);
}

.eyes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyes-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--glass-glow);
  border: 1px solid var(--glass-border);
}

.eyes-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1.8s var(--ease-cinematic), filter 1.8s var(--ease-cinematic);
}

.eyes-image-wrapper:hover .eyes-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-rose-dusty);
  margin-bottom: 1rem;
  display: block;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--color-text-main);
  text-shadow: 0 0 20px rgba(216, 138, 153, 0.3);
}

.quote-line {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.quote-line.highlight {
  color: var(--color-rose-blush);
  font-style: italic;
}

.voice-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-deep-black) 0%, var(--bg-midnight-rose) 100%);
}

.voice-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: var(--glass-glow);
}

.waveform-canvas {
  width: 100%;
  height: 80px;
  margin: 2rem 0;
  display: block;
}

/* ==========================================================================
   5. LATE NIGHTS & BUTTERFLIES
   ========================================================================== */
.late-nights-section {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-deep-black);
}

.phone-call-card {
  background: rgba(26, 8, 17, 0.75);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(216, 138, 153, 0.25);
  border-radius: 32px;
  padding: 3rem 2rem;
  max-width: 440px;
  margin: 0 auto 3rem auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(184, 77, 100, 0.3);
}

.call-header {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-rose-dusty);
  margin-bottom: 0.5rem;
}

.call-time {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.call-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 50px;
  color: #2ecc71;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

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

.call-timer {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  color: var(--color-text-main);
  letter-spacing: 0.1em;
}

.butterflies-section {
  position: relative;
  padding: 10rem 1.5rem;
  background-color: var(--bg-deep-black);
  overflow: hidden;
}

.butterflies-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 0.18;
  filter: blur(4px) grayscale(30%);
  pointer-events: none;
  z-index: 1;
}

.butterfly-line {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   6. VIDEO MEMORY SECTION ("LITTLE MOMENTS I COULD WATCH FOREVER")
   ========================================================================== */
.video-memory-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-deep-black) 0%, var(--bg-dark-burgundy) 50%, var(--bg-deep-black) 100%);
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.video-memory-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(216, 138, 153, 0.2);
  transition: all 0.6s var(--ease-cinematic);
  cursor: pointer;
}

.video-memory-card.large { grid-column: span 8; height: 500px; }
.video-memory-card.medium { grid-column: span 4; height: 500px; }
.video-memory-card.small { grid-column: span 6; height: 340px; }

.video-memory-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 40px rgba(216, 138, 153, 0.45);
  border-color: var(--color-rose-dusty);
}

.video-card-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 4, 8, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
}

.btn-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(216, 138, 153, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-rose-blush);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s var(--ease-soft);
}

.video-memory-card:hover .btn-play-icon {
  transform: scale(1.15);
  background: var(--color-rose-primary);
  box-shadow: 0 0 25px rgba(216, 138, 153, 0.6);
}

/* Video Lightbox Modal */
#video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 60000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-soft), visibility 0.5s;
  overflow: hidden;
}

#video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3) saturate(1.4);
  transform: scale(1.1);
}

.video-modal-pink-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(184, 77, 100, 0.25) 0%, rgba(13, 4, 8, 0.9) 80%);
  pointer-events: none;
}

.video-modal-container {
  position: relative;
  z-index: 10;
  max-width: 420px;
  width: 90%;
  max-height: 85vh;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(216, 138, 153, 0.4);
  border: 1px solid var(--glass-border);
}

#video-modal-player {
  width: 100%;
  max-height: 80vh;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ==========================================================================
   7. HER PHOTOS ("YOU") - MEMORY WALL
   ========================================================================== */
.photos-section {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-deep-black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.6s var(--ease-cinematic);
  cursor: pointer;
}

.gallery-card.large { grid-column: span 8; height: 480px; }
.gallery-card.tall { grid-column: span 4; grid-row: span 2; height: 100%; min-height: 520px; }
.gallery-card.medium { grid-column: span 6; height: 360px; }
.gallery-card.small { grid-column: span 3; height: 260px; }
.gallery-card.wide { grid-column: span 6; height: 320px; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic), filter 1.2s var(--ease-cinematic);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(216, 138, 153, 0.35);
  border-color: var(--color-rose-dusty);
  z-index: 10;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 4, 8, 0.9) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}

.gallery-card:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-main);
}

.gallery-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose-dusty);
}

/* ==========================================================================
   8. THE ROSE & SONG SECTIONS
   ========================================================================== */
.rose-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-deep-black) 0%, var(--bg-dark-burgundy) 100%);
  text-align: center;
}

.rose-asset-wrapper {
  width: 220px;
  height: 220px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  border-radius: 50%;
  padding: 10px;
  background: radial-gradient(circle, rgba(216, 138, 153, 0.2) 0%, transparent 70%);
}

.rose-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(216, 138, 153, 0.5));
  animation: rosePulse 6s ease-in-out infinite alternate;
}

@keyframes rosePulse {
  0% { transform: scale(0.96) rotate(-2deg); }
  100% { transform: scale(1.04) rotate(2deg); }
}

.song-section {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-deep-black);
}

.music-player-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--glass-glow);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.album-art-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  position: relative;
}

.album-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s linear;
}

.music-player-card.playing .album-art-img {
  animation: albumSpin 20s linear infinite;
}

@keyframes albumSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.song-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.song-artist {
  font-size: 1rem;
  color: var(--color-rose-dusty);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn-play-large {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-rose-primary);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-soft);
  box-shadow: 0 0 25px rgba(216, 138, 153, 0.5);
}

.btn-play-large:hover {
  transform: scale(1.08);
  background: var(--color-rose-dusty);
  box-shadow: 0 0 35px rgba(216, 138, 153, 0.7);
}

.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-rose-primary) 0%, var(--color-rose-blush) 100%);
  border-radius: 3px;
  width: 0%;
  position: relative;
  transition: width 0.1s linear;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.lyrics-box {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: rgba(26, 8, 17, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(216, 138, 153, 0.12);
}

.lyric-line {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   9. MINIMAL STORY SECTIONS
   ========================================================================== */
.minimal-story-section {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-deep-black);
  text-align: center;
}

.minimal-text-container {
  max-width: 800px;
  margin: 0 auto;
}

.minimal-line {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.minimal-line.large-emphasis {
  font-size: 3.5rem;
  color: var(--color-text-main);
  font-weight: 400;
  margin-top: 3rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 30px rgba(216, 138, 153, 0.45);
}

/* ==========================================================================
   10. 10-STEP INTERACTIVE PROPOSAL WIZARD
   ========================================================================== */
.proposal-wizard-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg-deep-black) 0%, var(--bg-dark-burgundy) 50%, var(--bg-deep-black) 100%);
  padding: 4rem 1.5rem;
}

.proposal-wizard-card {
  position: relative;
  z-index: 5;
  background: rgba(26, 8, 17, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 36px;
  padding: 4.5rem 3.5rem;
  max-width: 720px;
  width: 90%;
  text-align: center;
  box-shadow: var(--glass-glow);
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
}

.proposal-wizard-card.anim-out {
  opacity: 0;
  transform: translateY(-25px) scale(0.96);
}

.proposal-wizard-card.anim-in {
  opacity: 0;
  transform: translateY(25px) scale(0.96);
}

.proposal-pretext {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--color-rose-dusty);
  margin-bottom: 1.5rem;
}

.proposal-question-text {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-text-main);
  line-height: 1.35;
  margin-bottom: 3.5rem;
  text-shadow: 0 0 25px rgba(216, 138, 153, 0.35);
}

.proposal-wizard-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-wizard {
  padding: 1.1rem 3rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-wizard-yes {
  background: linear-gradient(135deg, var(--color-rose-primary) 0%, var(--color-rose-dusty) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(216, 138, 153, 0.4);
}

.btn-wizard-yes:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 45px rgba(216, 138, 153, 0.65);
  background: linear-gradient(135deg, var(--color-rose-blush) 0%, var(--color-rose-primary) 100%);
}

.btn-wizard-no {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-main);
  backdrop-filter: blur(10px);
}

.btn-wizard-no:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Toast Notification Popup */
#toast-notification {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(38, 8, 23, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-rose-dusty);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  color: var(--color-rose-blush);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(216, 138, 153, 0.4);
  z-index: 40000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease-soft);
}

#toast-notification.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   11. PEAK FINAL PROPOSAL SECTION
   ========================================================================== */
.final-proposal-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--bg-dark-burgundy) 0%, var(--bg-deep-black) 100%);
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.final-proposal-card {
  position: relative;
  z-index: 5;
  background: rgba(26, 8, 17, 0.85);
  backdrop-filter: blur(35px);
  border: 1px solid rgba(216, 138, 153, 0.3);
  border-radius: 40px;
  padding: 5rem 4rem;
  max-width: 780px;
  width: 90%;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.95), 0 0 60px rgba(216, 138, 153, 0.35);
}

.final-proposal-heading {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--color-text-main);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 35px rgba(216, 138, 153, 0.5);
}

.final-proposal-subtext {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 4rem;
}

/* ==========================================================================
   12. FINAL MONTAGE & CLOSING
   ========================================================================== */
.final-montage-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep-black);
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.final-montage-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1) blur(2px);
  z-index: 1;
}

.final-montage-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
}

.montage-fragment {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-rose-blush);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-soft), transform 1.2s var(--ease-soft);
}

.montage-fragment.visible {
  opacity: 1;
  transform: translateY(0);
}

.final-whole-story {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--color-text-main);
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 35px rgba(216, 138, 153, 0.6);
}

.final-inside-joke {
  font-family: var(--font-script);
  font-size: 3.8rem;
  color: var(--color-rose-gold);
  margin-top: 2rem;
  text-shadow: 0 0 25px rgba(230, 165, 126, 0.4);
}

/* Floating Music Bar & Lightbox */
#floating-music-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  background: rgba(26, 8, 17, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(216, 138, 153, 0.2);
  cursor: pointer;
  transition: all 0.4s var(--ease-soft);
}

#floating-music-bar:hover {
  transform: translateY(-3px);
  border-color: var(--color-rose-dusty);
}

.music-bars-anim {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.music-bar {
  width: 3px;
  height: 100%;
  background-color: var(--color-rose-dusty);
  border-radius: 2px;
  animation: musicBarPulse 1.2s infinite ease-in-out alternate;
}

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

.paused .music-bar {
  animation-play-state: paused;
  height: 4px;
}

@keyframes musicBarPulse {
  0% { height: 4px; }
  100% { height: 16px; }
}

.floating-music-text {
  font-size: 0.8rem;
  color: var(--color-text-main);
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 4, 8, 0.95);
  backdrop-filter: blur(25px);
  z-index: 50000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s;
  padding: 2rem;
}

#lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-rose-dusty);
}

.btn-lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .eyes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .music-player-card { grid-template-columns: 1fr; text-align: center; }
  .album-art-wrapper { margin: 0 auto; }
  .player-controls { justify-content: center; }
  .hero-title { font-size: 2.75rem; }
  .proposal-question-text { font-size: 2.3rem; }
  .final-proposal-heading { font-size: 3.2rem; }
  .video-memory-card.large, .video-memory-card.medium, .video-memory-card.small {
    grid-column: span 12;
    height: 380px;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .section-heading { font-size: 2.25rem; }
  .quote-line { font-size: 1.4rem; }
  .proposal-wizard-card, .final-proposal-card { padding: 2.5rem 1.5rem; }
  .btn-wizard { width: 100%; justify-content: center; }
}
