/* ====== VARIABLES & SETUP ====== */
:root {
  --bg-dark: #0f0514;
  --primary-color: #ff4d85;
  --secondary-color: #a239ca;
  --text-light: #fef0f5;
  --text-muted: #d1b3c4;
  --glass-bg: rgba(25, 10, 30, 0.6);
  --glass-border: rgba(255, 77, 133, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --font-cursive: 'Great Vibes', cursive;
  --font-heading: 'Cinzel Decorative', serif;
  --font-body: 'Lato', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  cursor: none; /* Custom cursor */
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ====== GLOBAL SCROLLBAR ====== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-color), var(--secondary-color));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--secondary-color), var(--primary-color));
}

/* ====== CUSTOM CURSOR ====== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 10px var(--primary-color);
  will-change: transform;
}
.cursor.hovering {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 77, 133, 0.2);
  border-color: var(--secondary-color);
  box-shadow: 0 0 15px var(--secondary-color);
}
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  box-shadow: 0 0 8px var(--primary-color);
  will-change: transform;
}

/* ====== LOADER ====== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader-heart {
  font-size: 4rem;
  color: var(--primary-color);
  animation: heartbeat 1.5s infinite;
  text-shadow: 0 0 20px var(--primary-color);
}
.loader-text {
  margin-top: 20px;
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--text-light);
  letter-spacing: 2px;
}
.dots { animation: dots 1.5s infinite steps(4); display: inline-block; width: 24px; text-align: left; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.3); }
}
@keyframes dots { 0% { content: ''; } 25% { content: '.'; } 50% { content: '..'; } 75% { content: '...'; } }

/* ====== CANVAS BACKGROUND ====== */
#heartCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(10, 3, 15, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 77, 133, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.navbar.scrolled {
  background: rgba(10, 3, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 40px;
  border-bottom: 1px solid rgba(255, 77, 133, 0.25);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 77, 133, 0.05);
}
.nav-logo {
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 15px rgba(255, 77, 133, 0.7);
  animation: float 4s ease-in-out infinite;
  flex-shrink: 0;
}
.nav-logo i {
  font-size: 1.3rem;
  animation: heartbeat 1.8s infinite;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-link {
  color: rgba(254, 240, 245, 0.8);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.nav-link i {
  font-size: 0.75rem;
  opacity: 0.8;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  transition: width 0.35s ease;
  box-shadow: 0 0 6px var(--primary-color);
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 77, 133, 0.12);
}
.nav-link:hover i { opacity: 1; color: var(--primary-color); }
.nav-link:hover::after { width: 60%; }
.propose-nav {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(255, 77, 133, 0.45);
  color: #fff !important;
  font-weight: 700;
}
.propose-nav::after { display: none; }
.propose-nav:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 22px rgba(255, 77, 133, 0.7);
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}
.hamburger { display: none; cursor: none; flex-direction: column; gap: 5px; flex-shrink: 0; }
.hamburger span { width: 26px; height: 2px; background: var(--text-light); transition: var(--transition); border-radius: 3px; }


/* ====== HERO SECTION ====== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: url('romantic_bg.png') no-repeat center center/cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(15, 5, 20, 0.2) 0%, var(--bg-dark) 100%);
  z-index: -1;
}
.hero-content {
  z-index: 2;
  padding: 0 20px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-name {
  font-family: var(--font-cursive);
  font-size: 8rem;
  background: linear-gradient(to right, #ffb3c6, #ff4d85, #a239ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(255, 77, 133, 0.3);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}
.hero-from {
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; }
.btn-primary, .btn-secondary {
  padding: 15px 35px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(255, 77, 133, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 25px rgba(255, 77, 133, 0.5);
}
.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
}
.scroll-mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--text-light);
  border-radius: 20px;
  position: relative;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}
.scroll-indicator p { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
@keyframes scroll { 0% { top: 5px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ====== GENERAL SECTION STYLING ====== */
section { padding: 100px 5%; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-family: var(--font-body);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.title-ornament {
  margin-top: 15px;
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}
.title-ornament::before, .title-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}
.title-ornament::before { right: 100%; margin-right: 15px; }
.title-ornament::after { left: 100%; margin-left: 15px; }

