/* Azul desde el primer byte — antes de cualquier JS o CSS externo */
html, body {
  margin: 0; padding: 0;
  background: #1E3A8A;
  height: 100%;
  overflow: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: env(safe-area-inset-top, 0px);
  background: #1E3A8A;
  z-index: 9999;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: env(safe-area-inset-bottom, 0px);
  background: #1E3A8A;
  z-index: 199;
  pointer-events: none;
}
/* Idéntico a SplashVisual de React — sin texto ni puntos */
#initial-splash {
  position: fixed;
  inset: 0;
  background: #1E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#initial-splash img {
  display: block;
  width: 74px;
  height: 74px;
}
