/* ==========================================================================
   临床统计程序员的 Python 进阶路线图 —— 文档站样式
   纯静态、无外部依赖（不引 CDN 字体 / 图标 / 脚本）
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --bg-code: #f7f9fb;
  --bg-elev: #ffffff;
  --bd: #e4e8ed;
  --bd-soft: #eef1f5;
  --tx: #1f2933;
  --tx-2: #55636f;
  --tx-3: #8a97a3;
  --ac: #0b63a8;
  --ac-hover: #084b80;
  --ac-soft: #eaf3fb;
  --ac-2: #0d7d70;
  --mark: #fff3bf;
  --ok: #157347;
  --warn: #9a6700;
  --shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 1px 3px rgba(16, 24, 40, .06);
  --r: 8px;
  --sidebar-w: 292px;
  --toc-w: 218px;
  --header-h: 56px;
}

[data-theme="dark"] {
  --bg: #0e1116;
  --bg-soft: #151a21;
  --bg-code: #131922;
  --bg-elev: #161c24;
  --bd: #262d38;
  --bd-soft: #1d242d;
  --tx: #e6edf3;
  --tx-2: #9aa7b4;
  --tx-3: #6e7b89;
  --ac: #58a9e8;
  --ac-hover: #7cbbee;
  --ac-soft: #14263a;
  --ac-2: #4fd1bd;
  --mark: #4a3d10;
  --ok: #4ac48a;
  --warn: #d5b155;
  --shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--tx);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
               "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--ac); text-decoration: none; }
a:hover { color: var(--ac-hover); text-decoration: underline; text-underline-offset: 2px; }

/* ---------------------------------------------------------------- 顶栏 */
.topbar {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center; gap: 12px;
  padding: 0 18px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--bd);
}
.brand {
  display: flex; align-items: center; gap: 9px;
  font-weight: 650; font-size: 15px; color: var(--tx);
  white-space: nowrap; flex-shrink: 0;
}
.brand:hover { color: var(--ac); text-decoration: none; }
.brand .logo {
  width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ac), var(--ac-2));
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: -.5px;
  display: grid; place-items: center;
}
.brand .brand-sub { color: var(--tx-3); font-weight: 400; font-size: 13px; }

.topbar .spacer { flex: 1; }

.icon-btn {
  width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--bd); border-radius: var(--r);
  background: var(--bg-elev); color: var(--tx-2);
  cursor: pointer; font-size: 15px; line-height: 1;
  transition: border-color .15s, color .15s, background .15s;
}
.icon-btn:hover { border-color: var(--ac); color: var(--ac); }
.menu-btn { display: none; }

/* -------------------------------------------------------------- 搜索 */
.search-wrap { position: relative; width: min(360px, 42vw); }
.search-wrap input {
  width: 100%; height: 34px;
  padding: 0 30px 0 32px;
  border: 1px solid var(--bd); border-radius: var(--r);
  background: var(--bg-soft); color: var(--tx);
  font-size: 13.5px; font-family: inherit; outline: none;
  transition: border-color .15s, background .15s;
}
.search-wrap input:focus { border-color: var(--ac); background: var(--bg-elev); }
.search-wrap input::placeholder { color: var(--tx-3); }
.search-wrap .s-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--tx-3); font-size: 13px; pointer-events: none;
}
.search-wrap kbd {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 10.5px; font-family: inherit; color: var(--tx-3);
  border: 1px solid var(--bd); border-radius: 4px; padding: 1px 5px;
  background: var(--bg-elev); pointer-events: none;
}
.search-wrap input:focus ~ kbd { display: none; }

.search-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  max-height: min(62vh, 520px); overflow-y: auto;
  background: var(--bg-elev); border: 1px solid var(--bd);
  border-radius: 10px; box-shadow: 0 12px 32px rgba(16, 24, 40, .16);
  padding: 5px; display: none; z-index: 70;
}
.search-results.show { display: block; }
.sr-item {
  display: block; padding: 7px 10px; border-radius: 6px;
  color: var(--tx); font-size: 13.5px; cursor: pointer;
}
.sr-item:hover, .sr-item.active { background: var(--ac-soft); text-decoration: none; }
.sr-item .sr-group { display: block; font-size: 11px; color: var(--tx-3); margin-bottom: 1px; }
.sr-item .sr-title { font-weight: 550; }
.sr-item .sr-head { color: var(--tx-2); font-size: 12.5px; }
.sr-item mark { background: var(--mark); color: inherit; border-radius: 2px; padding: 0 1px; }
.sr-empty { padding: 14px; text-align: center; color: var(--tx-3); font-size: 13px; }

