:root {
  --bg: #1e1f26;
  --text: #ffffff;
  --text-muted: #a1a1a1;
  --accent: #ff595e;
  --highlight: #8ac926;
}

/* =============================
   Reset & Base Styles
============================= */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  padding: 20px;
}
a {
  color: var(--highlight);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

