/* maintenance.css – Premium maintenance page */

:root {
  --bg-dark: #0a0a0a;
  --bg-card: rgba(43, 43, 43, 0.83);
  --text-primary: #ffffff;
  --accent: #ffcc00; /* gold accent */
  --transition: 0.3s ease;
  --font-primary: 'Inter', sans-serif;
}

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

body {
  background: #d7d3d3 !important;
  font-family: Inter, sans-serif;
  color: var(--text-primary);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.maintenance-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(12px) saturate(150%);
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.8s var(--transition) both;
}

.maintenance-wrapper h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--accent);
}

.maintenance-wrapper p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Simple pulsating loader */
.loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.2s linear infinite, pulse 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

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

/* Responsive */
@media (max-width: 480px) {
  .maintenance-wrapper { padding: 2rem 1.5rem; }
}
