[data-md-color-scheme="slate"] {
  --md-hue: 230;
  --md-default-fg-color: hsla(var(--md-hue), 12%, 88%, 1);
  --md-default-fg-color--light: hsla(var(--md-hue), 10%, 75%, 0.74);
  --md-default-fg-color--lighter: hsla(var(--md-hue), 8%, 62%, 0.54);
  --md-default-bg-color: #0c0e13;
  --md-default-bg-color--light: #13161c;
  --md-default-bg-color--lighter: #1c2130;
  --md-default-bg-color--lightest: #242a3d;

  --md-code-bg-color: #090b10;
  --md-code-fg-color: #e2e5eb;
  --md-code-hl-color: #1f6feb33;

  --md-code-hl-number-color: #79c0ff;
  --md-code-hl-special-color: #c9d1d9;
  --md-code-hl-function-color: #d2a8ff;
  --md-code-hl-constant-color: #79c0ff;
  --md-code-hl-keyword-color: #ff7b72;
  --md-code-hl-string-color: #a5d6ff;
  --md-code-hl-name-color: #e2e5eb;
  --md-code-hl-operator-color: #ff7b72;
  --md-code-hl-punctuation-color: #8b92a5;
  --md-code-hl-comment-color: #8b949e;
  --md-code-hl-generic-color: #c9d1d9;
  --md-code-hl-variable-color: #ffa657;

  --md-typeset-color: var(--md-default-fg-color);
  --md-typeset-a-color: #00bfa5;
  --md-typeset-mark-color: #00bfa533;
  --md-typeset-kbd-color: #13161c;
  --md-typeset-kbd-accent-color: #1c2130;
  --md-typeset-kbd-border-color: #30363d;
  --md-typeset-table-color: #1e2330;
  --md-typeset-table-color--light: #181c26;

  --md-admonition-bg-color: #13161c;
  --md-admonition-border-color: #1e2330;

  --md-footer-bg-color: #0c0e13;
  --md-footer-bg-color--dark: #080a0e;

  --md-shadow-z1: 0 1px 3px rgba(0, 0, 0, 0.3);
  --md-shadow-z2: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.md-header {
  background-color: rgba(12, 14, 19, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 #1e2330 !important;
  transition: background-color 0.2s ease;
}

.md-header[data-md-state="shadow"] {
  background-color: rgba(12, 14, 19, 0.95) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.md-nav--primary .md-nav__title {
  display: none;
}

.md-typeset pre > code {
  border: 1px solid #1e2330;
  border-radius: 8px;
  font-size: 0.78em;
  line-height: 1.6;
  background-color: var(--md-code-bg-color);
}

.md-typeset code {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.85em;
  line-height: 1.5;
}

.md-typeset code:not(pre code) {
  background-color: rgba(255, 183, 77, 0.08);
  color: #ffb74d;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  border: 1px solid rgba(255, 183, 77, 0.12);
  font-size: 0.82em;
  word-break: break-word;
}

.md-typeset pre {
  margin: 1.2em 0;
}

.md-typeset .highlighttable .linenos {
  border-right: 1px solid #1e2330;
  background-color: #080a0f;
  border-radius: 8px 0 0 8px;
}

.md-typeset .highlighttable .linenos pre {
  border: none;
  border-radius: 0;
  background: transparent;
  color: #484f58;
  font-size: 0.72em;
}

.md-typeset .highlighttable .codehilitetable .linenos {
  border-right: 1px solid #1e2330;
  background-color: #080a0f;
}

.md-typeset .highlighttable .codehilitetable td.code {
  padding: 0;
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #e8ebf2;
}

.md-typeset h1 {
  font-size: 2em;
  border-bottom: 1px solid #1e2330;
  padding-bottom: 0.3em;
  margin-bottom: 0.8em;
}

.md-typeset h2 {
  border-bottom: 1px solid #181c26;
  padding-bottom: 0.2em;
}

.md-typeset hr {
  border-bottom: 1px solid #1e2330;
  margin: 2em 0;
}

.md-typeset blockquote {
  border-left: 3px solid #00bfa5;
  padding: 0.5em 1em;
  margin: 1em 0;
  background-color: rgba(0, 191, 165, 0.04);
  border-radius: 0 4px 4px 0;
  color: var(--md-default-fg-color--light);
}

.md-typeset table:not([class]) {
  border: 1px solid #1e2330;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.85em;
}

.md-typeset table:not([class]) th {
  background-color: #13161c;
  border-bottom: 1px solid #1e2330;
  font-weight: 600;
  color: #e2e5eb;
  padding: 0.75em 1em;
}

.md-typeset table:not([class]) td {
  border-bottom: 1px solid #181c26;
  padding: 0.65em 1em;
}

.md-typeset table:not([class]) tr:last-child td {
  border-bottom: none;
}

.md-typeset table:not([class]) tr:hover {
  background-color: rgba(0, 191, 165, 0.02);
}

.md-footer {
  display: none !important;
}

.md-copyright {
  display: none !important;
}

.md-main__inner {
  padding-top: 0;
}

.md-typeset a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.md-typeset a:hover {
  border-bottom-color: var(--md-typeset-a-color);
}

.md-typeset .md-annotation {
  background-color: rgba(0, 191, 165, 0.1);
}

.md-typeset .task-list-control [type="checkbox"]:checked + .task-list-indicator::before {
  background-color: #00bfa5;
}

.md-typeset .admonition,
.md-typeset details {
  border: 1px solid #1e2330;
  border-radius: 8px;
  background-color: #13161c;
  box-shadow: none;
}

.md-typeset .admonition > .admonition-title,
.md-typeset details > summary {
  background-color: rgba(0, 191, 165, 0.06);
  border-bottom: 1px solid #1e2330;
  font-weight: 600;
}

.md-typeset details > summary::before {
  color: #00bfa5;
}

.md-typeset .MathJax {
  outline: none;
}

.md-typeset div.arithmatex {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5em 0;
}

.md-typeset .arithmatex {
  scrollbar-width: thin;
}

.md-typeset .arithmatex::-webkit-scrollbar {
  height: 4px;
}

.md-typeset .arithmatex::-webkit-scrollbar-thumb {
  background: #1e2330;
  border-radius: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0c0e13;
}

::-webkit-scrollbar-thumb {
  background: #1e2330;
  border-radius: 4px;
  border: 2px solid #0c0e13;
}

::-webkit-scrollbar-thumb:hover {
  background: #30363d;
}

::selection {
  background-color: rgba(0, 191, 165, 0.2);
}

.md-typeset table th code,
.md-typeset table td code {
  font-size: 0.9em;
}

.md-typeset img[src$=".svg"] {
  display: block;
  margin: 2em auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media print {
  .md-header {
    background-color: #0c0e13 !important;
    backdrop-filter: none;
  }
}
