* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b1120;
}

.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.maintenance-card {
  max-width: 100hv;
  width: 100%;
  background: #111827;
  padding: 35px 25px;
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.icon {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.icon i {
  font-size: 60px;
  color: #111827;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.countdown {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: #1e293b;
  color: #fff;
}

.countdown span {
  color: #94a3b8;
  margin-right: 8px;
}

.contact-btn {
  background: #d4af37;
  color: #111827;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #c59d22;
  color: #111827;
}
.loading {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.loading span {
  width: 14px;
  height: 14px;
  background: #d4af37;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.loading span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0.5);
    opacity: 0.4;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .maintenance-card {
    padding: 40px 25px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .icon {
    width: 90px;
    height: 90px;
  }

  .icon i {
    font-size: 45px;
  }
}
