body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
}

.maintenance-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

.maintenance-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 1000px;
  width: 100%;
  animation: fadeIn 0.8s ease-in-out;
}

.title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.illustration-zone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.maintenance-logo {
  width: 150px;
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

.loader-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(#ffcc00, #ff6600, #ffcc00);
  animation: rotateRGB 5s linear infinite;
  filter: blur(2px);
  opacity: 0.3;
  z-index: 0;
}

.footer-note {
  font-size: 1.1rem;
  color: #666;
}

/* Animations */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes rotateRGB {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.countdown-container {
  margin-top: 2rem;
  text-align: center;
}

.countdown-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.countdown-clock {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6600;
}
