* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --primary-red: #e50914;
  --dark-red: #b20710;
  --light-red: #ff6b6b;
  --dark-bg: #000;
  --darker-bg: #111;
  --light-bg: #1a1a1a;
  --text-light: #fff;
  --text-gray: #aaa;
  --text-dark: #666;
  --gradient-red: linear-gradient(135deg, #e50914, #ff6b6b);
  --gradient-dark: linear-gradient(135deg, #000, #1a1a1a);
  --shadow: 0 8px 32px rgba(229, 9, 20, 0.15);
  --shadow-heavy: 0 15px 40px rgba(229, 9, 20, 0.25);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.unlocked {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23e50914" d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>'), auto;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-red);
  width: 0%;
  z-index: 10001;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--primary-red);
}

/* Password Screen */
#lockScreen {
  position: fixed;
  inset: 0;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.lock-box {
  text-align: center;
  color: var(--text-light);
  width: 90%;
  max-width: 400px;
  padding: 40px 30px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(229, 9, 20, 0.3);
  box-shadow: var(--shadow-heavy);
  animation: pulse 2s infinite alternate;
  margin: 0 20px;
  box-sizing: border-box;
}

@keyframes pulse {
  from { box-shadow: 0 0 30px rgba(229, 9, 20, 0.3); }
  to { box-shadow: 0 0 50px rgba(229, 9, 20, 0.6); }
}

.heart-lock {
  font-size: 3em;
  margin-bottom: 20px;
  position: relative;
  color: var(--primary-red);
}

.heart-lock .fa-heart {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.2); }
}

.lock-box h1 {
  color: var(--primary-red);
  margin-bottom: 10px;
  font-size: 2em;
}

.sub-lock {
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* Password Screen - Updated */
.password-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
  width: 100%;
}

#passwordInput {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1em;
  transition: var(--transition);
  box-sizing: border-box;
}

#passwordInput:focus {
  outline: none;
  border-color: var(--primary-red);
  background: rgba(255, 255, 255, 0.15);
}

.unlock-btn {
  width: 100%;
  padding: 15px;
  background: var(--gradient-red);
  border: none;
  border-radius: 10px;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

.unlock-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hint {
  color: var(--text-gray);
  font-size: 0.9em;
  margin-top: 15px;
  opacity: 0.7;
}

#errorMsg {
  color: var(--light-red);
  margin-top: 15px;
  min-height: 20px;
  font-weight: 600;
}

/* Navigation */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

.logo {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.music-toggle button {
  background: rgba(229, 9, 20, 0.2);
  border: 1px solid var(--primary-red);
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.music-toggle button:hover {
  background: var(--primary-red);
}

.profile {
  width: 40px;
  height: 40px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("assets/gulandshivamhome.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.heart-beat {
  animation: heartBeat 1.5s infinite;
  display: inline-block;
  margin-left: 10px;
}

.hero-content h1 {
  font-size: 4.5em;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--text-light), var(--light-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.5em;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.meta {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 1.1em;
}

.play-btn {
  padding: 15px 40px;
  background: var(--gradient-red);
  border: none;
  border-radius: 30px;
  color: var(--text-light);
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px auto;
  transition: var(--transition);
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: 0.9em;
}

.stat i {
  color: var(--primary-red);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--text-light);
  border-right: 2px solid var(--text-light);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: rotate(45deg) translate(8px, 8px);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.4;
  }
}

/* Countdown */
.countdown {
  text-align: center;
  padding: 80px 10%;
  background: var(--darker-bg);
}

.countdown h2 {
  font-size: 2em;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(229, 9, 20, 0.1);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  min-width: 120px;
  border: 1px solid rgba(229, 9, 20, 0.2);
  transition: var(--transition);
}

.countdown-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow);
}

.countdown-box span {
  font-size: 3.5em;
  font-weight: 700;
  color: var(--primary-red);
  display: block;
  font-family: 'Montserrat', monospace;
}

.countdown-box small {
  color: var(--text-gray);
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-text {
  color: var(--text-gray);
  margin-top: 20px;
  font-size: 1.1em;
}

/* Trailer */
.trailer {
  padding: 80px 10%;
}

.trailer h2 {
  font-size: 2em;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

video {
  width: 100%;
  display: block;
  background: #000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.video-overlay:hover {
  opacity: 0.9;
}

.play-video-btn {
  background: transparent;
  border: none;
  color: var(--primary-red);
  font-size: 5em;
  cursor: pointer;
  transition: var(--transition);
}

.play-video-btn:hover {
  transform: scale(1.1);
}

/* Episodes */
.episode {
  padding: 80px 10%;
  position: relative;
}

.episode:nth-child(odd) {
  background: rgba(26, 26, 26, 0.5);
}

.episode-header {
  margin-bottom: 30px;
}

.season-badge {
  display: inline-block;
  background: var(--gradient-red);
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 10px;
}

.episode h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: var(--text-light);
}

.episode-meta {
  display: flex;
  gap: 20px;
  color: var(--text-gray);
  font-size: 0.9em;
}

.episode-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.episode-desc {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-gray);
}

