/* Splash screen */

.splash-screen {
  background: rgba(7, 13, 25, 0.75);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loaded .splash-screen {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.splash-screen .loader-icon {
  width: 90px;
  height: 90px;
  animation: loaderPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(243, 115, 33, 0.4));
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px rgba(243, 115, 33, 0.4));
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 28px rgba(243, 115, 33, 0.7));
    opacity: 0.85;
  }
}