.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-text {
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.5em;
  animation: textGlow 2s ease-in-out infinite;
}

.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: #00ff88;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.loader-circle::before,
.loader-circle::after {
  content: '';
  position: absolute;
  border: 4px solid transparent;
  border-radius: 50%;
}

.loader-circle::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: #00ccff;
  animation: spin 2s linear infinite;
}

.loader-circle::after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-top-color: #ff00ff;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textGlow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px #00ff88,
                 0 0 20px #00ff88,
                 0 0 30px #00ff88;
  }
  50% {
    opacity: 0.5;
    text-shadow: 0 0 5px #00ff88,
                 0 0 10px #00ff88,
                 0 0 15px #00ff88;
  }
}

/* Additional styling for preloader context */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 999999;
}

#preloader .loader-container {
  height: 100%;
} 