/* ---------------------------------------------------------------- 布局 */
.layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  align-items: start;
  max-width: 1600px; margin: 0 auto;
}
@media (min-width: 1560px) {
  .layout { grid-template-columns: var(--sidebar-w) minmax(0, 1fr) var(--toc-w); }
}

/* ------------------------------------------------------------ 侧边栏 */
.sidebar {
  position: sticky; top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto; overscroll-behavior: contain;
  padding: 20px 10px 60px 18px;
  border-right: 1px solid var(--bd);
  font-size: 14px;
}
.sidebar::-webkit-scrollbar, .toc::-webkit-scrollbar { width: 8px; }
.sidebar::-webkit-scrollbar-thumb, .toc::-webkit-scrollbar-thumb {
  background: var(--bd); border-radius: 4px;
}
.nav-group { margin-bottom: 20px; }
.nav-group > .ng-title {
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--tx-3);
  padding: 0 8px 6px;
}
.nav-link {
  display: block; padding: 5px 9px; margin-bottom: 1px;
  border-radius: 6px; color: var(--tx-2);
  line-height: 1.5; border-left: 2px solid transparent;
}
.nav-link:hover { background: var(--bg-soft); color: var(--tx); text-decoration: none; }
.nav-link.active {
  background: var(--ac-soft); color: var(--ac);
  font-weight: 600; border-left-color: var(--ac);
}
.nav-link .nl-num {
  display: inline-block; min-width: 22px;
  font-variant-numeric: tabular-nums;
  color: var(--tx-3); font-size: 12.5px;
}
.nav-link.active .nl-num { color: var(--ac); }
.nav-link.hide { display: none; }

/* ------------------------------------------------------------ 内容区 */
.content {
  min-width: 0;
  padding: 34px 40px 80px;
  max-width: 920px;
}
.page-head { margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--bd); }
.page-head .crumb { font-size: 12.5px; color: var(--tx-3); margin-bottom: 6px; }
.page-head .crumb a { color: var(--tx-3); }
.page-head .crumb a:hover { color: var(--ac); }
.page-head h1 {
  margin: 0; font-size: 27px; line-height: 1.35; font-weight: 700;
  letter-spacing: -.2px;
}
.page-actions {
  margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--tx-3);
}
.page-actions a {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--bd); border-radius: 20px;
  padding: 2px 11px; color: var(--tx-2);
}
.page-actions a:hover { border-color: var(--ac); color: var(--ac); text-decoration: none; }

/* --------------------------------------------------------- Markdown */
.markdown > *:first-child { margin-top: 0; }
.markdown h1 {
  font-size: 25px; margin: 4px 0 18px; font-weight: 700; line-height: 1.4;
}
.markdown h2 {
  font-size: 21px; font-weight: 700; line-height: 1.42;
  margin: 42px 0 14px; padding-top: 18px;
  border-top: 1px solid var(--bd-soft);
}
.markdown h3 { font-size: 17.5px; font-weight: 650; margin: 30px 0 10px; }
.markdown h4 { font-size: 15.5px; font-weight: 650; margin: 22px 0 8px; color: var(--tx-2); }
.markdown h2:hover .anchor, .markdown h3:hover .anchor { opacity: .45; }
.anchor {
  margin-left: 7px; font-size: .72em; color: var(--tx-3);
  opacity: 0; transition: opacity .15s; font-weight: 400;
}
.anchor:hover { text-decoration: none; }

.markdown p { margin: 13px 0; }
.markdown ul, .markdown ol { margin: 13px 0; padding-left: 26px; }
.markdown li { margin: 5px 0; }
.markdown li > ul, .markdown li > ol { margin: 5px 0; }
.markdown hr { border: 0; border-top: 1px solid var(--bd); margin: 34px 0; }

.markdown strong { font-weight: 650; }
.markdown em { font-style: italic; color: var(--tx-2); }

