@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f0f1a;
  color: white;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

main {
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.maintenance-text {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(to right, #8a7fff, #a44fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main p {
  font-size: 1.1rem;
  color: #aaaaaa;
}

/* Blur background lights */
.blur-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7745ff, #552288);
  filter: blur(150px);
  opacity: 0.25;
  border-radius: 50%;
  z-index: 0;
  animation: float 10s ease-in-out infinite alternate;
}

.top-left {
  top: -100px;
  left: -100px;
}
.bottom-right {
  bottom: -120px;
  right: -100px;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(20px) translateX(20px); }
}
