body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0a0a0a, #00322f);
  color: #f5e9d6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maintenance-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 245, 196, 0.1);
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f5e9d6;
  pointer-events: none;
}

.auth-btn {
  position: absolute;
  right: 20px;
  font-weight: bold;
  font-size: 0.95rem;
  color: #00f5c4;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(0, 245, 196, 0.1);
  border: 1px solid #00f5c4;
}

.auth-btn:hover {
  background-color: #00f5c4;
  color: #0f0f0f;
}

.maintenance-container {
  max-width: 700px;
  margin: 12vh auto 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.maintenance-circle {
  width: 80px;
  height: 80px;
  background-color: #00f5c4;
  border-radius: 50%;
  margin: 2rem auto;
  box-shadow: 0 0 25px #00f5c4;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 20px #00f5c4; }
  50% { transform: scale(1.1); box-shadow: 0 0 40px #00f5c4; }
  100% { transform: scale(1); box-shadow: 0 0 20px #00f5c4; }
}

h1 {
  font-size: 2rem;
  margin: 1rem 0;
  color: #00f5c4;
  text-shadow: 0 0 12px rgba(0, 245, 196, 0.2);
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cccab5;
  margin-bottom: 1rem;
}

.footer {
  margin-top: 1.2rem;
  font-style: italic;
  color: #bbb;
  font-size: 0.95rem;
}

.bottom-note {
  font-size: 0.8rem;
  margin-top: 4rem;
  color: #777;
}

@media (max-width: 600px) {
  .auth-btn { right: 10px; font-size: 0.85rem; padding: 0.4rem 0.8rem; }
  .logo { font-size: 1.2rem; }
  .maintenance-circle { width: 60px; height: 60px; }
  h1 { font-size: 1.4rem; }
}