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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.maintenance-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
}

.maintenance-content {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.emoji {
  font-size: 80px;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

h1 {
  font-size: 42px;
  color: #667eea;
  margin-bottom: 20px;
  font-weight: 700;
}

p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.status-info {
  margin-top: 40px;
  padding: 20px;
  background: #f0f4ff;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.status-info small {
  color: #555;
  font-size: 14px;
}

.status-info strong {
  color: #667eea;
}

.loader {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

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

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

@media (max-width: 600px) {
  .maintenance-content {
    padding: 40px 20px;
  }

  .emoji {
    font-size: 60px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }
}
