@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.8);
  --bg-gradient: radial-gradient(circle at center, #0cbce8 0%, #0791b6 100%);
  --divider-color: rgba(255, 255, 255, 0.2);
}

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

html, body {
  height: 100%;
}

.maint-body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--text-main);
}

.maint-page {
  text-align: center;
  max-width: 520px;
  width: 100%;
  animation: fadeIn 0.8s ease-out forwards;
}

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

.maint-logo-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 170px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

.maint-logo-wrap img {
  max-width: 120px;
  height: auto;
}

.maint-divider {
  border: 0;
  height: 1px;
  background: var(--divider-color);
  margin: 2rem auto;
  width: 50px;
}

.maint-message h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.maint-message p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.maint-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.maint-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.maint-btn:active {
  transform: translateY(2px);
}

.maint-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}

.maint-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .maint-page {
    padding: 1rem;
  }
  
  .maint-logo-wrap {
    width: 140px;
    height: 140px;
  }

  .maint-logo-wrap img {
    max-width: 100px;
  }
  
  .maint-message h1 {
    font-size: 1.6rem;
  }
  
  .maint-message p {
    font-size: 1rem;
  }
}