/* 行内代码 */
.markdown :not(pre) > code {
  font-family: "Cascadia Code", Consolas, "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: .875em;
  background: var(--bg-code);
  border: 1px solid var(--bd-soft);
  border-radius: 4px;
  padding: .12em .38em;
  color: #b3315e;
  word-break: break-word;
}
[data-theme="dark"] .markdown :not(pre) > code { color: #f19cbb; }

/* 代码块 */
.codeblock {
  position: relative;
  margin: 18px 0;
  border: 1px solid var(--bd);
  border-radius: 10px;
  background: var(--bg-code);
  overflow: hidden;
}
.cb-head {
  display: flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 10px 0 12px;
  border-bottom: 1px solid var(--bd-soft);
  background: color-mix(in srgb, var(--bg-code) 60%, var(--bg));
  font-size: 11.5px; color: var(--tx-3);
  user-select: none;
}
.cb-lang { font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.cb-copy {
  margin-left: auto; cursor: pointer;
  border: 1px solid var(--bd); background: var(--bg-elev);
  color: var(--tx-3); border-radius: 5px;
  font-size: 11px; font-family: inherit; padding: 2px 9px;
  transition: color .15s, border-color .15s;
}
.cb-copy:hover { color: var(--ac); border-color: var(--ac); }
.cb-copy.done { color: var(--ok); border-color: var(--ok); }
.codeblock pre {
  margin: 0; padding: 14px 16px;
  overflow-x: auto; overscroll-behavior-x: contain;
  font-size: 13.2px; line-height: 1.68;
  font-family: "Cascadia Code", Consolas, "JetBrains Mono", "SF Mono", Menlo, monospace;
  tab-size: 4;
}
.codeblock pre code { background: none; border: 0; padding: 0; font-size: inherit; color: var(--tx); }
.codeblock.plain .cb-lang { color: var(--tx-3); }

/* 表格 */
.table-wrap {
  margin: 18px 0; overflow-x: auto; overscroll-behavior-x: contain;
  border: 1px solid var(--bd); border-radius: 10px;
}
.markdown table { border-collapse: collapse; width: 100%; font-size: 14px; }
.markdown table th, .markdown table td {
  border-bottom: 1px solid var(--bd-soft);
  border-right: 1px solid var(--bd-soft);
  padding: 8px 13px; text-align: left; vertical-align: top;
}
.markdown table th:last-child, .markdown table td:last-child { border-right: 0; }
.markdown table tr:last-child td { border-bottom: 0; }
.markdown table th {
  background: var(--bg-soft); font-weight: 650; white-space: nowrap;
  color: var(--tx);
}
.markdown table tbody tr:hover { background: color-mix(in srgb, var(--ac-soft) 45%, transparent); }
.markdown table code { white-space: nowrap; }

/* 引用块 */
.markdown blockquote {
  margin: 18px 0; padding: 12px 18px;
  border-left: 3px solid var(--ac);
  background: var(--ac-soft);
  border-radius: 0 8px 8px 0;
  color: var(--tx-2);
}
.markdown blockquote p { margin: 6px 0; }
.markdown blockquote > *:first-child { margin-top: 0; }
.markdown blockquote > *:last-child { margin-bottom: 0; }

/* 任务列表 / details */
.markdown details {
  margin: 16px 0; padding: 12px 16px;
  border: 1px solid var(--bd); border-radius: 10px; background: var(--bg-soft);
}
.markdown summary { cursor: pointer; font-weight: 600; }
.markdown details[open] summary { margin-bottom: 10px; }

/* 图片 */
.markdown img { max-width: 100%; height: auto; vertical-align: middle; }
.markdown p > img[src*="shields.io"] { margin-right: 4px; }

/* --------------------------------------------------------- 上下页 */
.pager {
  display: flex; gap: 12px; justify-content: space-between;
  margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--bd);
}
.pager a {
  flex: 1 1 0; min-width: 0;
  border: 1px solid var(--bd); border-radius: 10px;
  padding: 11px 15px; color: var(--tx);
}
.pager a:hover { border-color: var(--ac); text-decoration: none; background: var(--bg-soft); }
.pager .pg-label { display: block; font-size: 11.5px; color: var(--tx-3); margin-bottom: 2px; }
.pager .pg-title {
  font-size: 14px; font-weight: 550;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block;
}
.pager .pg-next { text-align: right; }
.pager .pg-next .pg-title { color: var(--ac); }

/* ------------------------------------------------------------ 右目录 */
.toc {
  position: sticky; top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto; overscroll-behavior: contain;
  padding: 34px 20px 60px 4px;
  font-size: 13px;
  display: none;
}
@media (min-width: 1560px) { .toc { display: block; } }
.toc-title {
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--tx-3); margin-bottom: 10px;
}
.toc a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 3px 0 3px 10px;
  border-left: 2px solid var(--bd);
  color: var(--tx-3); line-height: 1.45;
  overflow: hidden;
}
.toc a:hover { color: var(--tx); text-decoration: none; }
.toc a.lv3 { padding-left: 22px; font-size: 12.3px; }
.toc a.active { color: var(--ac); border-left-color: var(--ac); font-weight: 600; }

