.app-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.app-preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.shuriken-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#shuriken-container {
  width: 66px;
  height: 68px;
  animation: 1.7s linear 0s infinite normal forwards running shuriken-container;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

@keyframes shuriken-container {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-20deg);
  }
  45% {
    transform: rotate(-80deg);
  }
  70% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(-93deg);
  }
}

#shuriken {
  width: 60px;
  height: 60px;
  animation: 1.7s linear 0s infinite normal forwards running shuriken;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

@keyframes shuriken {
  0% {
    width: 60px;
    height: 60px;
  }
  30% {
    width: 70px;
    height: 70px;
  }
  65% {
    width: 60px;
    height: 60px;
  }
  100% {
    width: 60px;
    height: 60px;
  }
}

.preloader-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

