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

/* Grundlayout */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
  padding: 2rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
}

.subtitle {
  color: #94a3b8;
  margin-top: 0.5rem;
}

/* Main */
main {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

/* Cards */
.card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
}

.card h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Status Liste */
.status-list {
  list-style: none;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1e293b;
}

.status-list li:last-child {
  border-bottom: none;
}

.service {
  font-weight: 500;
}

.status {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Status Farben */
.online {
  background: #14532d;
  color: #4ade80;
}

.offline {
  background: #450a0a;
  color: #f87171;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 4rem;
  color: #64748b;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  header h1 {
    font-size: 2.2rem;
  }
}
