.home-boot-splash {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  background: #000;
  pointer-events: auto;
}

html.home-boot-splash-active .home-boot-splash {
  display: flex;
}

html.home-boot-splash-active #app {
  visibility: hidden;
}

.home-boot-splash img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  animation: home-boot-logo-bounce 0.9s ease-in-out infinite;
}

@keyframes home-boot-logo-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-boot-splash img {
    animation: none;
  }
}
