#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050709;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}

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

#splash > i {
  width: 56px;
  height: 56px;
  background: #ff4a1f;
  clip-path: polygon(100% 0, 100% 65%, 65% 100%, 0 100%);
  filter: drop-shadow(0 0 30px rgba(255, 74, 31, 0.55));
  animation: splash-bounce 0.7s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes splash-bounce {
  0%, 100% {
    transform: translateY(0) scaleY(0.96);
  }

  50% {
    transform: translateY(-24px) scaleY(1.04);
  }
}
