body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #2C687B, #DB1A1A);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.maintenance-container {
  max-width: 600px;
  padding: 30px;
}

.box {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.1rem;
}

.small {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}