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

html, body {
  height: 100%;
  background: #838383;
  color: #000000;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Layout */
.maintenance-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

/* Logo */
.logo-wrapper {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 100%;
  height: auto;
  animation: pulseGlow 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.15));
}

/* Text */
.company-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.status-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  max-width: 480px;
}

.apology-text {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #333333;
}

/* Animation */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.35));
    opacity: 1;
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
    opacity: 0.85;
  }
}