:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(220 20% 10%);
  --muted-foreground: hsl(220 10% 46%);
}

html.dark {
  --background: hsl(220 20% 8%);
  --foreground: hsl(220 10% 92%);
  --muted-foreground: hsl(220 10% 56%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--foreground);
}

.maintenance-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.maintenance-card {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.maintenance-animation {
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
}

.maintenance-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--foreground);
}

.maintenance-description {
  max-width: 20rem;
  margin: 12px 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.maintenance-description--noscript {
  margin-top: 16px;
}

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