/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle, #1f1f1f, #121212);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  color: #ffffff;
}

/* Loader Container */
.loader-container {
  text-align: center;
  position: relative;
}

/* Rotating Circle */
.rotating-circle {
  width: 100px;
  height: 100px;
  border: 4px solid transparent;
  border-top: 4px solid #00c6ff;
  border-right: 4px solid #0072ff;
  border-radius: 50%;
  animation: rotate 1.5s linear infinite;
  position: relative;
}

.inner-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.8), 0 0 15px rgba(0, 114, 255, 0.6);
}

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

/* Loading Text */
.loading-text {
  font-size: 1.8rem;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.loading-text span {
  color: #00c6ff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .rotating-circle {
    width: 70px;
    height: 70px;
  }

  .inner-circle {
    width: 40px;
    height: 40px;
  }

  .loading-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .rotating-circle {
    width: 50px;
    height: 50px;
  }

  .inner-circle {
    width: 30px;
    height: 30px;
  }

  .loading-text {
    font-size: 1.2rem;
  }
}

