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

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --accent-glow: rgba(99, 102, 241, 0.3);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.container {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  text-align: center;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.icon-wrapper {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.maintenance-icon {
  width: 120px;
  height: 120px;
  color: var(--primary-color);
  filter: drop-shadow(0 0 30px var(--accent-glow));
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pulse {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.pulse::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.status-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.info-card {
  background: var(--bg-card);
  padding: 1.75rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  animation: fadeInUp 0.8s ease-out 0.8s both;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.info-text a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.info-text a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.info-text a:hover {
  color: var(--primary-color);
}

.info-text a:hover::after {
  width: 100%;
}

.footer {
  position: absolute;
  bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  animation: fadeIn 1s ease-out 1s both;
}

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent);
  opacity: 0.4;
  animation: moveCircle 20s ease-in-out infinite;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.circle-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  animation-delay: 7s;
}

.circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes moveCircle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -100px) scale(1.1);
  }
  66% {
    transform: translate(-100px, 100px) scale(0.9);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 1.1rem;
  }

  .maintenance-icon {
    width: 80px;
    height: 80px;
  }

  .info-card {
    padding: 1.5rem;
  }

  .info-text {
    font-size: 0.9rem;
  }

  .circle-1,
  .circle-2,
  .circle-3 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  .title {
    font-size: 1.75rem;
  }

  .description {
    font-size: 1rem;
  }

  .status-badge {
    padding: 0.75rem 1.5rem;
  }

  .info-text br {
    display: none;
  }
}
