/* [project]/app/components/LoadingScreen.css [app-client] (css) */
.loading-screen {
  z-index: 9999;
  background: linear-gradient(135deg, #080808, #151515);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.particles-bg {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.loading-content {
  z-index: 2;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  transition: all .8s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  position: relative;
  transform: translateY(20px);
}

.loading-content.phase-1 {
  opacity: 1;
  transform: translateY(0);
}

.loading-content.phase-2 {
  transform: scale(1.05);
}

.loading-content.phase-3 {
  transform: scale(1);
}

.nova-branding {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.logo-hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, #4aff28, #32cd32);
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 90px;
  animation: 10s linear infinite rotate;
  display: flex;
  position: relative;
  box-shadow: 0 0 25px #4aff2880;
}

.logo-inner {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #080808;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 70%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-pulse {
  background: radial-gradient(circle, #4aff2899 0%, #0000 70%);
  width: 100%;
  height: 100%;
  animation: 2s infinite alternate pulse;
  position: absolute;
}

.nova-logo-text {
  letter-spacing: 4px;
  flex-direction: column;
  align-items: center;
  font-size: 3rem;
  font-weight: 900;
  display: flex;
}

.text-gradient {
  background: linear-gradient(to right, #4aff28, #32cd32);
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px #4aff284d;
  -webkit-background-clip: text;
  background-clip: text;
}

.logo-subtitle {
  letter-spacing: 2px;
  color: #ffffffb3;
  margin-top: -.5rem;
  font-size: 1rem;
}

.loading-status {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 300px;
  display: flex;
}

.status-text {
  color: #fffc;
  letter-spacing: 1px;
  text-align: center;
  min-height: 1.2rem;
  font-size: .9rem;
  font-weight: 500;
}

.progress-container {
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  width: 100%;
  display: flex;
}

.progress-track {
  background: #ffffff14;
  border-radius: 3px;
  width: 100%;
  height: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 5px #00000080;
}

.progress-bar {
  background: linear-gradient(to right, #4aff28, #32cd32);
  border-radius: 3px;
  height: 100%;
  transition: width .4s cubic-bezier(.2, .8, .2, 1);
  position: relative;
}

.progress-glow {
  filter: blur(3px);
  background: linear-gradient(to right, #4aff2800, #4aff28cc);
  border-radius: 0 3px 3px 0;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.progress-percentage {
  color: #ffffffb3;
  font-size: .8rem;
  font-weight: 600;
}

.welcome-message {
  text-align: center;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  animation: .8s forwards fadeScale;
  display: flex;
  transform: scale(.9);
}

.welcome-title {
  background: linear-gradient(to right, #4aff28, #32cd32);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 0 .5rem;
  font-size: 2rem;
  font-weight: 800;
}

.welcome-text {
  color: #fffc;
  margin: 0;
  font-size: 1.1rem;
}

@keyframes pulse {
  0% {
    opacity: .5;
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .nova-logo-text {
    font-size: 2.5rem;
  }

  .logo-hexagon {
    width: 70px;
    height: 80px;
  }

  .loading-status {
    width: 280px;
  }
}

/*# sourceMappingURL=app_components_LoadingScreen_6ef3e59c.css.map*/