.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: white;
}

.video-container.video-playing {
  background: transparent;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.background-video.video-playing {
  opacity: 1;
}

#lovestory-section {
  position: relative;
  overflow: hidden;
}

#lovestory-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Timeline panel background */
.timeline-panel {
  background: white !important;
}

.timeline-body p {
  color: white !important;
} 