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

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #2a458f 20%, #e1e31e 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
  padding: 40px 20px;
}

.maintenance-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
}

.logo img {
  max-width: 200px;
  margin-bottom: 30px;
}

.maintenance-message h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.maintenance-message p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.countdown-container {
  margin: 50px 0;
}

.countdown-container h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.time-unit {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 25px 20px;
  min-width: 120px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.time-unit:hover {
  transform: translateY(-5px);
}

.time-unit .number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.time-unit .label {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.launch-date {
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #2a458f;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-date p {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.launch-date small {
  opacity: 0.7;
  font-size: 0.9rem;
}

.contact-info {
  color: #2a458f;
  margin-top: 40px;
  padding: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #2a458f;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-info a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.developer-info {
  margin-top: 30px;
  padding: 15px;
  opacity: 0.8;
  font-size: 0.9rem;
}

.developer-info a {
  color: #2a458f;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.developer-info a:hover {
  border-bottom-color: #fff;
  opacity: 1;
}

/* Animation de fond */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
  z-index: -1;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .maintenance-container {
    margin: 20px;
    padding: 30px 15px;
  }

  .logo h1 {
    font-size: 2.5rem;
  }

  .maintenance-message h2 {
    font-size: 1.8rem;
  }

  .countdown {
    gap: 15px;
  }

  .time-unit {
    min-width: 90px;
    padding: 20px 15px;
  }

  .time-unit .number {
    font-size: 2.2rem;
  }

  .time-unit .label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .countdown {
    flex-direction: column;
    align-items: center;
  }

  .time-unit {
    min-width: 200px;
  }
}
