/* Page Transition Overlay */
#page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 99999; /* Higher than everything */
  pointer-events: auto; /* Blocks clicks initially */
  opacity: 1;
}

/* Scroll Animation Initial State (handled by JS mostly, but good for no-js fallback if needed) */
/* We leave it empty here because GSAP .set() handles it to avoid FOUC if JS loads fast, 
   or we can hide it initially. For safety, let's not hide it with CSS to avoid accessibility issues if JS fails. */
