html.maintenance-mode,
html.maintenance-mode body {
  min-height: 100%;
}

html.maintenance-mode body {
  overflow: hidden;
}

html.maintenance-mode body > :not(.maintenance-overlay) {
  display: none !important;
}

.maintenance-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(120, 120, 130, 0.14), transparent 40%),
    linear-gradient(180deg, #050506 0%, #09090b 45%, #050506 100%);
  color: var(--text, #f4f4f2);
}

html.maintenance-mode .maintenance-overlay {
  display: flex;
}

.maintenance-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(15, 15, 16, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}

.maintenance-panel h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.maintenance-panel p {
  margin: 0;
}

.maintenance-message {
  margin: 22px auto 0;
  max-width: 44rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
  color: rgba(244, 244, 242, 0.82);
}

.maintenance-footer {
  margin-top: 28px;
  color: rgba(244, 244, 242, 0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .maintenance-overlay {
    padding: 18px;
  }

  .maintenance-panel {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .maintenance-message {
    margin-top: 18px;
  }
}