.episode-image {
  margin: 40px 0;
  position: relative;
}

.episode-image img {
  width: 100%;
  max-width: 800px;
  border-radius: var(--border-radius);
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
}

.episode-image img:hover {
  transform: scale(1.01);
}

.image-caption {
  text-align: center;
  color: var(--text-gray);
  margin-top: 15px;
  font-style: italic;
  font-size: 0.9em;
}

.episode-quote {
  text-align: center;
  font-size: 1.3em;
  color: var(--primary-red);
  margin-top: 40px;
  padding: 20px;
  border-left: 3px solid var(--primary-red);
  background: rgba(229, 9, 20, 0.05);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.episode-quote i {
  opacity: 0.5;
  margin: 0 10px;
}

/* Finale */
.finale {
  padding: 100px 10%;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(0, 0, 0, 0.9));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.finale::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23e50914" opacity="0.05" d="M50,20 A30,30 0 1,1 50,80 A30,30 0 1,1 50,20"/></svg>');
  animation: floatHearts 20s linear infinite;
}

@keyframes floatHearts {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

.finale-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.finale h2 {
  font-size: 3em;
  margin-bottom: 40px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.finale-text {
  font-size: 1.4em;
  line-height: 2;
  margin-bottom: 40px;
  color: var(--text-light);
}

.finale-highlight {
  font-size: 1.6em;
  color: var(--primary-red);
  margin: 40px 0;
  padding: 20px;
  border: 2px solid var(--primary-red);
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.5);
}

.finale-heart {
  font-size: 4em;
  color: var(--primary-red);
  animation: heartBeat 1.5s infinite;
  margin-top: 30px;
}

/* Section Header */
.section-header {
  padding: 60px 10% 40px;
}

.section-header h2 {
  font-size: 2.2em;
  font-weight: 700;
  border-left: 4px solid var(--primary-red);
  padding-left: 20px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-subtitle {
  color: var(--text-gray);
  margin-top: 10px;
  padding-left: 24px;
  font-size: 1em;
}

/* Memories */
.memories {
  padding: 40px 10%;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.memory-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  height: 300px;
}

.memory-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.memory-card:hover img {
  transform: scale(1.05);
}

.memory-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.memory-card:hover .memory-overlay {
  opacity: 1;
}

.memory-overlay i {
  font-size: 2em;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.memory-overlay p {
  color: var(--text-light);
  font-weight: 600;
}

/* Love Meter */
.interactive {
  padding: 80px 10%;
  background: var(--darker-bg);
  text-align: center;
}

.interactive h2 {
  font-size: 2em;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.love-meter-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(229, 9, 20, 0.2);
}

.meter-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.meter-info p {
  color: var(--text-gray);
  font-size: 1.1em;
}

.percentage {
  font-size: 2.5em !important;
  font-weight: 700;
  color: var(--primary-red) !important;
  font-family: 'Montserrat', monospace;
}

.meter-bar {
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin: 30px 0;
  overflow: hidden;
  position: relative;
}

.meter-fill {
  height: 100%;
  background: var(--gradient-red);
  border-radius: 20px;
  transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

.meter-ticks {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-gray);
  font-size: 0.8em;
}

.love-btn {
  padding: 15px 40px;
  background: var(--gradient-red);
  border: none;
  border-radius: 30px;
  color: var(--text-light);
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px auto;
  transition: var(--transition);
}

.love-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.love-note-small {
  color: var(--text-gray);
  font-size: 0.9em;
  margin-top: 20px;
}

/* Love Note */
.love-note {
  padding: 40px 10%;
}

.note-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 50px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(229, 9, 20, 0.2);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite alternate;
}

.note-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-red);
}

.note-header {
  text-align: center;
  margin-bottom: 40px;
}

