:root {
    --bg: #10141a;
    --panel: #1a212b;
    --text: #e8edf3;
    --muted: #93a1b3;
    --accent: #4da3ff;
    --ok: #37c46f;
    --error: #ff5d5d;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.container {
    max-width: 60rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

a {
    color: var(--accent);
}

code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.1em 0.35em;
    border-radius: 0.25em;
    font-size: 0.9em;
}

.muted {
    color: var(--muted);
}

.status-list {
    list-style: none;
    padding: 0;
}

.status-list li {
    background: var(--panel);
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

.status-ok {
    color: var(--ok);
    font-weight: 600;
}

.status-error {
    color: var(--error);
    font-weight: 600;
}
