:root { color-scheme: dark; }
body {
  margin: 0;
  min-height: 100vh;
  background: #0a0e0c;
  color: #7ee787;
  font: 14px/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  padding: 3rem 1.5rem;
}
main { max-width: 720px; margin: 0 auto; }
h1 {
  font-size: 14px;
  font-weight: 400;
  color: #6e7681;
  margin: 0 0 1.5rem;
}
h1::before { content: "# "; }
.cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: #7ee787;
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
ul { list-style: none; margin: 0; padding: 0; }
li { padding: 0.35rem 0; border-bottom: 1px solid #161b1e; }
li:last-child { border-bottom: none; }
li::before { content: "$ "; color: #6e7681; }
a { color: #7ee787; text-decoration: none; }
a:hover { color: #56d364; text-decoration: underline; }
.desc { color: #6e7681; margin-left: 0.5rem; }