.note-header i {
  font-size: 2em;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.note-header h3 {
  font-size: 1.8em;
  color: var(--text-light);
}

.note-content {
  font-size: 1.2em;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.note-highlight {
  background: rgba(229, 9, 20, 0.1);
  padding: 25px;
  margin: 30px 0;
  border-left: 3px solid var(--primary-red);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  color: var(--text-light);
  font-size: 1.3em;
  line-height: 1.6;
}

.note-highlight i {
  color: var(--primary-red);
  opacity: 0.5;
  margin: 0 10px;
}

.note-signature {
  text-align: right;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
}

.note-signature p {
  color: var(--text-gray);
  font-size: 1em;
}

.note-signature h4 {
  font-size: 2em;
  color: var(--primary-red);
  margin-top: 10px;
}

.note-seal {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9em;
}

/* Teaser */
.teaser {
  padding: 80px 10%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
}

.teaser-header {
  text-align: center;
  margin-bottom: 40px;
}

.teaser-badge {
  display: inline-block;
  background: var(--gradient-red);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.teaser h2 {
  font-size: 2.5em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.teaser-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.teaser-content p {
  font-size: 1.2em;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.teaser-highlight {
  font-size: 1.5em;
  color: var(--primary-red);
  margin: 40px 0;
  padding: 30px;
  border: 2px dashed var(--primary-red);
  border-radius: var(--border-radius);
  background: rgba(229, 9, 20, 0.05);
}

.teaser-countdown {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.teaser-countdown p {
  color: var(--text-light);
  font-size: 1.1em;
  margin-bottom: 15px;
}

.teaser-countdown span {
  color: var(--primary-red);
  font-weight: 700;
}

.teaser-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.teaser-progress-fill {
  height: 100%;
  background: var(--gradient-red);
  width: 30%;
  border-radius: 3px;
  animation: progressFill 3s ease-in-out infinite alternate;
}

@keyframes progressFill {
  from { width: 30%; }
  to { width: 35%; }
}

/* Footer */
footer {
  padding: 60px 10% 30px;
  background: var(--darker-bg);
  border-top: 1px solid rgba(229, 9, 20, 0.2);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 2em;
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-text {
  color: var(--text-gray);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.footer-social {
  margin: 40px 0;
}

.footer-social p {
  color: var(--text-gray);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.2);
  border: 1px solid var(--primary-red);
  color: var(--text-light);
  font-size: 1.2em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.footer-copyright {
  color: var(--text-dark);
  font-size: 0.9em;
  margin: 30px 0;
}

.secret-btn {
  background: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-gray);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px auto;
}

.secret-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

/* Lightbox */
.memory-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 2em;
  cursor: pointer;
  z-index: 1;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-red);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 9, 20, 0.3);
  border: none;
  color: var(--text-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-red);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
  max-width: 600px;
}

.lightbox-caption h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary-red);
}

.lightbox-caption p {
  color: var(--text-gray);
  font-size: 1.1em;
}

/* Secret Modal */
.secret-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10003;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.secret-content {
  background: var(--gradient-dark);
  padding: 50px;
  border-radius: var(--border-radius);
  max-width: 500px;
  text-align: center;
  border: 2px solid var(--primary-red);
  position: relative;
  animation: pulse 2s infinite alternate;
}

.secret-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-size: 1.5em;
  cursor: pointer;
  transition: var(--transition);
}

.secret-close:hover {
  color: var(--primary-red);
}

.secret-heart {
  font-size: 4em;
  color: var(--primary-red);
  margin-bottom: 20px;
  animation: heartBeat 1.5s infinite;
}

.secret-content h3 {
  font-size: 1.8em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.secret-message {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.secret-ok {
  padding: 15px 40px;
  background: var(--gradient-red);
  border: none;
  border-radius: 30px;
  color: var(--text-light);
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.secret-ok:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }
  
  .logo {
    font-size: 1.2em;
  }
  
  .hero-content h1 {
    font-size: 2.8em;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .countdown-box {
    min-width: 80px;
    padding: 20px 10px;
  }
  
  .countdown-box span {
    font-size: 2.5em;
  }
  
  .episode, .trailer, .memories, .interactive, .love-note, .teaser {
    padding: 60px 20px;
  }
  
  .memory-grid {
    grid-template-columns: 1fr;
  }
  
  .memory-card {
    height: 250px;
  }
  
  .note-container {
    padding: 30px 20px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2em;
  }
  
  .subtitle {
    font-size: 1.2em;
  }
  
  .section-header h2 {
    font-size: 1.8em;
  }
  
  .countdown-timer {
    gap: 15px;
  }
  
  .countdown-box {
    min-width: 70px;
  }
  
  .countdown-box span {
    font-size: 2em;
  }
  
  .play-btn, .love-btn {
    padding: 12px 30px;
    font-size: 1em;
  }
}

.memory-overlay p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95em;
    padding: 0 10px;
    text-align: center;
    line-height: 1.4;
}

.lightbox-caption h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.lightbox-caption p {
    color: #ccc;
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}