body {
  margin: 0;
}

.init-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #1e3c72, #2a5298, #3a7bd5);
  position: relative;
  overflow: hidden;
}

.init-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.init-loading {
  text-align: center;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.loader-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 204, 255, 0.2);
  border-radius: 50%;
  animation: orbit-rotate 8s linear infinite;
}

.loader-orbit:nth-child(2) {
  width: 70%;
  height: 70%;
  animation-duration: 6s;
  animation-direction: reverse;
}

.loader-orbit:nth-child(3) {
  width: 40%;
  height: 40%;
  animation-duration: 4s;
}

.loader-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00ccff;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: dot-rotate 2s linear infinite;
}

.loader-dot:nth-child(2) {
  animation-delay: 0.5s;
  background: #00ffaa;
}

.loader-dot:nth-child(3) {
  animation-delay: 1s;
  background: #ff00aa;
}

.loader-center {
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ccff, 0 0 30px #00ccff;
  z-index: 3;
  animation: pulse 1.5s ease-in-out infinite alternate;
}

@keyframes orbit-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dot-rotate {
  0% {
    transform: translateX(-50%) rotate(0deg) translate(40px) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg) translate(40px) rotate(-360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px #00ccff, 0 0 30px #00ccff;
  }
  100% {
    transform: scale(1.2);
    box-shadow: 0 0 20px #00ffaa, 0 0 40px #00ffaa;
  }
}

.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 200, 255, 0.1) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0, 200, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgba(0, 204, 255, 0.7);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

@keyframes text-glow {
  from {
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.7);
  }
  to {
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.9), 0 0 20px rgba(0, 255, 170, 0.6);
  }
}

@keyframes arco-loading-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.init-loading-icon {
  animation: arco-loading-circle 1s infinite cubic-bezier(0,0,1,1);
}
