html,
body {
  margin: 0;
  min-height: 100%;
  background: #030814;
}

#arvi-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 42%, rgba(37, 99, 235, 0.34), transparent 34%),
    radial-gradient(circle at 30% 57%, rgba(45, 212, 191, 0.18), transparent 25%),
    #030814;
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease, visibility 320ms ease;
}

#arvi-splash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

#arvi-splash img {
  position: relative;
  z-index: 1;
  width: min(46vw, 250px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.38));
  animation: arvi-splash-enter 650ms cubic-bezier(.2, .8, .2, 1) both;
}

#arvi-splash.arvi-splash--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes arvi-splash-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  #arvi-splash,
  #arvi-splash img {
    animation: none;
    transition: none;
  }
}
