.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  overflow: hidden;
  background-image: var(--splash-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.splash-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.splash-logos {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  height: 100%;
}

.splash-logos img {
  max-width: 80vw;
  max-height: 80vh;
  height: auto;
  object-fit: contain;
}

.splash-screen.hide {
  animation: splashHide 0.8s ease forwards;
}

@keyframes splashHide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

body.splash-active {
  overflow: hidden;
}
