/* ── Maintenance Page Premium Style ──────────────────────── */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
  color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  top: 15%;
  right: 15%;
  z-index: 0;
}

body::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  z-index: 0;
}

.maintenance-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 520px;
  padding: 24px;
  box-sizing: border-box;
  text-align: center;
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.maintenance-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(5, 150, 105, 0.05);
}

.icon-wrapper {
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gear-main {
  width: 80px;
  height: 80px;
  color: #10b981;
  animation: rotate-cw 8s linear infinite;
  filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
}

.gear-sub {
  width: 44px;
  height: 44px;
  color: #059669;
  position: absolute;
  bottom: -8px;
  right: -12px;
  animation: rotate-ccw 6s linear infinite;
  filter: drop-shadow(0 0 10px rgba(5, 150, 105, 0.3));
}

@keyframes rotate-cw {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-ccw {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 32px 0;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.footer-links {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 8px;
}

.contact-info {
  font-size: 0.9rem;
  color: #64748b;
}

.contact-info a {
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-info a:hover {
  color: #10b981;
  text-decoration: underline;
}
