#boot-splash {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #2d6b2d;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: opacity 350ms ease-out;
  opacity: 1;
}
#boot-splash.boot-splash--hidden {
  opacity: 0;
  pointer-events: none;
}
#boot-splash img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}
#boot-splash .boot-splash__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: boot-splash-spin 0.9s linear infinite;
}
#boot-splash .boot-splash__text {
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
@keyframes boot-splash-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  #boot-splash .boot-splash__spinner {
    animation: none;
  }
}