/* ====== ABOUT HER ====== */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  opacity: 0.5;
}
.ring2 {
  width: 115%;
  height: 115%;
  border: 2px solid var(--secondary-color);
  animation: spin 25s linear infinite reverse;
  opacity: 0.3;
}
.about-avatar {
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--glass-bg), rgba(255, 77, 133, 0.2));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
}
.about-avatar i { font-size: 3rem; color: #ffd700; margin-bottom: 10px; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
.avatar-letter { font-family: var(--font-cursive); font-size: 6rem; color: #fff; line-height: 1; text-shadow: 0 0 20px var(--primary-color); }
.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 77, 133, 0.45));
  transition: transform 0.5s ease, filter 0.5s ease;
}
.about-portrait:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 28px rgba(255, 77, 133, 0.75));
}
.about-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-family: var(--font-body);
  box-shadow: 0 5px 15px rgba(255, 77, 133, 0.4);
  animation: float 3s ease-in-out infinite;
}
.about-text { flex: 1; }
.about-text h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
.trait {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #fff;
  transition: var(--transition);
}
.trait i { color: var(--primary-color); }
.trait:hover {
  background: rgba(255, 77, 133, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 77, 133, 0.3);
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ====== REASONS ====== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.reason-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,77,133,0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}
.reason-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 77, 133, 0.2);
}
.reason-card:hover::before { opacity: 1; }
.reason-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 77, 133, 0.3);
  transition: var(--transition);
}
.reason-card:hover .reason-icon { transform: scale(1.1) rotate(10deg); }
.reason-card h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}
.reason-card p { color: var(--text-muted); font-size: 1rem; }

/* ====== DIVIDER ====== */
.hearts-divider {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 0;
  font-size: 1.5rem;
}
.hearts-divider i { color: var(--primary-color); opacity: 0.5; animation: floatHeart 3s infinite ease-in-out alternate; }
.h1 { animation-delay: 0s; font-size: 1rem; }
.h2 { animation-delay: 0.2s; font-size: 1.5rem; }
.h3 { animation-delay: 0.4s; font-size: 2rem; color: var(--secondary-color); opacity: 0.8 !important; }
.h4 { animation-delay: 0.6s; font-size: 1.5rem; }
.h5 { animation-delay: 0.8s; font-size: 1rem; }
@keyframes floatHeart { 100% { transform: translateY(-15px) scale(1.2); opacity: 1; text-shadow: 0 0 15px var(--primary-color); } }

/* ====== TIMELINE ====== */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary-color), var(--secondary-color), transparent);
  top: 0; bottom: 0; left: 50%;
  margin-left: -1px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  margin-bottom: 40px;
}
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }
.timeline-dot {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  background: var(--bg-dark);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 77, 133, 0.5);
  transition: var(--transition);
}
.timeline-item.right .timeline-dot { left: -20px; }
.timeline-item:hover .timeline-dot {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.2);
}
.timeline-content {
  background: var(--glass-bg);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}
