@font-face {
  font-family: Pixel;
  src: url("/fonts/press-start-2p-cyr.woff2?v=2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Pixel;
  src: url("/fonts/press-start-2p.woff2?v=2") format("woff2");
  unicode-range: U+0020-007E;
  font-display: swap;
}
:root {
  --bar: #c3c3c3;
  --hi: #fff;
  --mid: #808080;
  --lo: #000;
  --bg: #140808;
  --band: #6e1414;
  --green: #00fd42;
  --green-lo: #006618;
  --green-hi: #c8ffd4;
  --ink: #111;
  --muted: #f0d4d4;
  --title: #7a1010;
  --dark: #0a0404;
  --foot: #080303;
  --wrap: 68rem;
  --pad-x: 1.25rem;
  --pad-y: 3rem;
}
@media (min-width: 800px) {
  :root {
    --pad-x: 2.5rem;
    --pad-y: 3.5rem;
  }
}
html {
  -webkit-font-smoothing: none;
  font-synthesis: none;
}
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
  padding: 8px 12px;
  background: #c3c3c3;
  color: #111;
  font-family: Pixel, monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  box-shadow: 0 2px 0 #000;
}
.top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
a.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-family: Pixel, monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}
.raise {
  background: #c3c3c3;
  color: #111;
  box-shadow:
    inset -2px -2px 0 #000,
    inset 2px 2px 0 #fff,
    inset -3px -3px 0 #808080;
}
.raise:active {
  box-shadow:
    inset 2px 2px 0 #000,
    inset -2px -2px 0 #fff,
    inset 3px 3px 0 #808080;
}
.green {
  background: var(--green);
  color: #000;
  box-shadow:
    inset -2px -2px 0 var(--green-lo),
    inset 2px 2px 0 var(--green-hi);
}
a.btn.green, button.btn.green { color: #000; }
.green:active {
  box-shadow:
    inset 2px 2px 0 var(--green-lo),
    inset -2px -2px 0 var(--green-hi);
}
a.btn:focus-visible, button.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.px { font-family: Pixel, monospace; font-weight: 400; }
.mark { color: var(--green); }
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.2;
}
.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  flex: none;
}
footer.site {
  padding: var(--pad-y) var(--pad-x) 5rem;
  background: var(--foot);
  color: #c4a0a0;
  font-family: Pixel, monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}
footer.site .wrap { max-width: var(--wrap); margin-inline: auto; }
footer.site p { margin: 0 0 0.6rem; color: inherit; }
footer.site a { color: #fff; }
footer.site a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
footer.site .docs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
}
footer.site .docs a { text-underline-offset: 3px; }
