:root {
  color-scheme: light dark;
  --bg: #f5f7fa;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --accent: #0f172a;
  --border: #e5e7eb;
  --highlight: #2563eb;
  --truth-gold-rgb: 217, 119, 6;
  --truth-gold: rgb(var(--truth-gold-rgb));
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

main {
  min-height: 100vh;
}
