/* ============================================= */
/* ROOT VARIABLES & DESIGN TOKENS */
/* ============================================= */
:root {
  /* Color Palette */
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --white: #ffffff;
  --off-white: #fffbfd;
  --cream: #fef7f0;
  --text-dark: #4a2040;
  --text-medium: #6b4560;
  --text-light: #9b7090;
  --gold: #d4a574;
  --gold-light: #f0d9b5;

  /* Gradients */
  --gradient-main: linear-gradient(
    135deg,
    #fdf2f8 0%,
    #fce7f3 30%,
    #fff1f2 60%,
    #ffffff 100%
  );
  --gradient-pink: linear-gradient(
    135deg,
    #f9a8d4 0%,
    #f472b6 50%,
    #ec4899 100%
  );
  --gradient-rose: linear-gradient(
    135deg,
    #fda4af 0%,
    #fb7185 50%,
    #f43f5e 100%
  );
  --gradient-soft: linear-gradient(
    135deg,
    #fce7f3 0%,
    #fdf2f8 50%,
    #fff1f2 100%
  );
  --gradient-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(252, 231, 243, 0.6) 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(253, 242, 248, 0.7) 100%
  );

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(244, 114, 182, 0.08);
  --shadow-md: 0 8px 30px rgba(244, 114, 182, 0.12);
  --shadow-lg: 0 20px 60px rgba(244, 114, 182, 0.15);
  --shadow-xl: 0 30px 80px rgba(244, 114, 182, 0.2);
  --shadow-glow: 0 0 40px rgba(244, 114, 182, 0.3);
  --shadow-card:
    0 10px 40px rgba(244, 114, 182, 0.1), 0 2px 10px rgba(0, 0, 0, 0.03);

  /* Fonts */
  --font-display: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-dancing: "Dancing Script", cursive;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================= */
/* GLOBAL RESET & BASE */
/* ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--gradient-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--pink-300);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--pink-50);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-300);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-400);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================= */
/* PRELOADER */
/* ============================================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--pink-100),
    var(--white),
    var(--rose-50)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.heart-loader {
  font-size: 3rem;
  color: var(--pink-400);
  animation: heartbeat 1s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-body);
  color: var(--text-light);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
  animation: fadeInOutText 2s ease infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
}

@keyframes fadeInOutText {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================= */
/* SAKURA CANVAS */
/* ============================================= */
#sakura-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

/* ============================================= */
/* MUSIC CONTROL */
/* ============================================= */
.music-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  transition: var(--transition-spring);
  overflow: hidden;
}

.music-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.music-btn i {
  color: var(--pink-500);
  font-size: 1.2rem;
  z-index: 2;
  transition: var(--transition-fast);
}

.music-btn.muted i {
  color: var(--text-light);
}

.music-waves {
  position: absolute;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 20px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: var(--transition-normal);
}

.music-btn.playing .music-waves {
  opacity: 1;
}

.music-btn.playing i {
  transform: translateY(-12px);
  font-size: 0.8rem;
}

.music-waves span {
  display: block;
  width: 3px;
  background: var(--pink-400);
  border-radius: 3px;
  animation: musicWave 0.8s ease-in-out infinite;
}

.music-waves span:nth-child(1) {
  height: 8px;
  animation-delay: 0s;
}
.music-waves span:nth-child(2) {
  height: 14px;
  animation-delay: 0.1s;
}
.music-waves span:nth-child(3) {
  height: 10px;
  animation-delay: 0.2s;
}
.music-waves span:nth-child(4) {
  height: 16px;
  animation-delay: 0.3s;
}

@keyframes musicWave {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1.2);
  }
}

/* ============================================= */
/* LANDING PAGE */
/* ============================================= */
.landing-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #fdf2f8 0%,
    #fce7f3 25%,
    #fff1f2 50%,
    #ffffff 75%,
    #fdf2f8 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.landing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(253, 242, 248, 0.3) 100%
  );
  z-index: 1;
}

.landing-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

/* Floating Hearts */
.floating-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.heart-float {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: floatHeart calc(8s + var(--i) * 1.2s) ease-in-out infinite;
  left: calc(var(--i) * 10%);
  top: calc(var(--i) * 8%);
}

@keyframes floatHeart {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-40px) rotate(15deg) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(-10deg) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-50px) rotate(20deg) scale(1.15);
    opacity: 0.5;
  }
}

