/* Splash overlay styles (vanilla control) */
#splash {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  z-index: 2000;
  display: none;
  opacity: 1;
}
/* visible state uses flex to center content */
#splash.splash--visible {
  display: flex;
  align-items: center;
  justify-content: center;
}
#splash.splash--fadeout {
  opacity: 0;
  transition: opacity 1s ease;
}

#splash_logo {
  position: static;
}
