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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #daddeb 0%, #d1cad8 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  animation: fadeIn 0.8s ease-in;
}

.maintenance-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease-in;
}

.logo img {
  max-width: 200px;
  max-height: 80px;
  width: auto;
  height: auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3748;
  font-weight: 700;
}

.main-message {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
  font-weight: 500;
}

.sub-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 30px;
}

/* Action buttons */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 10px 0 30px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn.primary {
  background: #000;
  color: #fff;
}

.btn.primary:hover {
  background: #000;
}

.btn.outline {
  background: #fff;
  color: #000;
  border-color: #000;
}

.btn.outline:hover {
  background: #000;
  color: #fff;
}

.btn.subtle {
  background: #edf2f7;
  color: #4a5568;
}

.btn.subtle:hover {
  background: #e2e8f0;
}

/* Info box */
.info-box {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #4a5568;
  text-align: left;
}

.info-box strong {
  color: #2d3748;
}

.estimated-time {
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 12px;
}

.estimated-time p {
  font-size: 1rem;
  color: #2d3748;
  margin: 0;
}

.estimated-time span {
  font-weight: bold;
  color: #667eea;
}

.loading-animation {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-animation p {
  font-size: 0.9rem;
  color: #718096;
  font-style: italic;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .maintenance-box {
    padding: 30px 25px;
    margin: 10px;
  }

  h1 {
    font-size: 2rem;
  }

  .main-message {
    font-size: 1.1rem;
  }

  .icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .maintenance-box {
    padding: 25px 20px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .estimated-time {
    padding: 15px;
  }
}