/* Sparkles */
.sparkle-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 1.2rem;
  color: var(--pink-300);
  animation: sparkleAnim var(--d) ease-in-out infinite;
}

@keyframes sparkleAnim {
  0%,
  100% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Landing Typography */
.landing-date {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--pink-400);
  margin-bottom: 1.5rem;
}

.landing-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.landing-title sup {
  font-size: 0.5em;
  color: var(--pink-400);
}

.title-highlight {
  display: block;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  margin-top: 0.5rem;
}

.landing-subtitle {
  font-family: var(--font-dancing);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* Landing Decoration */
.landing-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.deco-line {
  width: 60px;
  height: 1px;
  background: var(--gradient-pink);
  opacity: 0.5;
}

.deco-heart {
  color: var(--pink-400);
  font-size: 0.8rem;
  animation: heartbeat 1.5s ease infinite;
}

/* Surprise Button */
.btn-surprise {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 18px 45px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--gradient-pink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-spring);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.35);
}

.btn-surprise:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.45);
}

.btn-surprise:active {
  transform: translateY(0) scale(0.98);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  transition: var(--transition-slow);
  border-radius: 50%;
}

.btn-surprise:hover .btn-glow {
  transform: translate(-50%, -50%) scale(1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeInDelay 2s ease 1s forwards;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--pink-300);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--pink-400);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

@keyframes fadeInDelay {
  to {
    opacity: 0.6;
  }
}

/* ============================================= */
/* LANDING ANIMATIONS */
/* ============================================= */
.animate-fadeIn {
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

.animate-slideUp {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease 0.5s forwards;
}

.animate-fadeIn-delay {
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.animate-scaleIn {
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 0.8s ease 1.2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================= */
/* HIDDEN CONTENT */
/* ============================================= */
.hidden-content {
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.hidden-content.show {
  display: block;
  animation: contentReveal 1.2s ease forwards;
}

@keyframes contentReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================= */
/* SECTION COMMON STYLES */
/* ============================================= */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 114, 182, 0.15);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pink-500);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.section-badge i {
  font-size: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-family: var(--font-dancing);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-light);
  font-weight: 400;
}

/* ============================================= */
/* HERO VIDEO SECTION */
/* ============================================= */
.hero-section {
  background: var(--gradient-soft);
  overflow: hidden;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.video-frame::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-pink);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.5;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 5;
  cursor: pointer;
  transition: var(--transition-normal);
}

.video-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-spring);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn i {
  margin-left: 5px;
}

.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.video-text {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  opacity: 0;
  transition: var(--transition-normal);
}

.video-container:hover .video-controls {
  opacity: 1;
}

.ctrl-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  transition: var(--transition-fast);
}

.ctrl-btn:hover {
  color: var(--pink-300);
  transform: scale(1.1);
}

.progress-bar-container {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-pink);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s linear;
}

.vid-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-family: var(--font-body);
  white-space: nowrap;
}

/* ============================================= */
/* GALLERY SECTION */
/* ============================================= */
.gallery-section {
  background: var(--white);
  position: relative;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at top left,
      rgba(252, 231, 243, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(255, 241, 242, 0.5) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.gallery-item {
  display: block;
  text-decoration: none;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-spring);
}

.gallery-card-wide {
  height: 320px;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 40%, rgba(236, 72, 153, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: var(--transition-spring);
}

.gallery-card:hover .gallery-overlay i {
  transform: translateY(0);
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transform: translateY(15px);
  transition: var(--transition-spring);
  transition-delay: 0.05s;
}

.gallery-card:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ============================================= */
/* LOVE LETTER SECTION */
/* ============================================= */
.letter-section {
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.letter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 168, 212, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.letter-card {
  position: relative;
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.letter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-pink);
}

.letter-stamp {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transform: rotate(12deg);
}

.letter-header {
  margin-bottom: 2rem;
}

.letter-deco-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.letter-greeting {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--pink-500);
  margin-bottom: 1.5rem;
}

.letter-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
}

.letter-content p.visible {
  animation: letterReveal 0.8s ease forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.letter-signature {
  margin-top: 2rem;
  text-align: right;
  border-top: 1px solid rgba(244, 114, 182, 0.15);
  padding-top: 1.5rem;
}

.signature-text {
  font-family: var(--font-dancing);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.signature-name {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--pink-500);
}

.letter-seal {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.seal-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

/* ============================================= */
/* WISHES SECTION */
/* ============================================= */
.wishes-section {
  background: var(--white);
  position: relative;
}

.wishes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(252, 231, 243, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.wish-card {
  position: relative;
  background: var(--gradient-card);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-spring);
  overflow: hidden;
  height: 100%;
}

.wish-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-pink);
  opacity: 0;
  transition: var(--transition-normal);
}