/* --------------------------------------------------------- 首页 hero */
.hero {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--bd);
  margin-bottom: 28px;
}
.hero h1 {
  margin: 0 0 12px; font-size: 34px; line-height: 1.3;
  font-weight: 750; letter-spacing: -.5px;
}
.hero .lede { font-size: 16.5px; color: var(--tx-2); margin: 0 0 18px; max-width: 720px; }
.hero .hero-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 4px; }
.hero .hero-badges img { height: 20px; }
.hero .hero-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 1px; background: var(--bd); border: 1px solid var(--bd);
  border-radius: 10px; overflow: hidden; margin: 24px 0 26px;
}
.hero .hs { background: var(--bg-elev); padding: 13px 15px; }
.hero .hs b { display: block; font-size: 21px; font-weight: 700; color: var(--ac); line-height: 1.3; }
.hero .hs span { font-size: 12.5px; color: var(--tx-3); }

.card-grid {
  display: grid; gap: 12px; margin: 22px 0 8px;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
}
.card {
  display: block; padding: 14px 16px;
  border: 1px solid var(--bd); border-radius: 10px;
  background: var(--bg-elev); color: var(--tx);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.card:hover {
  border-color: var(--ac); text-decoration: none;
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.card .c-num {
  font-size: 11.5px; font-weight: 700; color: var(--ac-2);
  letter-spacing: .06em; margin-bottom: 3px;
}
.card .c-title { font-size: 14.5px; font-weight: 600; line-height: 1.45; margin-bottom: 3px; }
.card .c-desc { font-size: 12.5px; color: var(--tx-3); line-height: 1.55; }

/* ---------------------------------------------------------- 页脚 */
.site-footer {
  border-top: 1px solid var(--bd);
  padding: 22px 40px 40px;
  font-size: 12.5px; color: var(--tx-3);
  max-width: 920px;
}
.site-footer a { color: var(--tx-2); }
.site-footer p { margin: 5px 0; }

/* ----------------------------------------------------- 回到顶部/遮罩 */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--bd); background: var(--bg-elev); color: var(--tx-2);
  cursor: pointer; font-size: 15px; display: none; place-items: center;
  box-shadow: var(--shadow);
}
.to-top.show { display: grid; }
.to-top:hover { color: var(--ac); border-color: var(--ac); }

.overlay {
  position: fixed; inset: 0; background: rgba(16, 24, 40, .42);
  z-index: 55; display: none;
}
.overlay.show { display: block; }

/* --------------------------------------------------------- 移动端 */
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; top: var(--header-h); left: 0; z-index: 58;
    width: min(320px, 86vw);
    background: var(--bg-elev);
    transform: translateX(-102%);
    transition: transform .22s ease;
    padding-top: 16px;
  }
  .sidebar.open { transform: none; box-shadow: 0 12px 40px rgba(16, 24, 40, .22); }
  .menu-btn { display: grid; }
  .content { padding: 24px 20px 70px; }
  .hero { padding: 0 0 12px; margin-bottom: 22px; }
  .hero h1 { font-size: 25px; }
  .site-footer { padding: 20px 20px 34px; }
  .brand .brand-sub { display: none; }
  .search-wrap { width: auto; flex: 1; }
  .search-wrap kbd { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .page-head h1 { font-size: 22px; }
  .markdown h2 { font-size: 19px; }
  .codeblock pre { font-size: 12.4px; padding: 12px 13px; }
  .pager { flex-direction: column; }
}

/* --------------------------------------------------------- 打印 */
@media print {
  .topbar, .sidebar, .toc, .to-top, .pager, .cb-copy, .page-actions { display: none !important; }
  .layout { grid-template-columns: 1fr; }
  .content { max-width: none; padding: 0; }
  .codeblock { break-inside: avoid; }
  a { color: inherit; }
}

