.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 1;
  transition: opacity 0.9s ease;
  pointer-events: auto;
}

.splash--hide {
  opacity: 0;
  pointer-events: none;
}

.splash__logo {
  width: min(72vw, calc(420 * var(--ui-scale, 1) * 1px));
  max-width: 92%;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

body.splash-active {
  overflow: hidden;
}
