:root {
  color-scheme: dark;
  --bg: #101214;
  --surface: #171a1c;
  --surface-strong: #202428;
  --text: #f2eee8;
  --text-secondary: #c6c0b7;
  --text-muted: #90897f;
  --border-subtle: #31363a;
  --border-strong: #596168;
  --accent-blue: #68b6ff;
  --accent-green: #75d38a;
  --accent-yellow: #f1c75b;
  --accent-red: #ef7564;
  --font-prose: ui-serif, Georgia, "Times New Roman", serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
