/* site13 stylesheet. Pulled in with include_str! and served from memory. */

:root {
  --bg: #0a0b0e;
  --bg-2: #0e1014;
  --panel: #13161c;
  --panel-2: #171b22;
  --line: #232833;
  --line-soft: #1c2029;
  --text: #e9ecf3;
  --text-2: #b6bdcb;
  --muted: #7c8496;
  --accent: #ffb02e;
  --accent-dim: #c98416;
  --accent-soft: rgba(255, 176, 46, 0.12);
  --good: #46d68f;
  --good-soft: rgba(70, 214, 143, 0.12);
  --hot: #ff5f6d;
  --hot-soft: rgba(255, 95, 109, 0.12);
  --blue: #5aa9ff;
  --radius: 10px;
  --radius-sm: 6px;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(900px 420px at 78% -140px, rgba(255, 176, 46, 0.07), transparent 65%),
    radial-gradient(700px 380px at 5% -160px, rgba(90, 169, 255, 0.05), transparent 60%);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.015em;
  font-weight: 700;
}

p {
  margin: 0 0 14px;
}

ul, ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

li {
  margin-bottom: 7px;
}

.wrap {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- ticker strip ---------- */

.strip {
  background: #06070a;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--muted);
}

.strip .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 34px;
  overflow: hidden;
  white-space: nowrap;
}

.strip b {
  color: var(--text-2);
  font-weight: 600;
}

.strip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--good);
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px var(--good-soft);
}

.strip .sep {
  color: #2b3140;
}

/* ---------- header ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 11, 14, 0.94);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}

.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--text);
}

.brand .tile {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--accent), #ff8a3d);
  color: #16120a;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.04em;
}

.brand .name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand .tld {
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}

.nav a {
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
}

.nav a:hover {
  background: var(--panel-2);
  color: var(--text);
}

.nav a.on {
  color: var(--accent);
  background: var(--accent-soft);
}

/* ---------- search ---------- */

.searchbox {
  position: relative;
  margin-left: auto;
  flex: 1 1 340px;
  max-width: 430px;
}

.searchbox input {
  width: 100%;
  height: 40px;
  padding: 0 14px 0 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}

.searchbox input::placeholder {
  color: #5d6474;
}

.searchbox input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.searchbox .glyph {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 1.8px solid var(--muted);
  border-radius: 50%;
  pointer-events: none;
}

.searchbox .glyph::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1.8px;
  background: var(--muted);
  transform: rotate(45deg);
}

.hero-search {
  max-width: 100%;
  margin: 0;
}

.hero-search input {
  height: 54px;
  font-size: 16px;
  padding-left: 46px;
  background: var(--panel-2);
}

.hero-search .glyph {
  left: 18px;
  width: 14px;
  height: 14px;
}

.results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  z-index: 60;
  max-height: 70vh;
  overflow-y: auto;
}

.results.open {
  display: block;
}

.results .head {
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}

.results a.hit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.results a.hit:last-child {
  border-bottom: 0;
}

.results a.hit:hover {
  background: var(--panel-2);
  color: var(--text);
}

.results .hit .meta {
  min-width: 0;
  flex: 1;
}

.results .hit .t {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.results .hit .s {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.results .hit .n {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--accent);
  flex-shrink: 0;
}

.results .empty {
  padding: 16px 14px;
  color: var(--muted);
  font-size: 13.5px;
}

/* ---------- hero ---------- */

.hero {
  padding: 52px 0 34px;
  border-bottom: 1px solid var(--line-soft);
}

.hero h1 {
  font-size: 40px;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .lede {
  color: var(--text-2);
  font-size: 16px;
  max-width: 660px;
  margin-bottom: 26px;
}

.hero .searchwrap {
  max-width: 640px;
  position: relative;
}

.hero .hint {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
}

.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 30px;
}

.statbar div {
  background: var(--panel);
  padding: 15px 17px;
}

.statbar .v {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.statbar .k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- chips ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-size: 13px;
  color: var(--text-2);
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chip span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

/* ---------- layout ---------- */

main {
  padding: 34px 0 60px;
}

.cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 19px;
}

.section-head .more {
  font-size: 13px;
  color: var(--muted);
}

.section-head .more:hover {
  color: var(--accent);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 9px;
}

/* ---------- listing ---------- */

.list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.row:last-child {
  border-bottom: 0;
}

.row:hover {
  background: var(--panel-2);
}

.row .rank {
  font-family: var(--mono);
  font-size: 13px;
  color: #4d5464;
  text-align: center;
}

.row .title {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.row .title .ver {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
}

.row .sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.row .sub b {
  color: var(--text-2);
  font-weight: 500;
}

.row .right {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 16px;
}

.row .dl {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--accent);
}

.row .dl small {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg-2);
}

.tag.ok {
  color: var(--good);
  border-color: rgba(70, 214, 143, 0.3);
  background: var(--good-soft);
}

.tag.hot {
  color: var(--hot);
  border-color: rgba(255, 95, 109, 0.3);
  background: var(--hot-soft);
}

.tag.am {
  color: var(--accent);
  border-color: rgba(255, 176, 46, 0.3);
  background: var(--accent-soft);
}

/* ---------- panels ---------- */

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px;
  margin-bottom: 18px;
}

.panel h3 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
  font-weight: 600;
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 13.5px;
}

