:root {
  --primary-color: #D4AF37;
  --background-color: #13151a;
  --text-color: #ffffff;
  --accent-color: #FFD700;
}

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

body {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

.maintenance-container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  animation: fadeIn 1s ease-in;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.gear-animation {
  margin-bottom: 2rem;
}

.gear {
  width: 80px;
  height: 80px;
  fill: var(--primary-color);
  animation: spin 4s linear infinite;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

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

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

@media (max-width: 480px) {
  .maintenance-container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1.1rem;
  }
}