:root {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #f8f9fa;
  background-color: #030712;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 20%, rgba(45, 112, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(255, 80, 149, 0.25), transparent 35%),
    #030712;
  color: inherit;
}

.service-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.service-panel {
  width: min(560px, 100%);
  padding: 3rem 2.5rem;
  border-radius: 28px;
  background: rgba(10, 16, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.service-label {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.7);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 220px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.status-chip[data-state="online"] {
  background: rgba(29, 215, 96, 0.15);
  border-color: rgba(29, 215, 96, 0.8);
  color: #1dd760;
}

.status-chip[data-state="offline"] {
  background: rgba(255, 80, 149, 0.15);
  border-color: rgba(255, 80, 149, 0.8);
  color: #ff5095;
}

.status-chip[data-state="unknown"] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.service-button {
  margin: 0 auto 1rem;
  width: min(420px, 100%);
  max-width: 420px;
  height: 120px;
  border-radius: 80px;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #1d63ff, #6d5fff 70%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 25px 45px rgba(15, 12, 59, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.service-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(15, 12, 59, 0.7);
}

.service-button:disabled {
  opacity: 0.65;
  cursor: progress;
  box-shadow: none;
}

.service-button.working {
  opacity: 0.8;
}

.status-detail {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0rem;
}

.status-updated {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .service-panel {
    padding: 2.5rem 1.5rem;
  }

  .service-button {
    height: 94px;
    font-size: 1.2rem;
  }
}