/* ======================================================== 代码高亮 */
/* 浅色（pygments "friendly" 调校） */
.hl .hll { background-color: #ffffcc }
.hl .c, .hl .ch, .hl .cm, .hl .c1, .hl .cs { color: #7d8799; font-style: italic }
.hl .cp { color: #6f42c1 }
.hl .cpf { color: #6f42c1 }
.hl .k, .hl .kc, .hl .kd, .hl .kn, .hl .kp, .hl .kr { color: #0b5fa5; font-weight: 600 }
.hl .kt { color: #0b7d70 }
.hl .s, .hl .sa, .hl .sb, .hl .sc, .hl .dl, .hl .sd, .hl .s2, .hl .se, .hl .sh,
.hl .si, .hl .sx, .hl .sr, .hl .s1, .hl .ss { color: #0f7b3f }
.hl .m, .hl .mb, .hl .mf, .hl .mh, .hl .mi, .hl .mo, .hl .il { color: #b3541e }
.hl .na { color: #0d7d70 }
.hl .nb, .hl .bp { color: #8250df }
.hl .nc { color: #953800; font-weight: 600 }
.hl .no { color: #0550ae }
.hl .nd { color: #8250df }
.hl .ni { color: #24292f }
.hl .ne { color: #953800 }
.hl .nf, .hl .fm { color: #8250df }
.hl .nn { color: #953800 }
.hl .nt { color: #116329 }
.hl .nv, .hl .vc, .hl .vg, .hl .vi, .hl .vm { color: #0550ae }
.hl .o, .hl .ow { color: #0550ae }
.hl .w { color: #8a97a3 }
.hl .p, .hl .pi { color: #55636f }
.hl .gd { color: #82071e; background-color: #ffebe9 }
.hl .gi { color: #116329; background-color: #dafbe1 }
.hl .gh, .hl .gu { color: #0550ae; font-weight: 600 }
.hl .gs { font-weight: 600 }
.hl .ge { font-style: italic }
.hl .err { color: #82071e }
.hl .lineno { color: #8a97a3; user-select: none }

/* 深色（pygments "monokai" 调校） */
[data-theme="dark"] .hl .c, [data-theme="dark"] .hl .ch, [data-theme="dark"] .hl .cm,
[data-theme="dark"] .hl .c1, [data-theme="dark"] .hl .cs { color: #8b98a5; font-style: italic }
[data-theme="dark"] .hl .cp, [data-theme="dark"] .hl .cpf { color: #9d8bff }
[data-theme="dark"] .hl .k, [data-theme="dark"] .hl .kc, [data-theme="dark"] .hl .kd,
[data-theme="dark"] .hl .kn, [data-theme="dark"] .hl .kp, [data-theme="dark"] .hl .kr { color: #7cb8f5; font-weight: 600 }
[data-theme="dark"] .hl .kt { color: #4fd1bd }
[data-theme="dark"] .hl .s, [data-theme="dark"] .hl .sa, [data-theme="dark"] .hl .sb,
[data-theme="dark"] .hl .sc, [data-theme="dark"] .hl .dl, [data-theme="dark"] .hl .sd,
[data-theme="dark"] .hl .s2, [data-theme="dark"] .hl .se, [data-theme="dark"] .hl .sh,
[data-theme="dark"] .hl .si, [data-theme="dark"] .hl .sx, [data-theme="dark"] .hl .sr,
[data-theme="dark"] .hl .s1, [data-theme="dark"] .hl .ss { color: #7fd88f }
[data-theme="dark"] .hl .m, [data-theme="dark"] .hl .mb, [data-theme="dark"] .hl .mf,
[data-theme="dark"] .hl .mh, [data-theme="dark"] .hl .mi, [data-theme="dark"] .hl .mo,
[data-theme="dark"] .hl .il { color: #f0a35e }
[data-theme="dark"] .hl .na { color: #4fd1bd }
[data-theme="dark"] .hl .nb, [data-theme="dark"] .hl .bp { color: #c4a7ff }
[data-theme="dark"] .hl .nc { color: #f0a35e; font-weight: 600 }
[data-theme="dark"] .hl .no { color: #7cb8f5 }
[data-theme="dark"] .hl .nd { color: #c4a7ff }
[data-theme="dark"] .hl .ni { color: #e6edf3 }
[data-theme="dark"] .hl .ne { color: #f0a35e }
[data-theme="dark"] .hl .nf, [data-theme="dark"] .hl .fm { color: #c4a7ff }
[data-theme="dark"] .hl .nn { color: #f0a35e }
[data-theme="dark"] .hl .nt { color: #7fd88f }
[data-theme="dark"] .hl .nv, [data-theme="dark"] .hl .vc, [data-theme="dark"] .hl .vg,
[data-theme="dark"] .hl .vi, [data-theme="dark"] .hl .vm { color: #7cb8f5 }
[data-theme="dark"] .hl .o, [data-theme="dark"] .hl .ow { color: #7cb8f5 }
[data-theme="dark"] .hl .w { color: #6e7b89 }
[data-theme="dark"] .hl .p, [data-theme="dark"] .hl .pi { color: #9aa7b4 }
[data-theme="dark"] .hl .gd { color: #ff9aa2; background-color: #3a1d22 }
[data-theme="dark"] .hl .gi { color: #7fd88f; background-color: #16301f }
[data-theme="dark"] .hl .gh, [data-theme="dark"] .hl .gu { color: #7cb8f5; font-weight: 600 }
[data-theme="dark"] .hl .ge { font-style: italic }
[data-theme="dark"] .hl .err { color: #ff9aa2 }