.wish-card:hover::before {
  opacity: 1;
}

.wish-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.wish-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25);
  transition: var(--transition-spring);
}

.wish-card:hover .wish-icon {
  transform: scale(1.1) rotate(5deg);
}

.wish-icon i {
  color: var(--white);
  font-size: 1.4rem;
}

.wish-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.wish-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-medium);
}

/* ============================================= */
/* COUNTDOWN SECTION */
/* ============================================= */
.countdown-section {
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.countdown-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(249, 168, 212, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.count-card {
  background: var(--gradient-card);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-spring);
}

.count-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.count-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.count-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================= */
/* ENDING SECTION */
/* ============================================= */
.ending-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #fdf2f8 0%,
    #fce7f3 25%,
    #fff1f2 50%,
    #fdf2f8 75%,
    #fce7f3 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
}

.ending-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(253, 242, 248, 0.5) 100%
  );
  z-index: 1;
}

.ending-content {
  position: relative;
  z-index: 10;
  padding: 3rem 2rem;
}

.ending-hearts {
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.ending-hearts span {
  animation: heartFloat 3s ease-in-out infinite;
}

.ending-hearts span:nth-child(2) {
  animation-delay: 0.3s;
  font-size: 2.5rem;
}

.ending-hearts span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes heartFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.ending-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.ending-highlight {
  display: block;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.ending-subtitle {
  font-family: var(--font-dancing);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.ending-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Replay Button */
.btn-replay {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 16px 40px;
  border: 2px solid var(--pink-400);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--pink-500);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.btn-replay::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-pink);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-replay:hover {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.35);
}

.btn-replay:hover::before {
  left: 0;
}

.ending-footer {
  margin-top: 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 2px;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .gallery-card {
    height: 250px;
  }

  .gallery-card-wide {
    height: 280px;
  }

  .letter-card {
    padding: 2.5rem 2rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .landing-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .btn-surprise {
    padding: 15px 35px;
    font-size: 0.95rem;
  }

  .gallery-card,
  .gallery-card-wide {
    height: 220px;
  }

  .letter-card {
    padding: 2rem 1.5rem;
  }

  .letter-greeting {
    font-size: 1.6rem;
  }

  .letter-content p {
    font-size: 0.9rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .music-btn {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .ending-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }
}

@media (max-width: 480px) {
  .landing-date {
    font-size: 0.85rem;
    letter-spacing: 4px;
  }

  .landing-subtitle {
    font-size: 1.1rem;
  }

  .gallery-card,
  .gallery-card-wide {
    height: 200px;
  }

  .wish-card {
    padding: 2rem 1.5rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .count-card {
    padding: 1.5rem 1rem;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .video-text {
    font-size: 0.8rem;
  }
}

/* ============================================= */
/* TYPING CURSOR */
/* ============================================= */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--pink-400);
  margin-left: 2px;
  animation: blink 0.7s ease infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ============================================= */
/* CONFETTI ANIMATION (for Surprise button) */
/* ============================================= */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  z-index: 99998;
  pointer-events: none;
  animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-100vh) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* ============================================= */
/* GLIGHTBOX OVERRIDES */
/* ============================================= */
.glightbox-clean .gslide-description {
  background: var(--gradient-glass) !important;
  backdrop-filter: blur(20px) !important;
}

.glightbox-clean .gslide-title {
  font-family: var(--font-display) !important;
  color: var(--text-dark) !important;
}

.glightbox-clean .gslide-desc {
  font-family: var(--font-body) !important;
  color: var(--text-medium) !important;
}

/* ============================================= */
/* FEEDBACK SECTION STYLES */
/* ============================================= */
.feedback-section {
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.feedback-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
}

.feedback-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 30px;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
  animation: heartbeat 2s infinite;
}

.feedback-input {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  resize: none;
}

.feedback-input:focus {
  background: white;
  border-color: var(--pink-400);
  box-shadow: 0 0 15px rgba(244, 114, 182, 0.1);
  outline: none;
}

.feedback-input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}
