.loaderContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #e0e0e0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  z-index: 9999;
  overflow: hidden;
}

.gradientBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #000033, #000066, #000033);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

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

.particlesContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  background-color: rgba(0, 191, 255, 0.6);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  box-shadow: 0 0 5px rgba(0, 191, 255, 0.8);
}

.shapesContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  background-color: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

.logoWrapper {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  z-index: 3;
}

.outerRing,
.innerRing {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}

.outerRing {
  width: 150px;
  height: 150px;
  border-width: 2px;
  border-top-color: rgba(0, 191, 255, 0.7);
  border-right-color: rgba(0, 191, 255, 0.7);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.innerRing {
  width: 100px;
  height: 100px;
  border-width: 2px;
  border-bottom-color: rgba(0, 191, 255, 0.5);
  border-left-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.logo {
  width: 80px;
  height: 80px;
  background-color: #000033;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  color: #00bfff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
  text-shadow: 0 0 5px rgba(0, 191, 255, 0.7);
}

.logoText {
  font-family: "Arial Black", sans-serif;
}

.loaderContent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.progressBarContainer {
  width: 300px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
  z-index: 3;
}

.progressBar {
  height: 100%;
  background: linear-gradient(90deg, #00bfff, #007bff);
  border-radius: 4px;
  transition: width 0.3s ease-out;
}

.statusText {
  font-size: 1.1rem;
  color: #a0a0a0;
  z-index: 3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logoWrapper {
    width: 120px;
    height: 120px;
  }

  .outerRing {
    width: 120px;
    height: 120px;
  }

  .innerRing {
    width: 80px;
    height: 80px;
  }

  .logo {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .progressBarContainer {
    width: 80%;
  }

  .statusText {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logoWrapper {
    width: 100px;
    height: 100px;
  }

  .outerRing {
    width: 100px;
    height: 100px;
  }

  .innerRing {
    width: 60px;
    height: 60px;
  }

  .logo {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .progressBarContainer {
    width: 70%;
  }

  .statusText {
    font-size: 0.8rem;
  }
}
