/* style.css - Premium Maintenance Page Styles */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0d0d2b, #1a2a6c, #2c3e50);
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Glassmorphism container */
.maintenance-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 3rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: float 4s ease-in-out infinite;
}

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

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e0e0ff;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #d0d0ff;
}

/* Pulsating icon */
.icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
  color: #4da6ff;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* Responsive */
@media (max-width: 480px) {
  .maintenance-card {
    padding: 1.5rem 2rem;
  }
  h1 { font-size: 1.8rem; }
  p { font-size: 0.9rem; }
}
