/* ========================================
   Splash Screen - LANAU112 PWA
   Fons blau per transició suau des del splash natiu
   ======================================== */

/* ── Overlay ── */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #4471b5;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}

.splash-overlay.splash-exit {
  opacity: 0;
  pointer-events: none;
}
