.init-box {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: oklch(10% 0.01 220);
  z-index: 9999;
}

.init-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.6), 0 0 80px rgba(124, 58, 237, 0.3);
  }
}

.init-loading {
  display: flex;
  gap: 6px;
}

.init-loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f0ff, #7c3aed);
  animation: pulse 1.4s infinite ease-in-out both;
}

.init-loading-dot:nth-child(1) { animation-delay: -0.32s; }
.init-loading-dot:nth-child(2) { animation-delay: -0.16s; }
.init-loading-dot:nth-child(3) { animation-delay: 0s; }
.init-loading-dot:nth-child(4) { animation-delay: 0.16s; }
.init-loading-dot:nth-child(5) { animation-delay: 0.32s; }

@keyframes pulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.init-text {
  font-size: 14px;
  color: oklch(70% 0.015 220);
  margin-top: 16px;
  letter-spacing: 2px;
  animation: textPulse 2s ease-in-out infinite, gradientMove 3s linear infinite;
  background: linear-gradient(90deg, #00f0ff, #7c3aed, #00f0ff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes textPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}