/* Style de la page en maintenance */

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  max-width: 500px;
}

.icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #ffd700;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  color: #333;
  font-weight: 600;
  transition: background 0.3s;
}

button:hover {
  background: #ffd633;
}

.hidden {
  display: none;
}

#message {
  margin-top: 1rem;
  color: #90ee90;
}
