.splash-skip #splash {
  display: none;
}

#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: splash-overlay 3s ease forwards;
}

.splash__icon {
  width: clamp(100px, 22vw, 200px);
  transform-origin: center center;
  animation: splash-icon 3s ease both;
}

@keyframes splash-icon {
  0% {
    opacity: 0;
    transform: scale(1) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: scale(2.2) rotate(360deg);
  }
}

@keyframes splash-overlay {
  0%, 60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