.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 15px rgba(255,77,133,0.1);
}
.timeline-date {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255, 77, 133, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.timeline-content p { color: var(--text-muted); }

/* ====== MUSIC SECTION ====== */
.music-section {
  position: relative;
  background: url('couple_silhouette.png') no-repeat center center/cover;
  background-attachment: fixed;
}
.music-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(15, 5, 20, 0.95), rgba(15, 5, 20, 0.7));
  z-index: 0;
}
.music-section > * { position: relative; z-index: 1; }
.music-player {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  box-shadow: var(--glass-shadow);
}
.vinyl-wrap { width: 250px; height: 250px; flex-shrink: 0; }
.vinyl {
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(
    #111 0%, #111 5%, #1a1a1a 5.5%, #111 6%
  );
  border-radius: 50%;
  border: 5px solid #333;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
}
.vinyl.playing { animation: spin 4s linear infinite; }
.vinyl-center {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #fff;
  color: #fff;
  font-size: 1.5rem;
}
.vinyl-center::after {
  content: '';
  position: absolute;
  width: 15px; height: 15px;
  background: #111;
  border-radius: 50%;
}
.player-info { flex: 1; }
.song-title { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 5px; }
.song-artist { color: var(--primary-color); font-weight: bold; margin-bottom: 20px; font-size: 1.1rem; }
.lyrics-box {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 15px;
  height: 120px;
  overflow-y: hidden;
  position: relative;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.lyrics-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 30px;
  background: linear-gradient(transparent, rgba(15, 5, 20, 0.9));
}
.lyrics-scroll {
  transition: transform 0.5s linear;
  text-align: center;
  font-style: italic;
  color: #ddd;
}
.music-controls { display: flex; align-items: center; gap: 30px; }
.music-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 1.5rem;
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 10px 20px rgba(255, 77, 133, 0.4);
  transition: var(--transition);
}
.music-btn:hover { transform: scale(1.1); box-shadow: 0 15px 25px rgba(255, 77, 133, 0.6); }
.equalizer { display: flex; gap: 5px; height: 30px; align-items: flex-end; opacity: 0.3; transition: 0.3s; }
.equalizer.active { opacity: 1; }
.equalizer .bar { width: 6px; background: var(--primary-color); border-radius: 3px; height: 5px; }
.equalizer.active .bar { animation: eq 1s ease-in-out infinite alternate; }
.equalizer.active .bar:nth-child(2) { animation-delay: 0.2s; }
.equalizer.active .bar:nth-child(3) { animation-delay: 0.4s; }
.equalizer.active .bar:nth-child(4) { animation-delay: 0.6s; }
.equalizer.active .bar:nth-child(5) { animation-delay: 0.8s; }
@keyframes eq { 0% { height: 5px; } 100% { height: 30px; } }
.music-note { margin-top: 15px; font-size: 0.8rem; color: var(--text-muted); }

