body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top left, #1e1e2f, #111);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: #e0e0e0;
  position: relative;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.1;
  animation: moveParticles 25s linear infinite;
  filter: blur(0.5px);
}

@keyframes moveParticles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-150px);
  }
}

.loader-container {
  text-align: center;
  background: rgba(30, 30, 30, 0.6);
  padding: 60px 90px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  animation: fadeIn 1.5s ease-in-out;
  border-radius: 0;
  clip-path: ellipse(80% 70% at 50% 50%);
  z-index: 2;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #cfcfcf;
  text-shadow: 0 2px 15px rgba(120, 120, 255, 0.3);
}

p {
  font-size: 1.1rem;
  opacity: 0.8;
  color: #b3b3b3;
}

.loader {
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-top: 6px solid #9a8cff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  animation: spin 1.5s linear infinite;
  box-shadow: 0 0 30px rgba(155, 130, 255, 0.3);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-container:hover {
  box-shadow: 0 25px 80px rgba(160, 130, 255, 0.2);
  transition: all 0.6s ease;
}
