/* ── Theme variables ─────────────────────────────────────────────────────── */
:root {
  --bg:           #0f0f0f;
  --bg-alt:       #181818;
  --fg:           #e0e0e0;
  --muted:        #606060;
  --accent:       #7eb8f7;
  --accent-dim:   #4a7ab5;
  --code-bg:      #1c1c1c;
  --border:       #2c2c2c;
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-sans:    system-ui, -apple-system, sans-serif;
  --font-mono:    'Fira Code', 'Cascadia Code', 'Courier New', monospace;

  --neg:          #e05555;
  --pos:          #4caf7d;

  --badge-red-bg:    #2a1010;
  --badge-red-fg:    #e05555;
  --badge-amber-bg:  #251d08;
  --badge-amber-fg:  #d4a030;
  --badge-green-bg:  #0d2018;
  --badge-green-fg:  #4caf7d;
}

[data-theme="light"] {
  background: #ffffff;
  --bg:           #ffffff;
  --bg-alt:       #f2f2f2;
  --fg:           #111111;
  --muted:        #888888;
  --accent:       #2563eb;
  --accent-dim:   #1d4ed8;
  --code-bg:      #f0f0f0;
  --border:       #dedede;

  --neg:          #c0392b;
  --pos:          #1a6b3a;

  --badge-red-bg:    #fceae8;
  --badge-red-fg:    #c0392b;
  --badge-amber-bg:  #fdf8e1;
  --badge-amber-fg:  #b8860b;
  --badge-green-bg:  #e8f5ee;
  --badge-green-fg:  #1a6b3a;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  color-scheme: dark;
  font-size: 18px;
  background: var(--bg);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

html[data-theme="light"] {
  color-scheme: light;
}

@media (min-width: 601px) {
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--muted); }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-serif);
  line-height: 1.75;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; padding-bottom: 4rem; }

/* ── Header ──────────────────────────────────────────────────────────────── */
header {
  display: flex;
  align-items: center;
  height: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.site-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  pointer-events: none;
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.site-title > * { pointer-events: auto; }
.site-title:hover { color: var(--accent); }

.nav-icon {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  view-transition-name: nav-icon;
}
.nav-icon svg { width: 1.2rem; height: 1.2rem; }
.nav-icon:hover { color: var(--fg); }
.nav-icon--back svg { transform: rotate(-90deg); }

#theme-toggle {
  all: unset;
  margin-left: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--muted);
  user-select: none;
}
#theme-toggle svg { width: 1.15rem; height: 1.15rem; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
#theme-toggle:hover { color: var(--fg); }

/* ── Post list (index) ───────────────────────────────────────────────────── */
.post-list { list-style: none; }

.post-list li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.post-list li:first-child { border-top: 1px solid var(--border); }

.post-date {
  color: var(--muted);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
}

.post-list a { color: var(--fg); text-decoration: none; }
.post-list a:hover { color: var(--accent); }
.post-list a.post-link-ext::after { content: ' ↗'; font-size: 0.7em; color: var(--muted); vertical-align: super; }

/* ── Post header (MD posts) ──────────────────────────────────────────────── */
.post-header { margin-bottom: 2.5rem; }

.post-header h1 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-family: var(--font-mono);
}
.post-meta span + span::before { content: ' · '; }

/* ── Prose (markdown) ────────────────────────────────────────────────────── */
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-weight: bold;
  margin: 2.2rem 0 0.6rem;
  line-height: 1.3;
}
.prose h1 { font-size: 1.7rem; }
.prose h2 { font-size: 1.3rem; border-bottom: 1px solid var(--border); padding-bottom: 0.25rem; }
.prose h3 { font-size: 1.1rem; }
.prose h4 { font-size: 1rem; color: var(--muted); }

.prose p { margin: 1rem 0; text-align: justify; }

.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--fg); }

.prose strong { font-weight: bold; }
.prose em { font-style: italic; }

.prose ul, .prose ol { margin: 1rem 0 1rem 1.6rem; }
.prose li { margin: 0.3rem 0; }

.prose blockquote {
  border-left: 2px solid var(--border);
  margin: 1.5rem 0;
  padding: 0.4rem 1rem;
  color: var(--fg);
  opacity: 0.7;
  font-style: italic;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.82em;
  background: var(--code-bg);
  border: 1px solid var(--border);
  padding: 0.05em 0.4em;
  border-radius: 3px;
}

.prose pre {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.1rem 1.3rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  line-height: 1.55;
}
.prose pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.83em;
}