/* ====== PROPOSE SECTION ====== */
.propose-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #2a081a 0%, var(--bg-dark) 100%);
}
.propose-bg-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.3;
}
.propose-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.propose-container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  max-width: 800px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255, 77, 133, 0.2);
  position: relative;
  z-index: 2;
}
.ring-animation { position: relative; width: 100px; height: 100px; margin: 0 auto 30px; }
.ring-outer {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  border: 2px solid rgba(255, 215, 0, 0.5);
  animation: pulse 2s infinite;
}
.ring-icon { font-size: 3rem; color: #ffd700; text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
.ring-glow {
  position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  animation: glow 3s infinite alternate;
  z-index: -1;
}
.propose-from { color: var(--primary-color); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.propose-title { font-family: var(--font-cursive); font-size: 5rem; color: #fff; line-height: 1; margin-bottom: 30px; text-shadow: 0 5px 15px rgba(255, 77, 133, 0.5); }
.propose-message p { font-size: 1.2rem; margin-bottom: 20px; color: #eee; }
.propose-big-text { font-family: var(--font-serif); font-size: 2rem !important; color: #fff !important; margin: 40px 0 !important; line-height: 1.4 !important; }
.propose-big-text span { color: var(--primary-color); font-weight: bold; font-style: italic; display: block; font-size: 2.5rem; margin-top: 10px; }
.propose-buttons { display: flex; justify-content: center; gap: 30px; margin-top: 40px; position: relative; height: 60px; }
.btn-yes, .btn-no {
  padding: 15px 40px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.btn-yes {
  background: linear-gradient(45deg, #ff4d85, #ff0055);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 0, 85, 0.4);
  animation: heartbeat 1.5s infinite;
}
.btn-yes:hover { transform: scale(1.1); box-shadow: 0 15px 30px rgba(255, 0, 85, 0.6); }
.btn-no { background: rgba(255, 255, 255, 0.1); color: white; border: 1px solid rgba(255,255,255,0.2); position: absolute; }

/* Celebrate UI */
.celebrate-message { display: none; margin-top: 30px; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.celebrate-text h3 { font-family: var(--font-cursive); font-size: 4rem; color: #ff4d85; margin: 20px 0; }
.celebrate-text p { font-size: 1.3rem; color: #fff; margin-bottom: 20px; }
.celebrate-icons { display: flex; justify-content: center; gap: 20px; font-size: 2rem; color: #ffd700; margin: 30px 0; animation: bounce 2s infinite; }
.forever-text { font-family: var(--font-cursive); font-size: 2rem; color: var(--text-muted); }
.firework-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }

@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); } }
@keyframes glow { 0% { opacity: 0.5; transform: scale(1); } 100% { opacity: 1; transform: scale(1.2); } }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.5); } 100% { opacity: 1; transform: scale(1); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ====== FOOTER ====== */
.footer { text-align: center; padding: 50px 20px; background: rgba(10, 2, 15, 0.9); border-top: 1px solid rgba(255,77,133,0.1); }
.footer-hearts { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; }
.footer-hearts i { animation: floatHeart 2s infinite alternate; }
.footer-hearts i:nth-child(2) { animation-delay: 0.3s; font-size: 2rem; }
.footer-text { font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.footer-heart-icon { color: var(--primary-color); animation: heartbeat 1s infinite; }
.footer-sub { color: var(--text-muted); margin-bottom: 20px; }
.footer-copy { font-family: var(--font-cursive); font-size: 1.5rem; color: var(--secondary-color); }

/* ====== ABOUT PHOTO ====== */
/* (Using CSS avatar - no image needed) */

/* ====== BIRTHDAY SECTION ====== */
.birthday-section { position: relative; overflow: hidden; background: radial-gradient(circle at center, #1a0a2e 0%, var(--bg-dark) 100%); }
.birthday-bg-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.birthday-card { max-width: 600px; margin: 0 auto; background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 50px 40px; border-radius: 30px; text-align: center; backdrop-filter: blur(15px); box-shadow: var(--glass-shadow), 0 0 40px rgba(162,57,202,0.15); }
.birthday-avatar-wrap { width: 150px; height: 150px; margin: 0 auto 20px; position: relative; }
.birthday-avatar { width: 100%; height: 100%; border-radius: 50%; background: linear-gradient(135deg, var(--glass-bg), rgba(255,77,133,0.2)); border: 3px solid var(--primary-color); box-shadow: 0 0 25px rgba(255,77,133,0.4); display: flex; justify-content: center; align-items: center; }
.birthday-avatar-letter { font-family: var(--font-cursive); font-size: 5rem; color: #fff; text-shadow: 0 0 20px var(--primary-color); }
.birthday-crown { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); color: #ffd700; font-size: 1.5rem; text-shadow: 0 0 10px rgba(255,215,0,0.8); animation: float 3s ease-in-out infinite; z-index: 2; }
.birthday-name { font-family: var(--font-cursive); font-size: 3rem; color: var(--primary-color); margin-bottom: 10px; }
.birthday-date { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 5px; }
.birthday-age { color: #ffd700; font-size: 1.2rem; font-weight: bold; margin-bottom: 30px; }
.countdown-container { display: flex; justify-content: center; gap: 15px; margin: 20px 0; flex-wrap: wrap; }
.countdown-item { background: rgba(255,77,133,0.1); border: 1px solid rgba(255,77,133,0.3); border-radius: 15px; padding: 15px 20px; min-width: 80px; }
.countdown-number { display: block; font-family: var(--font-heading); font-size: 2.5rem; color: #fff; line-height: 1; }
.countdown-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.countdown-separator { font-size: 2.5rem; color: var(--primary-color); display: flex; align-items: center; font-weight: bold; }
.birthday-wish { margin-top: 20px; font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-muted); font-style: italic; }

/* ====== LOVE LETTER ====== */
.letter-section { background: radial-gradient(circle at 30% 50%, #1a0a2e 0%, var(--bg-dark) 100%); }
.letter-container { max-width: 700px; margin: 0 auto; text-align: center; }
.letter-paper { background: linear-gradient(145deg, #1e0a28, #150820); border: 1px solid rgba(255,77,133,0.15); border-radius: 20px; padding: 50px 40px; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); }
.letter-seal { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-color), #c0392b); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: -80px auto 20px; font-size: 1.5rem; color: #fff; box-shadow: 0 5px 20px rgba(255,77,133,0.5); border: 3px solid rgba(255,255,255,0.2); }
.letter-date { color: var(--text-muted); font-size: 0.9rem; text-align: right; margin-bottom: 20px; }
.letter-greeting { font-family: var(--font-cursive); font-size: 2.5rem; color: var(--primary-color); margin-bottom: 25px; text-align: left; }
.letter-body { text-align: left; font-family: var(--font-serif); font-size: 1.1rem; color: #ddd; line-height: 1.9; min-height: 200px; font-style: italic; }
.letter-body .typewriter-cursor { display: inline-block; width: 2px; height: 1.2em; background: var(--primary-color); animation: blink 0.8s infinite; vertical-align: text-bottom; margin-left: 2px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.letter-signature { text-align: right; margin-top: 30px; color: var(--text-muted); }
.letter-sign { font-family: var(--font-cursive); font-size: 2rem; color: var(--primary-color); margin-top: 5px; }
.letter-replay-btn { margin-top: 20px; padding: 10px 25px; border-radius: 20px; background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-light); font-family: var(--font-body); font-size: 0.9rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.letter-replay-btn:hover { background: rgba(255,77,133,0.2); border-color: var(--primary-color); transform: translateY(-2px); }

/* ====== QUOTES CAROUSEL ====== */
.quotes-section { background: var(--bg-dark); }
.quotes-carousel { max-width: 700px; margin: 0 auto; position: relative; min-height: 280px; }
.quote-card { position: absolute; top: 0; left: 0; right: 0; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 25px; padding: 50px 40px; text-align: center; backdrop-filter: blur(10px); opacity: 0; transform: translateX(60px) scale(0.95); transition: all 0.6s cubic-bezier(0.25,0.8,0.25,1); pointer-events: none; }
.quote-card.active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.quote-icon { font-size: 2rem; color: var(--secondary-color); margin-bottom: 20px; opacity: 0.5; }
.quote-text { font-family: var(--font-serif); font-size: 1.3rem; color: #eee; font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.quote-author { color: var(--primary-color); font-weight: bold; font-size: 0.95rem; }
.quotes-dots { display: flex; justify-content: center; gap: 10px; margin-top: 300px; }
.quotes-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,77,133,0.3); transition: var(--transition); cursor: pointer; border: none; }
.quotes-dots .dot.active { background: var(--primary-color); box-shadow: 0 0 10px var(--primary-color); transform: scale(1.2); }
.quotes-nav { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 -20px; pointer-events: none; }
.quote-nav-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--glass-border); background: var(--glass-bg); color: var(--text-light); display: flex; justify-content: center; align-items: center; transition: var(--transition); pointer-events: auto; margin: 0 -20px; }
.quote-nav-btn:hover { background: rgba(255,77,133,0.2); border-color: var(--primary-color); }

/* ====== CONFESSION ====== */
.confession-section { position: relative; overflow: hidden; min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 100px 5%; background: radial-gradient(circle at 50% 50%, #1a0520 0%, var(--bg-dark) 100%); }
.confession-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('night_sky_bg.png') no-repeat center center/cover; opacity: 0.15; }
.confession-container { max-width: 750px; background: var(--glass-bg); border: 1px solid rgba(255,77,133,0.15); border-radius: 30px; padding: 60px 45px; backdrop-filter: blur(20px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 60px rgba(255,77,133,0.08); position: relative; z-index: 2; }
.confession-icon { text-align: center; font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; animation: heartbeat 2s infinite; }
.confession-title { font-family: var(--font-heading); font-size: 3rem; text-align: center; color: #fff; margin-bottom: 30px; }
.confession-content p { font-family: var(--font-serif); font-size: 1.15rem; color: #ddd; line-height: 1.9; margin-bottom: 20px; text-align: center; }
.confession-content strong { color: var(--primary-color); font-style: italic; }
.confession-promise { font-size: 1.4rem !important; color: #fff !important; font-weight: bold; padding: 20px; background: rgba(255,77,133,0.08); border-radius: 15px; border: 1px solid rgba(255,77,133,0.2); margin-top: 30px !important; }
.confession-sign { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,77,133,0.15); }
.confession-sign p:first-child { font-family: var(--font-cursive); font-size: 2.2rem; color: var(--primary-color); }
.confession-subtitle { color: var(--text-muted); margin-top: 5px; }
/* ====== ANUSHKA STORY SECTION ====== */
.story-section { position: relative; overflow: hidden; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 100px 5%; background: radial-gradient(circle at center, #2a081a 0%, var(--bg-dark) 100%); }
.story-bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://www.transparenttextures.com/patterns/stardust.png'); opacity: 0.2; pointer-events: none; }
.story-container { max-width: 800px; width: 100%; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(255, 77, 133, 0.2); text-align: center; position: relative; z-index: 2; }
.story-scroll-box { max-height: 450px; overflow-y: auto; padding-right: 15px; font-family: var(--font-serif); font-size: 1.15rem; color: #ddd; line-height: 1.9; font-style: italic; text-align: center; }
.story-scroll-box::-webkit-scrollbar { width: 6px; }
.story-scroll-box::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.story-scroll-box::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }
.story-scroll-box p { margin-bottom: 25px; }
.story-scroll-box p:last-child { margin-bottom: 0; }
.bengali-title { font-family: 'Lato', sans-serif; font-size: 2.5rem; line-height: 1.4; }

/* ====== REVEAL ANIMATIONS ====== */
.reveal { opacity: 0; transform: translate3d(0, 50px, 0); transition: all 0.8s ease-out; will-change: opacity, transform; }
.reveal.active { opacity: 1; transform: translate3d(0, 0, 0); }
.fade-in-up { opacity: 0; animation: fadeInUp 1s ease forwards; will-change: opacity, transform; }
@keyframes fadeInUp { 0% { opacity: 0; transform: translate3d(0, 30px, 0); } 100% { opacity: 1; transform: translate3d(0, 0, 0); } }

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .about-container, .music-player { flex-direction: column; text-align: center; }
  .timeline::after { left: 31px; }
  .timeline-item { width: 100%; padding-left: 80px; padding-right: 20px; }
  .timeline-item.right { left: 0; }
  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: 11px; }
  .quotes-carousel { min-height: 350px; }
  .quotes-dots { margin-top: 370px; }
}
/* Intermediate breakpoint — shrink text further to fit nav */
@media (max-width: 1200px) {
  .nav-links { gap: 2px; }
  .nav-link { font-size: 0.65rem; padding: 5px 7px; }
  .navbar { padding: 10px 25px; }
  .navbar.scrolled { padding: 8px 25px; }
}
@media (max-width: 768px) {
  .hero-name { font-size: 5rem; }
  .navbar { padding: 12px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: rgba(10, 3, 15, 0.97); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); gap: 10px;
    border-left: 1px solid rgba(255, 77, 133, 0.2);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.active { right: 0; }
  .nav-link {
    font-size: 0.85rem;
    padding: 10px 24px;
    width: 200px;
    justify-content: flex-start;
    border-radius: 12px;
  }
  .nav-link i { font-size: 0.95rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .propose-title { font-size: 3.5rem; }
  .section-title { font-size: 2.5rem; }
  .bengali-title { font-size: 1.8rem !important; }
  .story-container { padding: 30px 20px; }
  .letter-paper { padding: 40px 25px; }
  .letter-greeting { font-size: 2rem; }
  .confession-container { padding: 40px 25px; }
  .confession-title { font-size: 2.2rem; }
  .countdown-number { font-size: 1.8rem; }
  .quote-card { padding: 40px 25px; }
  .quote-text { font-size: 1.1rem; }
  .final-choice-container { padding: 40px 20px; }
  .final-choice-title { font-size: 2rem; }
  .btn-keep, .btn-fade { width: 100%; }
}

/* ====== FINAL CHOICE SECTION ====== */
.final-choice-section { position: relative; padding: 100px 5%; background: radial-gradient(circle at center, #1a0a2e 0%, var(--bg-dark) 100%); text-align: center; overflow: hidden; }
.final-choice-container { max-width: 700px; margin: 0 auto; background: var(--glass-bg); border: 1px solid rgba(255, 77, 133, 0.2); padding: 50px 40px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(255, 77, 133, 0.1); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); position: relative; z-index: 2; }
.final-choice-title { font-family: var(--font-heading); font-size: 3rem; color: #fff; margin-bottom: 20px; text-shadow: 0 0 15px rgba(255, 77, 133, 0.4); }
.final-choice-content p { font-family: var(--font-serif); font-size: 1.2rem; color: #ddd; line-height: 1.8; margin-bottom: 30px; font-style: italic; }
.final-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-keep, .btn-fade { padding: 12px 30px; border-radius: 25px; font-family: var(--font-body); font-size: 1.1rem; border: none; cursor: pointer; transition: var(--transition); font-weight: bold; }
.btn-keep { background: linear-gradient(45deg, #a239ca, #ff4d85); color: #fff; box-shadow: 0 5px 15px rgba(162, 57, 202, 0.4); }
.btn-keep:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(162, 57, 202, 0.6); }
.btn-fade { background: transparent; border: 1px solid rgba(255, 255, 255, 0.3); color: var(--text-muted); }
.btn-fade:hover { background: rgba(255, 255, 255, 0.05); color: #fff; border-color: rgba(255, 255, 255, 0.6); transform: translateY(-2px); }
.keep-message { margin-top: 20px; animation: popIn 0.8s forwards; }
.keep-message p { font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary-color); font-style: italic; line-height: 1.6; text-shadow: 0 0 10px rgba(255, 77, 133, 0.3); }

/* ====== FADE OUT SCREEN ====== */
.fade-out-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 9999; display: flex; justify-content: center; align-items: center; text-align: center; opacity: 0; pointer-events: none; transition: opacity 4s ease; }
.fade-out-screen.active { opacity: 1; pointer-events: auto; }
.fade-out-text { padding: 40px; }
.fade-out-text p { font-family: var(--font-serif); font-size: 1.2rem; color: #aaa; line-height: 1.8; margin-bottom: 25px; opacity: 0; transform: translateY(20px); transition: opacity 2s ease, transform 2s ease; }
.fade-out-text p.visible { opacity: 1; transform: translateY(0); }
.fade-out-text p:last-child { margin-bottom: 0; color: #fff; font-style: italic; }

/* ====== VIEW ONCE SCREEN ====== */
.view-once-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #0a030f; z-index: 20000; display: flex; justify-content: center; align-items: center; text-align: center; }
.view-once-content { padding: 40px; animation: popIn 1s forwards; }
.view-once-content p { font-family: var(--font-serif); font-size: 1.5rem; color: #ddd; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.view-once-content p:nth-child(2) { color: var(--primary-color); margin-bottom: 40px; }
.btn-open-again { background: transparent; border: 1px solid rgba(255, 77, 133, 0.5); color: #fff; padding: 12px 30px; border-radius: 30px; font-family: var(--font-body); font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
.btn-open-again:hover { background: rgba(255, 77, 133, 0.2); border-color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 77, 133, 0.3); }


/* ===== Cinematic Lyrics Box ===== */

.lyrics-box {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 22px;

  /* cinematic glow */
  box-shadow:
      0 0 25px rgba(255, 105, 180, 0.25),
      inset 0 0 15px rgba(255, 105, 180, 0.15);

  border: 1px solid rgba(255, 105, 180, 0.25);

  max-height: 220px;

  /* scroll enable */
  overflow-y: auto;

  transition: 0.4s ease;
}

/* Hover cinematic effect */
.lyrics-box:hover {
  box-shadow:
      0 0 40px rgba(255, 105, 180, 0.5),
      inset 0 0 20px rgba(255, 105, 180, 0.25);
}

/* Scrollbar cinematic style */
.lyrics-box::-webkit-scrollbar {
  width: 6px;
}

.lyrics-box::-webkit-scrollbar-track {
  background: transparent;
}

.lyrics-box::-webkit-scrollbar-thumb {
  background: linear-gradient(
      180deg,
      rgba(255,105,180,0.9),
      rgba(255,105,180,0.4)
  );

  border-radius: 10px;
}

/* Lyrics text cinematic spacing */
.lyrics-scroll p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.4px;

  color: rgba(255,255,255,0.92);

  margin: 6px 0;

  text-shadow:
      0 0 6px rgba(255,105,180,0.4);
}

/* Smooth scrolling feel */
.lyrics-scroll {
  scroll-behavior: smooth;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

.cinematic-line {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeLine 1.2s ease forwards;
    margin: 14px 0;
    font-size: 18px;
    line-height: 1.8;
}

.cinematic-line:nth-child(1) { animation-delay: 0.4s; }
.cinematic-line:nth-child(2) { animation-delay: 0.8s; }
.cinematic-line:nth-child(3) { animation-delay: 1.2s; }
.cinematic-line:nth-child(4) { animation-delay: 1.6s; }
.cinematic-line:nth-child(5) { animation-delay: 2.0s; }
.cinematic-line:nth-child(6) { animation-delay: 2.4s; }
.cinematic-line:nth-child(7) { animation-delay: 2.8s; }
.cinematic-line:nth-child(8) { animation-delay: 3.2s; }
.cinematic-line:nth-child(9) { animation-delay: 3.6s; }
.cinematic-line:nth-child(10) { animation-delay: 4.0s; }
.cinematic-line:nth-child(11) { animation-delay: 4.4s; }
.cinematic-line:nth-child(12) { animation-delay: 4.8s; }
.cinematic-line:nth-child(13) { animation-delay: 5.2s; }
.cinematic-line:nth-child(14) { animation-delay: 5.6s; }
.cinematic-line:nth-child(15) { animation-delay: 6.0s; }
.cinematic-line:nth-child(16) { animation-delay: 6.4s; }
.cinematic-line:nth-child(17) { animation-delay: 6.8s; }
.cinematic-line:nth-child(18) { animation-delay: 7.2s; }
.cinematic-line:nth-child(19) { animation-delay: 7.6s; }
.cinematic-line:nth-child(20) { animation-delay: 8.0s; }
.cinematic-line:nth-child(21) { animation-delay: 8.4s; }
.cinematic-line:nth-child(22) { animation-delay: 8.8s; }
.cinematic-line:nth-child(23) { animation-delay: 9.2s; }
.cinematic-line:nth-child(24) { animation-delay: 9.6s; }
.cinematic-line:nth-child(25) { animation-delay: 10.0s; }
.cinematic-line:nth-child(26) { animation-delay: 10.4s; }
.cinematic-line:nth-child(27) { animation-delay: 10.8s; }
.cinematic-line:nth-child(28) { animation-delay: 11.2s; }
.cinematic-line:nth-child(29) { animation-delay: 11.6s; }
.cinematic-line:nth-child(30) { animation-delay: 12.0s; }

@keyframes fadeLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destroy-screen {
    position: fixed;
    inset: 0;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    font-size: 20px;
    line-height: 1.8;
    animation: fadeIn 2s ease;
    z-index: 999999;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
