:root {
  --bg: #fbf8f4;
  --panel: #ffffff;
  --panel-soft: #f6efe8;
  --panel-muted: #eadfd6;
  --text: #2f2925;
  --muted: #6e6259;
  --line: #dfd3c8;
  --ink: #17110f;
  --ink-soft: #231a17;
  --ink-warm: #2a211d;
  --brand: #f46623;
  --brand-strong: #c74616;
  --brand-deep: #8a2f13;
  --brand-soft: #fff0e7;
  --shadow: 0 1px 2px rgba(47, 41, 37, 0.08);
  --extrude-side: #f46623;
  --extrude-bottom: #b63e14;
  --extrude-line: #17110f;
  --iso-depth: 8px;
  --content-max: 1080px;
  --radius: 4px;
  --monkey-arm-angle: 0deg;
  --monkey-scale: 1;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 80;
  background: var(--brand);
}

.app-name {
  padding: 18px 18px 16px;
  border-bottom: 2px solid var(--brand);
  background: var(--ink);
}

.app-name-link {
  display: block;
  color: #ffffff !important;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.app-name-link small {
  display: block;
  margin-top: 7px;
  color: #c7beb5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.sidebar {
  background: var(--ink-soft);
  border-right: 0;
  box-shadow: none;
  padding-top: 4px;
}

.sidebar-nav {
  padding: 10px 0 28px;
  background: var(--ink-soft);
}

.sidebar-nav ul,
.sidebar-nav li,
.sidebar-nav li ul {
  background: transparent !important;
}

.sidebar-nav ul { margin: 0; padding-left: 0; }
.sidebar-nav li { list-style: none; margin: 3px 0; }

.sidebar-nav li > p {
  margin: 18px 0 8px;
  padding: 9px 18px 8px;
  color: #f4eee8;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.sidebar ul li a {
  display: block;
  padding: 9px 18px;
  margin: 0;
  border-radius: 0;
  color: #f4eee8;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.35;
  border: 0;
  border-left: 4px solid transparent;
}

.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: rgba(244, 102, 35, 0.55);
  color: #ffffff;
}

.sidebar ul li.active > a {
  background: #ffffff !important;
  color: var(--ink) !important;
  border-left-color: var(--brand);
  font-weight: 800;
}

.sidebar ul li ul {
  margin-top: 4px;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.sidebar ul li ul a {
  padding-left: 30px;
  font-size: 0.9rem;
  color: #d8cfc6;
}

.search {
  margin: 12px 18px 10px;
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.search input {
  width: 100%;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.94rem;
  outline: none;
  box-shadow: none;
}

.search input:focus {
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(244, 102, 35, 0.20);
}

.search input::placeholder { color: #c7beb5; }
.search .results-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
}
.search .matching-post { border-bottom-color: var(--line); }
.search .matching-post:last-child { border-bottom: 0; }

.app-nav {
  position: fixed;
  top: 4px;
  right: 0;
  left: 300px;
  z-index: 60;
  height: 56px;
  margin: 0;
  padding: 0 34px;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  height: 100%;
  margin: 0;
  padding: 0;
}

.app-nav li { margin: 0; }

.app-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 12px;
  color: #f7eee7 !important;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 0.02em;
  border-bottom: 3px solid transparent;
}

.app-nav a:hover {
  color: #ffffff !important;
  border-bottom-color: var(--brand);
  background: rgba(255, 255, 255, 0.06);
}

.content { padding-top: 60px; }

html.cpl-home-route .sidebar,
html.cpl-home-route .sidebar-toggle,
body.cpl-home-route .sidebar,
body.cpl-home-route .sidebar-toggle {
  display: none;
}

html.cpl-home-route .app-nav,
body.cpl-home-route .app-nav {
  left: 0;
}

html.cpl-home-route .content,
body.cpl-home-route .content {
  left: 0;
}

.markdown-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px 56px 84px;
  color: var(--text);
  background: #fff;
  border-left: 1px solid rgba(216, 199, 184, 0.55);
  border-right: 1px solid rgba(216, 199, 184, 0.55);
}

.markdown-section > *:first-child { margin-top: 0 !important; }

.markdown-section h1,
.markdown-section h2,
.markdown-section h3,
.markdown-section h4 {
  color: var(--text);
  letter-spacing: 0;
  font-weight: 800;
}

.markdown-section h1 {
  font-size: clamp(2.45rem, 5vw, 3.85rem);
  line-height: 1.02;
  margin-bottom: 0.46em;
  text-wrap: balance;
}

.markdown-section h2 {
  margin-top: 2.3em;
  padding-top: 0.5em;
  border-top: 2px solid var(--ink);
  font-size: 1.75rem;
}

