/* Splash screen — gezeigt bis React gemountet hat */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a1628;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.4s ease;
}
#splash img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  animation: splashPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#splash span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #e2eaf4;
  letter-spacing: -0.03em;
  animation: splashFade 0.5s 0.15s ease both;
}
@keyframes splashPop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes splashFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
#splash.hidden {
  opacity: 0;
  pointer-events: none;
}
