html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #111111;
  color: #f4f4f5;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
}

.centered-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #18181b;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 41, 55, 0.25);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid #2a2a40;
  padding-bottom: 1.25rem;
}

.logo {
  height: 56px;
  width: 56px;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.25rem;
  box-shadow: 0 2px 8px 0 rgba(31, 41, 55, 0.10);
}

.title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a94cc;
  letter-spacing: -1px;
}

.subtitle {
  margin: 0;
  font-size: 1rem;
  color: #b3b3c6;
  font-weight: 400;
}

.status-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.status-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f4f4f5;
  margin-bottom: 0.5rem;
}

.status-indicator-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #232336;
  box-shadow: 0 0 0 2px #232336;
  display: inline-block;
}
.status-indicator.online {
  background: linear-gradient(135deg, #22d3ee 0%, #4ade80 100%);
  box-shadow: 0 0 8px 2px #22d3ee55;
}

.status-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #4ade80;
}

.status-meta {
  font-size: 0.95rem;
  color: #b3b3c6;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}
.status-meta code {
  background: #18181b;
  color: #a5b4fc;
  border-radius: 0.3em;
  padding: 0.1em 0.4em;
  font-size: 0.95em;
}