/* Tada Vibes starter — base styles. Edit freely. */
:root {
  --bg: #0b0b12;
  --surface: #15151f;
  --surface-2: #1d1d2b;
  --border: #2a2a3c;
  --text: #e7e7ef;
  --muted: #9a9ab0;
  --accent: #7c6cff;
  --accent-fg: #ffffff;
  --ok: #46d39a;
  --warn: #f0b34b;
}

* { box-sizing: border-box; }

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

header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

header .brand { font-weight: 700; font-size: 16px; }
header nav { display: flex; gap: 18px; }
header nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
header nav a:hover, header nav a.active { color: var(--text); }

main { max-width: 880px; margin: 0 auto; padding: 48px 28px; }

h1 { font-size: 32px; margin: 0 0 8px; letter-spacing: -0.02em; }
h2 { font-size: 18px; margin: 32px 0 12px; }
p { color: var(--muted); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 18px 0;
}

.row { display: flex; align-items: center; gap: 10px; margin: 6px 0; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); flex: none; }
.dot.ok { background: var(--ok); }
.dot.warn { background: var(--warn); }

pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  overflow: auto;
  font-size: 13px;
  color: var(--text);
}

.pill {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

a.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
}