.kv:last-child {
  border-bottom: 0;
}

.kv .k {
  color: var(--muted);
}

.kv .v {
  color: var(--text);
  text-align: right;
  font-weight: 500;
}

.kv .v.num {
  font-family: var(--mono);
}

.minilist a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
}

.minilist a:last-child {
  border-bottom: 0;
}

.minilist .when {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
}

.notice {
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  padding: 13px 15px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13.5px;
  color: var(--text-2);
}

.notice b {
  color: var(--text);
}

/* ---------- detail page ---------- */

.crumbs {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.crumbs a {
  color: var(--text-2);
}

.titlebar h1 {
  font-size: 31px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.titlebar .badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.titlebar .lede {
  color: var(--text-2);
  font-size: 15.5px;
  max-width: 720px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0 30px;
}

.specs div {
  background: var(--panel);
  padding: 13px 15px;
}

.specs .k {
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.specs .v {
  font-size: 14px;
  font-weight: 600;
}

.specs .v.num {
  font-family: var(--mono);
  color: var(--accent);
}

article h2 {
  font-size: 20px;
  margin: 34px 0 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

article h2:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

article p {
  color: var(--text-2);
}

article li {
  color: var(--text-2);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 9px 0 9px 40px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-2);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

table.req {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}

table.req td {
  padding: 11px 15px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-2);
}

table.req tr:last-child td {
  border-bottom: 0;
}

table.req td:first-child {
  width: 34%;
  color: var(--muted);
  background: var(--bg-2);
  white-space: nowrap;
}

details.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  margin-bottom: 9px;
  overflow: hidden;
}

details.faq summary {
  padding: 13px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

details.faq summary::-webkit-details-marker {
  display: none;
}

details.faq summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--mono);
}

details.faq[open] summary::after {
  content: "-";
}

details.faq .body {
  padding: 0 16px 14px;
  color: var(--text-2);
  font-size: 14px;
}

.mirrors .kv .v {
  color: var(--good);
  font-size: 12.5px;
}

.feedback {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px 18px;
  margin-bottom: 10px;
}

.feedback .who {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.feedback .who b {
  font-size: 13.5px;
}

.feedback .who span {
  font-size: 11.5px;
  color: var(--muted);
}

.feedback p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
}

/* ---------- download panel ---------- */

.dlpanel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  padding: 20px;
  position: sticky;
  top: 88px;
  margin-bottom: 18px;
}

.dlpanel .price {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--good);
  font-weight: 600;
  margin-bottom: 4px;
}

.dlpanel .size {
  font-family: var(--mono);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.btn-dl {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 15px 18px;
  background: linear-gradient(150deg, var(--accent), #ff8f2e);
  color: #17130a;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 10px 26px rgba(255, 150, 46, 0.16);
}

.btn-dl:hover {
  filter: brightness(1.07);
}

.btn-dl:active {
  transform: translateY(1px);
}

.btn-dl small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 2px;
}

.dlpanel .under {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.dlpanel .checks {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.dlpanel .checks div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
  padding: 4px 0;
}

.dlpanel .checks i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px var(--good-soft);
  flex-shrink: 0;
}

/* ---------- forms ---------- */

form.pane {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14.5px;
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field .note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}

.btn {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  color: var(--text);
  padding: 11px 20px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #17130a;
}

.btn:hover {
  filter: brightness(1.08);
}

.ok-box {
  border: 1px solid rgba(70, 214, 143, 0.35);
  background: var(--good-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 22px;
}

.ok-box b {
  color: var(--good);
}

/* ---------- prose pages ---------- */

.prose {
  max-width: 780px;
}

.prose h1 {
  font-size: 30px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.prose .lede {
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 26px;
}

.prose h2 {
  font-size: 19px;
  margin: 30px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.prose p,
.prose li {
  color: var(--text-2);
}

.toc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px 18px;
  margin-bottom: 26px;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
}

/* ---------- browse ---------- */

.filterbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.filterbar .count {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
  font-family: var(--mono);
}

/* ---------- 404 ---------- */

.oops {
  text-align: center;
  padding: 70px 0 40px;
}

.oops .code {
  font-family: var(--mono);
  font-size: 76px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
}

.oops h1 {
  font-size: 26px;
  margin: 14px 0 10px;
}

.oops p {
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 22px;
}

.oops .searchwrap {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  background: #07080b;
  padding: 40px 0 30px;
  font-size: 13.5px;
}

footer .grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

footer h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

footer a {
  display: block;
  padding: 4px 0;
  color: var(--text-2);
  font-size: 13.5px;
}

footer p {
  color: var(--muted);
  font-size: 13px;
  max-width: 330px;
}

footer .base {
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12.5px;
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .cols {
    grid-template-columns: minmax(0, 1fr);
  }

  .dlpanel {
    position: static;
  }

  footer .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .masthead .wrap {
    height: auto;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 12px;
  }

  .searchbox {
    order: 3;
    flex-basis: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .nav {
    overflow-x: auto;
    margin-left: auto;
  }

  .hero h1 {
    font-size: 30px;
  }

  .statbar {
    grid-template-columns: 1fr 1fr;
  }

  .row {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .row .right {
    grid-column: 2;
    justify-content: flex-start;
  }

  footer .grid {
    grid-template-columns: 1fr;
  }
}
