/* Reset */
body {
  margin: 0;
}

/* Overlay inicial con video */
#page-transition {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

#page-transition.hidden {
  opacity: 0;
  pointer-events: none;
}

#transition-video {
  max-width: 200%;
  max-height: 200%;
}

/* Overlay de salida */
#exit-overlay {
  position: fixed;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.8s ease;
}

#exit-overlay.active {
  opacity: 1;
  pointer-events: all;
}