.prose img { max-width: 100%; border-radius: 3px; margin: 1rem 0; display: block; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.prose th { background: var(--bg-alt); border: 1px solid var(--border); padding: 0.45rem 0.7rem; text-align: left; font-weight: bold; }
.prose td { border: 1px solid var(--border); padding: 0.45rem 0.7rem; }

/* ── HTML post wrapper ────────────────────────────────────────────────────── */
.post-content { margin-top: 0.5rem; }

.post-content h1 { font-size: 2rem; font-weight: bold; line-height: 1.2; margin-bottom: 0.4rem; }
.post-content h2 { font-size: 1.25rem; font-weight: bold; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.post-content p { margin-bottom: 1.1rem; text-align: justify; }
.post-content a { color: var(--accent); }
.post-content a:hover { color: var(--fg); }
.post-content blockquote {
  border-left: 2px solid var(--border);
  margin: 2rem 0;
  padding: 0.25rem 1.2rem;
  font-style: italic;
  color: var(--fg);
  opacity: 0.7;
}
.post-content hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* Tables in html posts */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin: 1.5rem 0;
}
.post-content table thead th {
  text-align: left;
  border-bottom: 2px solid var(--fg);
  padding: 0.4rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-content table tbody td {
  padding: 0.4rem 0.7rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.post-content table tbody tr:last-child td { border-bottom: none; }

/* ── Semantic ─────────────────────────────────────────────────────────────── */
.neg { color: var(--neg); }
.pos { color: var(--pos); }

.sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ── Stat boxes ───────────────────────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.stat-box {
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  font-family: var(--font-sans);
  background: var(--bg-alt);
}
.stat-number { font-size: 1.8rem; font-weight: 700; display: block; line-height: 1.1; }
.stat-label  { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; display: block; }

/* ── Badges ───────────────────────────────────────────────────────────────── */
.badge {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}
.badge-red   { background: var(--badge-red-bg);   color: var(--badge-red-fg); }
.badge-amber { background: var(--badge-amber-bg); color: var(--badge-amber-fg); }
.badge-green { background: var(--badge-green-bg); color: var(--badge-green-fg); }

/* ── Card grid ───────────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.5rem 0; }
.card {
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  background: var(--bg-alt);
}
.card strong { display: block; margin-bottom: 0.25rem; font-size: 0.85rem; color: var(--fg); }
.card span   { color: var(--muted); line-height: 1.5; display: block; }

/* ── Figure / caption ────────────────────────────────────────────────────── */
.fig { margin: 1.8rem 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.fig img, .fig > a { display: block; width: 100%; }
.fig-caption {
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.fig-caption strong { color: var(--accent); }
.fig-caption a { color: var(--accent); }

/* ── Callout boxes ───────────────────────────────────────────────────────── */
.callout {
  border-left: 3px solid var(--accent);
  background: rgba(126,184,247,.05);
  padding: 0.8rem 1.1rem;
  border-radius: 0 5px 5px 0;
  margin: 1.25rem 0;
}
.callout-warn { border-left-color: var(--badge-amber-fg); background: rgba(212,160,48,.05); }
.callout-good { border-left-color: var(--pos);            background: rgba(76,175,125,.05);  }
.callout-bad  { border-left-color: var(--neg);            background: rgba(224,85,85,.05);   }
.callout p:last-child { margin-bottom: 0; }
.callout-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}
.callout-warn .callout-label { color: var(--badge-amber-fg); }
.callout-good .callout-label { color: var(--pos); }
.callout-bad  .callout-label { color: var(--neg); }

/* ── Section label ───────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}

/* ── Table wrap (overflow) ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 1.25rem 0; border-radius: 6px; border: 1px solid var(--border); }
.table-wrap table { margin: 0; }

/* ── Chart / footnote ────────────────────────────────────────────────────── */
.chart-wrap { position: relative; width: 100%; margin: 1.5rem 0; }

.footnote {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  line-height: 1.6;
}
.footnote hr { display: none; }

/* ── Page transitions (View Transitions API) ─────────────────────────────── */
@view-transition { navigation: auto; }

@keyframes fade-in      { from { opacity: 0; } }
@keyframes fade-out     { to   { opacity: 0; } }
@keyframes icon-out-fwd { to   { opacity: 0; rotate: -90deg; } }
@keyframes icon-in-fwd  { from { opacity: 0; rotate:  90deg; } }
@keyframes icon-out-bck { to   { opacity: 0; rotate:  90deg; } }
@keyframes icon-in-bck  { from { opacity: 0; rotate: -90deg; } }

::view-transition { background: #0f0f0f; }
[data-theme="light"]::view-transition { background: #ffffff; }

::view-transition-old(root) { animation: 220ms ease-in-out both fade-out; }
::view-transition-new(root) { animation: 220ms ease-in-out both fade-in;  }

[data-page="post"]::view-transition-old(nav-icon)   { animation: 180ms ease-in  both icon-out-fwd; }
[data-page="post"]::view-transition-new(nav-icon)   { animation: 220ms ease-out both icon-in-fwd;  }
[data-page="index"]::view-transition-old(nav-icon)  { animation: 180ms ease-in  both icon-out-bck; }
[data-page="index"]::view-transition-new(nav-icon)  { animation: 220ms ease-out both icon-in-bck;  }

/* ── Theme transition ─────────────────────────────────────────────────────── */
/* Disabled during view transitions so background-color doesn't animate from transparent → bg */
html:not(:active-view-transition),
html:not(:active-view-transition) *,
html:not(:active-view-transition) *::before,
html:not(:active-view-transition) *::after {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  padding: 1.5rem 0 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--fg); }
.footer-sep { color: var(--border); }
.footer-slogan { margin-left: auto; font-style: italic; all: unset; margin-left: auto; font-style: italic; font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); cursor: pointer; }
.footer-slogan:hover { color: var(--fg); }

/* ── Slogan modal ─────────────────────────────────────────────────────────── */
.slogan-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(3px);
}
.slogan-modal-overlay.open { display: flex; }
.slogan-modal {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 580px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: modal-in 0.18s ease-out;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(10px); } }
.slogan-modal-close {
  all: unset;
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  z-index: 1;
}
.slogan-modal-close:hover { color: var(--fg); }
.slogan-modal-body {
  padding: 2.2rem 2.2rem 1.6rem;
  text-align: center;
}
.slogan-modal-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: -0.5rem;
  display: block;
}
.slogan-modal-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg);
  font-style: italic;
  margin: 0 0 1rem;
}
.slogan-modal-attr {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.6;
}
.slogan-modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-top: 1px solid var(--border);
}
.slogan-modal-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  body { padding: 1rem 1rem 3rem; font-size: 16px; }
  .post-list li { flex-direction: column; gap: 0.1rem; }
  .stat-row { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ── syntax highlighting ── */
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #49483e }
.highlight { background: #272822; color: #f8f8f2 }
.highlight .c { color: #959077 } /* Comment */
.highlight .err { color: #ed007e; background-color: #1e0010 } /* Error */
.highlight .esc { color: #f8f8f2 } /* Escape */
.highlight .g { color: #f8f8f2 } /* Generic */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #ff4689 } /* Operator */
.highlight .x { color: #f8f8f2 } /* Other */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #959077 } /* Comment.Hashbang */
.highlight .cm { color: #959077 } /* Comment.Multiline */
.highlight .cp { color: #959077 } /* Comment.Preproc */
.highlight .cpf { color: #959077 } /* Comment.PreprocFile */
.highlight .c1 { color: #959077 } /* Comment.Single */
.highlight .cs { color: #959077 } /* Comment.Special */
.highlight .gd { color: #ff4689 } /* Generic.Deleted */
.highlight .ge { color: #f8f8f2; font-style: italic } /* Generic.Emph */
.highlight .ges { color: #f8f8f2; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #f8f8f2 } /* Generic.Error */
.highlight .gh { color: #f8f8f2 } /* Generic.Heading */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .go { color: #66d9ef } /* Generic.Output */
.highlight .gp { color: #ff4689; font-weight: bold } /* Generic.Prompt */
.highlight .gs { color: #f8f8f2; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #959077 } /* Generic.Subheading */
.highlight .gt { color: #f8f8f2 } /* Generic.Traceback */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #ff4689 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
.highlight .nx { color: #a6e22e } /* Name.Other */
.highlight .py { color: #f8f8f2 } /* Name.Property */
.highlight .nt { color: #ff4689 } /* Name.Tag */
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
.highlight .ow { color: #ff4689 } /* Operator.Word */
.highlight .pm { color: #f8f8f2 } /* Punctuation.Marker */
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
.highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
.highlight .sa { color: #e6db74 } /* Literal.String.Affix */
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
.highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #a6e22e } /* Name.Function.Magic */
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
.highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */

[data-theme="light"] pre { line-height: 125%; }
td.linenos .normal { color: #666666; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #666666; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
[data-theme="light"] .highlight .hll { background-color: #ffffcc }
[data-theme="light"] .highlight { background: #f0f0f0; }
[data-theme="light"] .highlight .c { color: #60a0b0; font-style: italic } /* Comment */
[data-theme="light"] .highlight .err { border: 1px solid #FF0000 } /* Error */
[data-theme="light"] .highlight .k { color: #007020; font-weight: bold } /* Keyword */
[data-theme="light"] .highlight .o { color: #666666 } /* Operator */
[data-theme="light"] .highlight .ch { color: #60a0b0; font-style: italic } /* Comment.Hashbang */
[data-theme="light"] .highlight .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
[data-theme="light"] .highlight .cp { color: #007020 } /* Comment.Preproc */
[data-theme="light"] .highlight .cpf { color: #60a0b0; font-style: italic } /* Comment.PreprocFile */
[data-theme="light"] .highlight .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
[data-theme="light"] .highlight .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
[data-theme="light"] .highlight .gd { color: #A00000 } /* Generic.Deleted */
[data-theme="light"] .highlight .ge { font-style: italic } /* Generic.Emph */
[data-theme="light"] .highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
[data-theme="light"] .highlight .gr { color: #FF0000 } /* Generic.Error */
[data-theme="light"] .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
[data-theme="light"] .highlight .gi { color: #00A000 } /* Generic.Inserted */
[data-theme="light"] .highlight .go { color: #888888 } /* Generic.Output */
[data-theme="light"] .highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
[data-theme="light"] .highlight .gs { font-weight: bold } /* Generic.Strong */
[data-theme="light"] .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
[data-theme="light"] .highlight .gt { color: #0044DD } /* Generic.Traceback */
[data-theme="light"] .highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
[data-theme="light"] .highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
[data-theme="light"] .highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
[data-theme="light"] .highlight .kp { color: #007020 } /* Keyword.Pseudo */
[data-theme="light"] .highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
[data-theme="light"] .highlight .kt { color: #902000 } /* Keyword.Type */
[data-theme="light"] .highlight .m { color: #40a070 } /* Literal.Number */
[data-theme="light"] .highlight .s { color: #4070a0 } /* Literal.String */
[data-theme="light"] .highlight .na { color: #4070a0 } /* Name.Attribute */
[data-theme="light"] .highlight .nb { color: #007020 } /* Name.Builtin */
[data-theme="light"] .highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
[data-theme="light"] .highlight .no { color: #60add5 } /* Name.Constant */
[data-theme="light"] .highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
[data-theme="light"] .highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */
[data-theme="light"] .highlight .ne { color: #007020 } /* Name.Exception */
[data-theme="light"] .highlight .nf { color: #06287e } /* Name.Function */
[data-theme="light"] .highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
[data-theme="light"] .highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
[data-theme="light"] .highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
[data-theme="light"] .highlight .nv { color: #bb60d5 } /* Name.Variable */
[data-theme="light"] .highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
[data-theme="light"] .highlight .w { color: #bbbbbb } /* Text.Whitespace */
[data-theme="light"] .highlight .mb { color: #40a070 } /* Literal.Number.Bin */
[data-theme="light"] .highlight .mf { color: #40a070 } /* Literal.Number.Float */
[data-theme="light"] .highlight .mh { color: #40a070 } /* Literal.Number.Hex */
[data-theme="light"] .highlight .mi { color: #40a070 } /* Literal.Number.Integer */
[data-theme="light"] .highlight .mo { color: #40a070 } /* Literal.Number.Oct */
[data-theme="light"] .highlight .sa { color: #4070a0 } /* Literal.String.Affix */
[data-theme="light"] .highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
[data-theme="light"] .highlight .sc { color: #4070a0 } /* Literal.String.Char */
[data-theme="light"] .highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */
[data-theme="light"] .highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
[data-theme="light"] .highlight .s2 { color: #4070a0 } /* Literal.String.Double */
[data-theme="light"] .highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
[data-theme="light"] .highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */
[data-theme="light"] .highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
[data-theme="light"] .highlight .sx { color: #c65d09 } /* Literal.String.Other */
[data-theme="light"] .highlight .sr { color: #235388 } /* Literal.String.Regex */
[data-theme="light"] .highlight .s1 { color: #4070a0 } /* Literal.String.Single */
[data-theme="light"] .highlight .ss { color: #517918 } /* Literal.String.Symbol */
[data-theme="light"] .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
[data-theme="light"] .highlight .fm { color: #06287e } /* Name.Function.Magic */
[data-theme="light"] .highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
[data-theme="light"] .highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
[data-theme="light"] .highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
[data-theme="light"] .highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */
[data-theme="light"] .highlight .il { color: #40a070 } /* Literal.Number.Integer.Long */
