/* Minimal shared base styles for static pages */

:root {
  --brand-green: #00ff41;
  --brand-red: #ff2300;
  --bg: #000;
  --text: #e6e6e6;
}

* {
  box-sizing: border-box;
}

html, body {
  background-color: var(--bg);
}

body {
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--brand-green);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

