:root {
  --red: #ff1f1f;
  --red-dim: #8a1212;
  --black: #000;
  --white: #f2f2f2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--black);
  color: var(--red);
  font-family: "JetBrains Mono", "Consolas", "Menlo", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.7;
}

::selection { background: var(--red); color: var(--black); }

.term {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

nav {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover, a.active {
  background: var(--red);
  color: var(--black);
}

.banner {
  font-family: inherit;
  font-size: min(14px, 1.8vw);
  line-height: 1;
  color: var(--white);
  overflow: hidden;
  margin-bottom: 20px;
}

section { margin-top: 40px; }

section h2 {
  color: var(--white);
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

section p + p { margin-top: 4px; }

.stats {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 40px;
  row-gap: 4px;
}

.stats dt { color: var(--red-dim); }

.socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.end { margin-top: 40px; }

button {
  font: inherit;
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
}

button:hover {
  background: var(--red);
  color: var(--black);
}

.cursor { animation: blink 1s steps(1) infinite; }

@keyframes blink {
  50% { opacity: 0; }
}

footer {
  margin-top: 48px;
  color: #6b6b6b;
  text-align: center;
}

@media (max-width: 520px) {
  body { font-size: 13px; }
}
