#splash {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f1f5f9;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#splash-logo {
  width: 80px;
  height: 80px;
  display: block;
  padding: 16px;
  border-radius: 24px;
  background: #184c43;
  box-shadow: 0 18px 48px rgb(11 47 39 / 18%);
  animation: splash-pulse 1.4s ease-in-out infinite;
}

@keyframes splash-pulse {
  50% {
    transform: scale(1.04);
    opacity: 0.86;
  }
}
