html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

#maintenance-wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2a 0%, #23233a 100%);
}

.maintenance-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: 3rem 2rem;
  background: #22223a;
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(220, 20, 100, 0.18);
}

.maintenance-icon {
  font-size: 4rem;
  color: #e0186e;
  margin-bottom: 1.25rem;
  display: block;
}

.maintenance-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.maintenance-card p {
  color: #b0aec8;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.maintenance-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0186e;
  margin: 0 4px;
  animation: bounce 1.2s infinite ease-in-out;
}

.maintenance-dots span:nth-child(2) { animation-delay: 0.2s; }
.maintenance-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 1; }
  40%            { transform: translateY(-10px); opacity: 0.6; }
}
