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

body {
  background-color: #0a0f0d;
  color: #e5e7eb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  padding: 40px 20px;
  gap: 32px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 220px;
  height: auto;
  display: block;
}

.api-label {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00a876;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 168, 118, 0.35);
  border-radius: 100px;
  background-color: rgba(0, 168, 118, 0.07);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00a876;
  box-shadow: 0 0 6px #00a876;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.status-text {
  font-size: 13px;
  font-weight: 500;
  color: #00a876;
  letter-spacing: 0.04em;
}

.footer-text {
  font-size: 12px;
  color: #374151;
  letter-spacing: 0.03em;
}
