/* Basic reset and dark theme tokens for QuickBios */
:root {
  /* Unified palette variables matching site design */
  --bg-color: #0b0f17;
  --card-color: #0f1117;
  --muted-color: #8a8f98;
  --text-color: #e6e9ef;
  /* Primary and secondary accents (blue and cyan) */
  --accent-color: #2a6ef2;
  --accent-color-2: #4be1df;
  --border-color: #202430;
}
body {
  margin: 0;
  padding: 0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Inter,sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Simple container class */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}