.markdown-section p,
.markdown-section li,
.markdown-section blockquote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.markdown-section strong { color: var(--text); }
.markdown-section em { color: var(--muted); }

.change-date {
  display: block;
  margin: -0.25rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.markdown-section a {
  color: var(--brand-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.markdown-section blockquote {
  border-left: 5px solid var(--brand);
  background: var(--panel-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
}

.markdown-section code {
  color: var(--brand-deep);
  background: var(--brand-soft);
  border: 1px solid #f4c7ae;
  border-radius: 4px;
  padding: 0.18em 0.45em;
}

.markdown-section pre {
  position: relative;
  background: #1f1b18 !important;
  border: 1px solid #1f1b18;
  border-radius: var(--radius);
  padding: 18px 16px 16px !important;
  box-shadow: var(--shadow);
  overflow: auto;
}

.markdown-section pre code {
  background: transparent;
  border: 0;
  padding: 0;
  color: #f9f2ec;
  font-size: 0.94rem;
  line-height: 1.58;
}

.markdown-section pre[data-lang]::before {
  content: attr(data-lang);
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px 8px 4px;
  background: rgba(244, 102, 35, 0.16);
  border-left: 1px solid rgba(244, 102, 35, 0.28);
  border-bottom: 1px solid rgba(244, 102, 35, 0.28);
  color: #f2c7b2;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.token.comment { color: #9b8f86; font-style: italic; }
.token.string,
.token.char { color: #d9b889; }
.token.keyword { color: #ff8752; font-weight: 700; }
.token.type { color: #f3d26a; }
.token.number { color: #9fd6ff; }
.token.operator,
.token.punctuation { color: #e6d7ca; }
.token.annotation,
.token.preprocessor { color: #b8e986; }
.token.function { color: #8ecae6; }

.markdown-section table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.markdown-section th,
.markdown-section td {
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  padding: 12px 14px;
}

.markdown-section tr:last-child td { border-bottom: 0 !important; }
.markdown-section th {
  background: var(--ink);
  color: #ffffff;
}

.cpl-home {
  margin: -48px -56px 0;
  color: var(--text);
  background: transparent;
  isolation: isolate;
}

.cpl-home-hero {
  display: block;
  position: relative;
  min-height: calc(100vh - 60px);
  padding: clamp(64px, 9vw, 96px) 56px clamp(48px, 8vw, 72px);
  background: rgba(23, 16, 14, 0.94);
  border-bottom: 0;
}

.cpl-home-hero > div {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.cpl-home-hero > div:not(.cpl-scroll-monkey) {
  position: relative;
  z-index: 2;
}

.cpl-home-hero > .cpl-scroll-monkey {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  max-width: none;
  max-height: none;
  pointer-events: none;
  opacity: 0.28;
  filter: drop-shadow(18px 22px 0 rgba(47, 41, 37, 0.12));
}

.cpl-scroll-monkey-art {
  position: absolute;
  right: clamp(-250px, -11vw, -96px);
  bottom: clamp(-112px, -8vh, -52px);
  width: 689px;
  height: 512px;
  transform: scale(var(--monkey-scale, 1.28));
  transform-origin: right bottom;
}

.cpl-scroll-monkey-base,
.cpl-scroll-monkey-arm {
  position: absolute;
  inset: 0;
  width: 689px;
  height: 512px;
  user-select: none;
  -webkit-user-drag: none;
}

.cpl-scroll-monkey-base {
  z-index: 1;
}

.cpl-scroll-monkey-arm {
  z-index: 2;
  transform-origin: 267px 222px;
  transform: rotate(var(--monkey-arm-angle));
  transition: transform 0.16s steps(2, end);
}

.cpl-home-hero h1,
.hero-title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 6.2vw, 6.4rem);
  line-height: 0.82;
  letter-spacing: 0;
  max-width: min(900px, 78vw);
  font-weight: 800;
}

.hero-title span {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-title span:first-child {
  z-index: 1;
}

.hero-title-mark {
  z-index: 2;
  margin-top: -0.08em;
  margin-bottom: -0.08em;
  padding: 0.08em 0.12em 0.15em;
  background: #42abe0;
  color: #fff;
  line-height: 0.86;
}

.hero-title span:last-child {
  z-index: 3;
}

.cpl-home-hero h1::after,
.hero-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 6px;
  margin-top: 34px;
  background: var(--brand);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-note {
  max-width: 780px;
  margin: 28px 0 28px;
  color: #efe4dc !important;
  font-size: 1.24rem !important;
  line-height: 1.55 !important;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 0;
  text-decoration: none !important;
  font-weight: 800;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: none;
  position: relative;
  z-index: 0;
  isolation: isolate;
  transition: background 0.14s ease, border-color 0.14s ease, transform 0.18s ease;
}

.hero-button::before,
.hero-button::after,
.doc-card::before,
.doc-card::after,
.feature-card::before,
.feature-card::after,
.docsify-pagination-card::before,
.docsify-pagination-card::after,
.cpl-runner-button::before,
.cpl-runner-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 1;
  border: 1px solid var(--extrude-line);
  pointer-events: none;
}

.hero-button::before,
.doc-card::before,
.feature-card::before,
.docsify-pagination-card::before,
.cpl-runner-button::before {
  top: -2px;
  left: calc(100% + 0.5px);
  width: calc(var(--iso-depth) + 1px);
  height: calc(100% + var(--iso-depth) + 1px);
  background: var(--extrude-side);
  border-left: 0;
  clip-path: polygon(
    0 0,
    100% var(--iso-depth),
    100% calc(100% + 0.5px),
    0 calc(100% - var(--iso-depth) - 1px)
  );
  -webkit-mask: linear-gradient(#000 0 0) left / 0 100% no-repeat;
  mask: linear-gradient(#000 0 0) left / 0 100% no-repeat;
  transition: -webkit-mask-size 0.18s ease, mask-size 0.18s ease;
}

.hero-button::after,
.doc-card::after,
.feature-card::after,
.docsify-pagination-card::after,
.cpl-runner-button::after {
  top: calc(100% - 0px);
  left: -2.7px;
  width: calc(100% + var(--iso-depth) + 2.5px);
  height: calc(var(--iso-depth) + 1px);
  background: var(--extrude-bottom);
  border-top: 0;
  clip-path: polygon(
    1px 0,
    calc(100% - var(--iso-depth) - 1px) 0,
    100% 100%,
    calc(var(--iso-depth) + 1px) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) top / 100% 0 no-repeat;
  mask: linear-gradient(#000 0 0) top / 100% 0 no-repeat;
  transition: -webkit-mask-size 0.18s ease, mask-size 0.18s ease;
}

.hero-button:hover,
.doc-card:hover,
.feature-card:hover,
.docsify-pagination-card:hover,
.cpl-runner-button:hover {
  transform: translate(calc(var(--iso-depth) * -1), calc(var(--iso-depth) * -1));
}

.hero-button:hover::before,
.doc-card:hover::before,
.feature-card:hover::before,
.docsify-pagination-card:hover::before,
.cpl-runner-button:hover::before,
.hero-button:hover::after,
.doc-card:hover::after,
.feature-card:hover::after,
.docsify-pagination-card:hover::after,
.cpl-runner-button:hover::after {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-button.primary {
  background: var(--brand);
  color: #111111 !important;
}

.hero-button.primary:hover {
  background: #ff7a3d;
}

.hero-button.secondary {
  background: #fff;
  color: var(--text) !important;
  border-color: #fff;
}

.hero-button.secondary:hover {
  background: var(--panel-soft);
}

.cpl-command {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 560px;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f0b0a;
  color: #f9f2ec;
  font: 0.94rem/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.cpl-command span {
  color: var(--brand);
  font-weight: 800;
}

.cpl-command code {
  padding: 0;
  border: 0;
  background: transparent;
  color: #f9f2ec;
  overflow-wrap: anywhere;
}

.cpl-home-band {
  padding: 52px 56px 58px;
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.cpl-home-band.dark {
  background: #fff;
  color: var(--text);
}

.cpl-home-band h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: inherit;
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
  text-transform: none;
}

.cpl-home-band.dark p,
.cpl-home-band.dark li {
  color: var(--muted);
}

.hero-kicker {
  display: inline-block;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.doc-card {
  display: block;
  padding: 18px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit !important;
  text-decoration: none !important;
  box-shadow: none;
  position: relative;
  z-index: 0;
  isolation: isolate;
  transition: border-color 0.14s ease, transform 0.18s ease;
}

.doc-card:hover {
  border-color: var(--ink);
}

.doc-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.doc-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.feature-card {
  padding: 22px;
  border-left: 4px solid var(--brand);
  background: #fff;
  color: var(--text);
  box-shadow: none;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 0;
  isolation: isolate;
  transition: border-color 0.14s ease, transform 0.18s ease;
}

.feature-card:hover {
  border-top-color: var(--ink);
  border-right-color: var(--ink);
  border-bottom-color: var(--ink);
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.section-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.docsify-pagination-container {
  margin: 42px 0 16px;
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}

.docsify-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.docsify-pagination-card,
.docsify-pagination-current {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
  position: relative;
  z-index: 0;
  isolation: isolate;
  transition: border-color 0.14s ease, transform 0.18s ease;
}

.docsify-pagination-card:hover {
  border-color: var(--ink);
}

.docsify-pagination-card.right { text-align: right; }

.docsify-pagination-label,
.docsify-pagination-index {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.docsify-pagination-link,
.docsify-pagination-title {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.35;
}

.docsify-pagination-link:hover { color: var(--brand-strong); }

.docsify-pagination-current {
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-toggle {
  background: var(--ink);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-toggle span { background: var(--brand); }

.docsify-copy-code-button {
  border-radius: 4px !important;
  border: 1px solid #4a4039 !important;
  background: #2a2521 !important;
  color: #fff !important;
  right: 12px !important;
  top: 12px !important;
}

.benchmark-card {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.benchmark-chart-wrap {
  position: relative;
  width: 100%;
  height: 420px;
}

.benchmark-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.benchmark-chart {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.cpl-runner {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cpl-runner-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cpl-runner-toolbar-left,
.cpl-runner-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cpl-runner-title {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cpl-runner-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.79rem;
  font-weight: 700;
}

.cpl-runner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: #111111;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  z-index: 0;
  isolation: isolate;
  transition: background 0.14s ease, border-color 0.14s ease, opacity 0.15s ease, transform 0.18s ease;
}

.cpl-runner-button:hover {
  background: #ff7a3d;
}
.cpl-runner-button:disabled { opacity: 0.7; cursor: wait; }

.cpl-runner-button.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--ink);
}

.cpl-runner-button.secondary:hover { background: var(--panel-soft); }

.cpl-runner-editor-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-soft);
}

.cpl-runner-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
}

.cpl-runner-tab {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: #fff;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.cpl-runner-editor {
  width: 100%;
  height: 320px;
}

.cpl-runner-output {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #1f1b18;
  color: #f9f2ec;
  min-height: 72px;
  white-space: pre-wrap;
  overflow-x: auto;
  font: 0.92rem/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.cpl-runner-output.is-error {
  border-color: #f4a582;
  background: #fff0e7;
  color: var(--brand-deep);
}

@media (max-width: 900px) {
  .app-nav {
    left: 0;
    height: auto;
    min-height: 52px;
    padding: 0 16px;
  }
  .app-nav ul {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .app-nav a {
    min-height: 52px;
    white-space: nowrap;
  }
  .content { padding-top: 58px; }
  .markdown-section { padding: 34px 22px 72px; }
  .cpl-home { margin: -34px -22px 0; }
  .cpl-home-hero {
    display: block;
    min-height: auto;
    padding: 48px 22px 46px;
  }
  .cpl-home-hero > .cpl-scroll-monkey {
    opacity: 0.26;
    filter: drop-shadow(10px 12px 0 rgba(0, 0, 0, 0.14));
  }
  .cpl-scroll-monkey-art {
    right: -190px;
    bottom: -54px;
    transform-origin: right bottom;
  }
  .cpl-home-hero h1,
  .hero-title {
    max-width: 100%;
    font-size: clamp(3.1rem, 16vw, 5.6rem);
    line-height: 0.82;
  }
  .hero-title span {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-title-mark {
    margin-top: -0.04em;
    margin-bottom: -0.04em;
    padding-right: 0.08em;
    padding-left: 0.08em;
  }
  .hero-note {
    font-size: 1.08rem !important;
    line-height: 1.55 !important;
  }
  .cpl-home-band { padding: 34px 22px 42px; }
  .feature-grid { grid-template-columns: 1fr; }
  .docsify-pagination { grid-template-columns: 1fr; }
  .docsify-pagination-card.right { text-align: left; }
  .docsify-pagination-current { min-width: 0; }
  .benchmark-chart-wrap { height: 320px; }
  .cpl-runner-editor { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-button,
  .doc-card,
  .feature-card,
  .docsify-pagination-card,
  .cpl-runner-button,
  .hero-button::before,
  .hero-button::after,
  .doc-card::before,
  .doc-card::after,
  .feature-card::before,
  .feature-card::after,
  .docsify-pagination-card::before,
  .docsify-pagination-card::after,
  .cpl-runner-button::before,
  .cpl-runner-button::after {
    transition: none;
  }

  .hero-button:hover,
  .doc-card:hover,
  .feature-card:hover,
  .docsify-pagination-card:hover,
  .cpl-runner-button:hover,
  .hero-button:hover::before,
  .doc-card:hover::before,
  .feature-card:hover::before,
  .docsify-pagination-card:hover::before,
  .cpl-runner-button:hover::before,
  .hero-button:hover::after,
  .doc-card:hover::after,
  .feature-card:hover::after,
  .docsify-pagination-card:hover::after,
  .cpl-runner-button:hover::after {
    transform: none;
  }

  .hero-button:hover::before,
  .doc-card:hover::before,
  .feature-card:hover::before,
  .docsify-pagination-card:hover::before,
  .cpl-runner-button:hover::before,
  .hero-button:hover::after,
  .doc-card:hover::after,
  .feature-card:hover::after,
  .docsify-pagination-card:hover::after,
  .cpl-runner-button:hover::after {
    -webkit-mask-size: 0 0;
    mask-size: 0 0;
  }

  .cpl-scroll-monkey-arm {
    transition: none;
  }
}

html,
body {
  min-height: 100vh;
  background: #008080;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 8px 8px;
  background-attachment: fixed;
}

body {
  font-family: "MS Sans Serif", Tahoma, Geneva, sans-serif;
  font-size: 13px;
  overflow-x: hidden;
}

body::before,
.app-nav,
.sidebar,
.sidebar-toggle {
  display: none !important;
}

.content {
  left: 0 !important;
  min-height: calc(100vh - 38px);
  padding: 0 0 38px !important;
  background: transparent;
}

.markdown-section {
  width: min(calc(100vw - 44px), 1080px);
  max-width: none;
  min-height: min(720px, calc(100vh - 84px));
  margin: 22px auto 70px;
  padding: 0 18px 24px;
  color: #000;
  background: #fff;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 1px 1px 0 #000;
  font-family: "MS Sans Serif", Tahoma, Geneva, sans-serif;
  animation: win95Open 150ms steps(3, end);
}

.content::after {
  content: "";
  display: block;
  height: 1px;
  clear: both;
}

.markdown-section > *:not(.win95-window-titlebar) {
  background: transparent;
}

.markdown-section h1,
.markdown-section h2,
.markdown-section h3,
.markdown-section h4,
.markdown-section p,
.markdown-section li,
.markdown-section blockquote {
  font-family: inherit;
}

.markdown-section h1 {
  margin-top: 16px;
  font-size: 28px;
  line-height: 1.14;
}

.markdown-section h2 {
  margin-top: 28px;
  border-top: 2px ridge #c0c0c0;
  font-size: 20px;
}

.markdown-section p,
.markdown-section li,
.markdown-section blockquote {
  font-size: 14px;
  line-height: 1.55;
}

.markdown-section pre,
.markdown-section table,
.benchmark-card,
.cpl-runner,
.docsify-pagination-card,
.docsify-pagination-current {
  border-radius: 0 !important;
  border: 2px solid !important;
  border-color: #808080 #fff #fff #808080 !important;
  box-shadow: none !important;
}

.markdown-section code {
  border-radius: 0;
  border-color: #808080;
  background: #ffffe1;
}

.markdown-section blockquote {
  margin: 14px 0;
  padding: 10px 12px;
  border: 2px solid !important;
  border-color: #808080 #fff #fff #808080 !important;
  border-radius: 0;
  background: #ffffe1;
}

.markdown-section pre {
  margin: 14px 0 18px;
  padding: 22px 16px 16px !important;
  background: #000 !important;
  color: #fff;
  outline: 1px solid #000;
}

.markdown-section pre code {
  color: #fff;
  background: transparent;
  border: 0;
  font: 13px/1.55 "Courier New", Courier, monospace;
}

.markdown-section pre[data-lang]::before {
  top: 2px;
  right: 2px;
  padding: 2px 7px 3px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  color: #000;
  font: 700 11px/1 "MS Sans Serif", Tahoma, sans-serif;
  letter-spacing: 0;
}

.token.comment { color: #00ff00; font-style: normal; }
.token.string,
.token.char { color: #ffff00; }
.token.keyword { color: #ff8040; font-weight: 700; }
.token.type { color: #ffff00; }
.token.number { color: #00ffff; }
.token.operator,
.token.punctuation { color: #fff; }
.token.annotation,
.token.preprocessor { color: #00ff00; }
.token.function { color: #c0c0c0; }

.docsify-copy-code-button {
  top: 28px !important;
  right: 12px !important;
  min-width: 64px !important;
  min-height: 28px !important;
  padding: 0 10px !important;
  border: 2px solid !important;
  border-color: #fff #404040 #404040 #fff !important;
  border-radius: 0 !important;
  background: #c0c0c0 !important;
  color: #000 !important;
  box-shadow: 1px 1px 0 #000 !important;
  font: 13px/1 "MS Sans Serif", Tahoma, sans-serif !important;
}

.docsify-copy-code-button:active {
  border-color: #404040 #fff #fff #404040 !important;
  box-shadow: inset 1px 1px 0 #000 !important;
}

.markdown-section table {
  background: #fff;
  border-collapse: collapse;
  font-size: 13px;
}

.markdown-section th,
.markdown-section td {
  border: 1px solid #808080 !important;
  padding: 6px 8px;
}

.markdown-section th {
  background: #c0c0c0;
  color: #000;
  font-weight: 700;
}

.docsify-pagination-container {
  border-top: 2px ridge #c0c0c0;
}

.docsify-pagination-card,
.docsify-pagination-current {
  background: #c0c0c0;
  color: #000;
}

.docsify-pagination-label,
.docsify-pagination-index {
  color: #404040;
  letter-spacing: 0;
}

.cpl-runner,
.benchmark-card {
  background: #c0c0c0;
  padding: 12px;
}

.cpl-runner-title,
.cpl-runner-badge,
.benchmark-note {
  color: #000;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
}

.cpl-runner-badge,
.cpl-runner-tab {
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  border-radius: 0;
  background: #fff;
  color: #000;
}

.cpl-runner-button {
  min-height: 30px;
  padding: 0 12px;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  border-radius: 0;
  background: #c0c0c0;
  color: #000;
  box-shadow: 1px 1px 0 #000;
  font: 700 13px/1 "MS Sans Serif", Tahoma, sans-serif;
  transition: none;
}

.cpl-runner-button:hover,
.cpl-runner-button.secondary,
.cpl-runner-button.secondary:hover {
  background: #c0c0c0;
  color: #000;
  border-color: #fff #404040 #404040 #fff;
}

.cpl-runner-button:active {
  border-color: #404040 #fff #fff #404040;
  box-shadow: inset 1px 1px 0 #000;
}

.cpl-runner-button::before,
.cpl-runner-button::after {
  display: none;
}

.cpl-runner-editor-shell,
.cpl-runner-tabs,
.cpl-runner-output,
.benchmark-chart-wrap {
  border-radius: 0;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
  box-shadow: none;
}

.cpl-runner-tabs {
  border-width: 0 0 2px;
  background: #c0c0c0;
}

.cpl-runner-output {
  background: #000;
  color: #fff;
  font: 13px/1.55 "Courier New", Courier, monospace;
}

.cpl-runner-output.is-error {
  background: #ffffe1;
  color: #800000;
  border-color: #808080 #fff #fff #808080;
}

.markdown-section a {
  color: #000080;
}

.win95-window-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  margin: 2px -14px 16px;
  padding: 2px 3px 2px 5px;
  background: linear-gradient(90deg, #000080, #1084d0);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.win95-window-titlebar img {
  width: 18px;
  height: 18px;
  image-rendering: pixelated;
}

.win95-window-title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.win95-window-controls {
  display: flex;
  gap: 2px;
}

.win95-window-button,
.win95-start-button,
.win95-task-button {
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  background: #c0c0c0;
  color: #000;
  box-shadow: 1px 1px 0 #000;
  font: 700 12px/1 "MS Sans Serif", Tahoma, sans-serif;
  cursor: pointer;
}

.win95-window-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  background-image: url("icons/win95-titlebar-buttons.png");
  background-repeat: no-repeat;
  background-size: 60px 20px;
  color: #000 !important;
  font-size: 0;
  text-decoration: none !important;
}

.win95-window-button.minimize { background-position: 0 0; }
.win95-window-button.maximize { background-position: -20px 0; }
.win95-window-button.close { background-position: -40px 0; }

.win95-window-button:active,
.win95-start-button.is-open,
.win95-start-button:active,
.win95-task-button.is-active,
.win95-task-button:active {
  border-color: #404040 #fff #fff #404040;
  box-shadow: inset 1px 1px 0 #000;
}

.cpl-home-route .markdown-section {
  width: 100%;
  min-height: calc(100vh - 38px);
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  animation: none;
}

.cpl-home-route .cpl-home {
  min-height: calc(100vh - 38px);
  margin: 0;
}

.cpl-home-route .cpl-home-hero {
  position: fixed;
  inset: 0 0 38px;
  min-height: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.cpl-home-route .cpl-home-hero > div:not(.cpl-scroll-monkey),
.cpl-home-route .cpl-home-band {
  display: none;
}

.cpl-home-route .cpl-home-hero > .cpl-scroll-monkey {
  position: fixed;
  top: 34px;
  right: max(18px, calc((100vw - 1040px) / 2));
  bottom: auto;
  left: auto;
  z-index: 12;
  width: min(834px, calc(100vw - 920px));
  min-width: 278px;
  height: min(650px, calc(100vh - 112px));
  min-height: 236px;
  max-width: none;
  max-height: none;
  padding: 30px 8px 8px;
  opacity: 1;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 1px 1px 0 #000;
  filter: none;
  pointer-events: none;
  overflow: hidden;
  animation: win95Open 150ms steps(3, end);
}

.cpl-home-route .cpl-home-hero > .cpl-scroll-monkey::before {
  content: "monkey.gif";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 22px;
  padding: 4px 52px 0 7px;
  background: linear-gradient(90deg, #000080, #1084d0);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cpl-home-route .cpl-home-hero > .cpl-scroll-monkey::after {
  content: "_  □  x";
  position: absolute;
  top: 4px;
  right: 5px;
  width: 48px;
  height: 16px;
  color: #000;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  font: 700 10px/12px "MS Sans Serif", Tahoma, sans-serif;
  text-align: center;
}

.cpl-home-route .cpl-scroll-monkey.has-window-ui::before,
.cpl-home-route .cpl-scroll-monkey.has-window-ui::after {
  display: none;
}

.cpl-home-route .cpl-scroll-monkey.has-window-ui {
  pointer-events: auto;
}

.win95-monkey-titlebar {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 1px 3px 1px 7px;
  background: linear-gradient(90deg, #000080, #1084d0);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  cursor: move;
  z-index: 5;
}

.win95-monkey-titlebar .win95-window-title {
  pointer-events: none;
}

.cpl-home-route .cpl-scroll-monkey-art {
  top: 30px;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 689px;
  height: 512px;
  transform: translateX(-50%) scale(1.14);
  transform-origin: top center;
  animation: none;
}

.cpl-home-route .cpl-scroll-monkey-arm {
  animation: monkeyGifArm 950ms steps(5, end) infinite alternate;
}

.win95-desktop {
  position: fixed;
  inset: 0 0 38px;
  z-index: 5;
  display: none;
  padding: 18px 18px 84px;
  pointer-events: none;
}

.cpl-home-route .win95-desktop {
  display: block;
  pointer-events: none;
}

.win95-explorer {
  width: min(780px, calc(100vw - 36px));
  min-height: min(560px, calc(100vh - 96px));
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 1px 1px 0 #000;
  animation: win95Open 150ms steps(3, end);
}

.win95-explorer > .win95-window-titlebar {
  margin: 2px 2px 0;
  cursor: move;
}

.win95-doc-window {
  width: min(900px, calc(100vw - 72px));
  height: min(720px, calc(100vh - 92px));
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 1px 1px 0 #000;
  animation: win95Open 150ms steps(3, end);
}

.win95-doc-window > .win95-window-titlebar {
  margin: 2px 2px 0;
  cursor: move;
}

.win95-doc-body {
  height: calc(100% - 30px);
  margin: 5px;
  padding: 16px 18px 28px;
  overflow: auto;
  background: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  color: #000;
  font-family: "MS Sans Serif", Tahoma, Geneva, sans-serif;
}

.win95-doc-body h1 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}

.win95-doc-body h2 {
  margin: 24px 0 10px;
  padding-top: 8px;
  border-top: 2px ridge #c0c0c0;
  font-size: 18px;
}

.win95-doc-body h3 {
  margin: 18px 0 8px;
  font-size: 15px;
}

.win95-doc-body p,
.win95-doc-body li {
  font-size: 14px;
  line-height: 1.55;
}

.win95-doc-body pre {
  padding: 16px;
  overflow: auto;
  background: #000;
  color: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  font: 13px/1.55 "Courier New", Courier, monospace;
}

.win95-doc-body code {
  font-family: "Courier New", Courier, monospace;
}

.win95-doc-body a {
  color: #000080;
}

.win95-doc-body table {
  width: 100%;
  border-collapse: collapse;
}

.win95-doc-body th,
.win95-doc-body td {
  border: 1px solid #808080;
  padding: 6px 8px;
}

.win95-window.is-minimized {
  display: none !important;
}

.win95-window.is-closed {
  display: none !important;
}

.win95-desktop .win95-window {
  position: absolute;
  pointer-events: auto;
}

.win95-window.is-maximized {
  top: 8px !important;
  left: 8px !important;
  right: auto !important;
  bottom: auto !important;
  width: calc(100vw - 16px) !important;
  height: calc(100vh - 54px) !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
}

.win95-window.is-maximized.win95-explorer {
  min-height: 0;
}

.win95-window.is-maximized .win95-icon-grid {
  min-height: calc(100vh - 150px);
}

.win95-window.is-maximized .win95-doc-body {
  height: calc(100% - 30px);
}

.win95-window.is-maximized.cpl-scroll-monkey {
  padding-top: 30px;
}

.win95-window.is-maximized.cpl-scroll-monkey .cpl-scroll-monkey-art {
  left: 50%;
  top: 48px;
  transform: translateX(-50%) scale(1.55);
}

.win95-explorer-toolbar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 5px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #808080;
  color: #000;
}

.win95-address {
  flex: 1;
  min-width: 0;
  padding: 3px 5px;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.win95-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 86px);
  justify-content: start;
  gap: 14px 10px;
  min-height: 430px;
  margin: 5px;
  padding: 18px 14px;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
}

.win95-file-icon {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  min-height: 92px;
  padding: 5px 4px;
  color: #000;
  text-align: center;
  text-decoration: none !important;
  outline: 0;
}

.win95-file-icon:hover,
.win95-file-icon:focus {
  background: #000080;
  color: #fff !important;
}

.win95-file-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  image-rendering: pixelated;
}

.win95-file-icon span {
  max-width: 96px;
  padding: 1px 2px;
  font-size: 12px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.win95-taskbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  padding: 3px 5px;
  border-top: 2px solid #fff;
  background: #c0c0c0;
  box-shadow: inset 0 1px 0 #dfdfdf;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
}

.win95-start-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 9px 0 6px;
  font-size: 13px;
}

.win95-start-button img {
  width: 20px;
  height: 20px;
  image-rendering: pixelated;
}

.win95-task-buttons {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: 4px;
}

.win95-task-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 120px;
  max-width: 240px;
  height: 30px;
  padding: 0 8px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.win95-task-button img {
  width: 18px;
  height: 18px;
  image-rendering: pixelated;
  flex: 0 0 auto;
}

.win95-tray {
  min-width: 86px;
  height: 28px;
  padding: 6px 8px 0;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  color: #000;
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
}

.win95-start-menu {
  position: fixed;
  left: 4px;
  bottom: 38px;
  z-index: 110;
  display: none;
  width: min(360px, calc(100vw - 8px));
  max-height: min(640px, calc(100vh - 48px));
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  box-shadow: 1px 1px 0 #000;
  overflow: hidden;
}

.win95-start-menu.is-open {
  display: grid;
  grid-template-columns: 44px 1fr;
  animation: win95Menu 120ms steps(2, end);
}

.win95-start-rail {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 9px 0;
  background: linear-gradient(#000080, #000);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0;
}

.win95-start-list {
  max-height: inherit;
  overflow: auto;
  padding: 5px;
}

.win95-start-section {
  margin: 0 0 6px;
  padding: 5px 4px 3px;
  border-bottom: 1px solid #808080;
  color: #404040;
  font-weight: 700;
}

.win95-start-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 4px 7px;
  color: #000 !important;
  text-decoration: none !important;
}

.win95-start-link:hover,
.win95-start-link:focus {
  background: #000080;
  color: #fff !important;
}

.win95-start-link img {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
  flex: 0 0 auto;
}

@keyframes win95Open {
  from {
    transform: translateY(28px) scaleY(0.82);
    clip-path: inset(78% 18% 0 18%);
  }
  to {
    transform: translateY(0) scaleY(1);
    clip-path: inset(0);
  }
}

@keyframes win95Menu {
  from { transform: translateY(12px); }
  to { transform: translateY(0); }
}

@keyframes monkeyGifArm {
  from { transform: rotate(-18deg); }
  to { transform: rotate(46deg); }
}

@media (max-width: 720px) {
  .markdown-section {
    width: calc(100vw - 14px);
    min-height: calc(100vh - 52px);
    margin: 7px auto 46px;
    padding: 0 12px 18px;
  }

  .win95-window-titlebar {
    margin-right: -8px;
    margin-left: -8px;
  }

  .win95-desktop {
    padding: 7px 7px 64px;
  }

  .win95-explorer {
    width: min(100%, 520px);
    min-height: calc(100vh - 58px);
  }

  .win95-icon-grid {
    grid-template-columns: repeat(auto-fill, 78px);
    gap: 10px 6px;
    min-height: calc(100vh - 154px);
    padding: 12px 8px;
  }

  .cpl-home-route .cpl-home-hero > .cpl-scroll-monkey {
    top: auto;
    right: 8px;
    bottom: 48px;
    width: 206px;
    height: 182px;
    min-width: 0;
    min-height: 0;
  }

  .cpl-home-route .cpl-scroll-monkey-art {
    top: 28px;
    transform: translateX(-50%) scale(0.28);
  }

  .win95-task-button {
    min-width: 76px;
  }

  .win95-tray {
    display: none;
  }
}
