:root {
  --console-primary: #00ff41;
  --console-text: #00ff41;
  --console-muted: #008f26;
}

* {
  box-sizing: border-box;
}

body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  background: #000000;
  color: var(--console-text);
  min-height: 100vh;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

pre {
  max-width: 1100px;
  margin: 1.5rem auto 2rem;
  padding: 0 1.25rem;
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}

a {
  color: var(--console-primary);
  text-decoration: underline;
}

a:visited {
  color: var(--console-muted);
}

@media (max-width: 768px) {
  pre {
    font-size: 0.8rem;
    padding: 0 0.9rem;
    margin: 1rem auto 1.5rem;
  }
}

footer {
  max-width: 1100px;
  margin: 0.5rem auto 0;
  padding: 0 1.25rem 2rem;
  font-size: 0.75rem;
  color: var(--console-muted);
  text-align: right;
}
