/***************/
/* MEYER RESET */
/***************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root,
[data-theme="light"] {
  --bg: #fafaf9;
  --bg-alt: #f8fafc;
  --bg-header: rgba(250, 250, 249, 0.9);
  --text: #1e293b;
  --text-muted: #64748b;
  --heading: #0f172a;
  --border: #e2e8f0;
  --accent: #1d4ed8;
  --accent-2: #2563eb;
  --accent-bg: rgba(29, 78, 216, 0.07);
  --accent-border: rgba(29, 78, 216, 0.2);
  --link: #1d4ed8;
  --link-hover: #1e40af;
  --code-bg: #f1f5f9;
  --toggle-bg: #f1f5f9;
  --toggle-border: #cbd5e1;
}

[data-theme="dark"] {
  --bg: #0c0c0c;
  --bg-alt: #141414;
  --bg-header: rgba(12, 12, 12, 0.9);
  --text: #e6edf3;
  --text-muted: #8b949e;
  --heading: #f0f6fc;
  --border: #2a2a2a;
  --accent: #ffffff;
  --accent-2: #e2e8f0;
  --accent-bg: rgba(255, 255, 255, 0.06);
  --accent-border: rgba(255, 255, 255, 0.18);
  --link: #ffffff;
  --link-hover: #cbd5e1;
  --code-bg: #141414;
  --toggle-bg: #1c1c1c;
  --toggle-border: #2a2a2a;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
}

.container {
  margin: 0 auto;
  max-width: 860px;
  padding: 0 20px;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.2em 0 0.45em;
  padding: 0;
}
@media screen and (max-width: 640px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
  }
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 17px;
}

h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

p {
  margin: 14px 0;
}

a {
  color: var(--link);
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:active {
  color: var(--link-hover);
}

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

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ol ul, ul ol, ul ul, ol ol {
  margin: 0;
}

ul ul, ol ul {
  list-style-type: circle;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.gmnoprint img {
  max-width: none;
}

.date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

::-moz-selection {
  background: var(--accent-bg);
}

::selection {
  background: var(--accent-bg);
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13px;
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 5px;
  color: var(--text);
}

pre {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin: 20px 0;
}
pre code {
  background: none;
  border: none;
  padding: 0;
  line-height: 1.6;
}

.wrapper-masthead {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.masthead {
  display: flex;
  align-items: center;
  padding: 13px 0;
  gap: 13px;
}
@media screen and (max-width: 640px) {
  .masthead {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 14px 0;
  }
}

.site-avatar {
  flex-shrink: 0;
}
.site-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 640px) {
  .site-avatar {
    margin: 0 auto;
  }
}

.site-info {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 640px) {
  .site-info {
    flex: none;
    width: 100%;
  }
}

.site-name {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.site-name a {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-name a:hover {
  opacity: 0.82;
}

.site-description {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 640px) {
  nav {
    margin-left: 0;
  }
}
nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 11px;
  border-radius: 7px;
  letter-spacing: 0.01em;
}
nav a:hover {
  color: var(--text);
  background: var(--bg-alt);
}
@media screen and (max-width: 640px) {
  nav a {
    padding: 6px 9px;
  }
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--toggle-border);
  border-radius: 8px;
  background: var(--toggle-bg);
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  outline: none;
  margin-left: 6px;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}
.theme-toggle .icon-sun {
  display: none;
}
.theme-toggle .icon-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}
[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 0 2px 2px 0;
  z-index: 9999;
  transition: transform 0.08s linear;
  pointer-events: none;
}

.hero-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
@media screen and (max-width: 640px) {
  .hero-profile {
    padding: 48px 0 36px;
  }
}

.hero-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 20px;
}

.hero-name {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.hero-tagline {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.hero-nav {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 640px) {
  .hero-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hero-nav-link {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--accent-border);
  color: var(--accent);
  background: var(--accent-bg);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hero-nav-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
}
[data-theme="dark"] .hero-nav-link:hover {
  color: #000;
  -webkit-text-fill-color: #000;
}

.hero-nav-link--contact {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-border);
}

.recent-posts {
  margin-bottom: 56px;
}
.recent-posts h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin: 0;
}
.recent-posts .post-list {
  margin-top: 0;
}
.recent-posts-footer {
  text-align: right;
  margin-top: 16px;
}
.recent-posts-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.recent-posts-all-link:hover {
  color: var(--accent);
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.post-list-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.post-list-item:first-child {
  border-top: 1px solid var(--border);
}
.post-list-link {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  min-width: 0;
}
.post-list-link:hover {
  color: var(--accent);
}
.post-list-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.post blockquote {
  margin: 1.5em 0;
  border-left: 3px solid var(--accent);
  padding: 0.5em 1.2em;
  color: var(--text-muted);
  font-size: 18px;
  font-style: italic;
  background: var(--accent-bg);
  border-radius: 0 6px 6px 0;
}

.empty-posts {
  padding: 40px 0;
}
.empty-posts-headline {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 6px;
}
.empty-posts-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.single-post {
  padding: 52px 0;
}
.single-post > h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.single-post > .date {
  display: block;
  margin-bottom: 12px;
}
.single-post > .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 36px;
}
.single-post > .post-tags .post-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  line-height: 1.6;
}
.single-post .entry {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.single-post .entry h2, .single-post .entry h3, .single-post .entry h4 {
  margin-top: 2em;
}
.single-post .entry p + p {
  margin-top: 1em;
}
.single-post .entry img {
  border-radius: 6px;
  margin: 12px 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.footer-copy {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--text);
}

.page {
  padding: 52px 0;
}
.page > h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page .entry > p:first-child {
  font-size: 16.5px;
  line-height: 1.75;
}
.page .entry h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin: 44px 0 18px;
}
.page .entry h3 {
  font-size: 17px;
  margin-top: 1.4em;
}
.page .entry ul {
  padding-left: 20px;
}
.page .entry ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.page .entry hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}
.page .entry strong {
  color: var(--heading);
}
.page .entry p {
  font-size: 15px;
  line-height: 1.7;
}
.page .entry img {
  border-radius: 6px;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(29, 78, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(29, 78, 216, 0);
  }
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ht-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ht {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 260px;
  margin: 40px 0 52px;
}
.ht::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
  z-index: 0;
}

.ht-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: ht-rise 0.45s ease forwards;
  animation-delay: calc(var(--i) * 0.1s + 0.05s);
}

.ht-top {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12px;
  width: 100%;
}

.ht-bottom {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12px;
  width: 100%;
}

.ht-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
  position: relative;
  flex-shrink: 0;
}
.ht-active .ht-dot {
  animation: pulse-ring 2s ease-out infinite;
}

.ht-label {
  text-align: center;
  padding: 0 6px;
}

.ht-logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 22px;
  max-width: 54px;
  object-fit: contain;
  margin: 4px auto 5px;
  opacity: 0.88;
}

.ht-range {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.ht-org {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.35;
}

.ht-role {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 3px;
  line-height: 1.3;
}

@media screen and (max-width: 640px) {
  .ht {
    flex-direction: column;
    height: auto;
    border-left: 1px solid var(--border);
    padding-left: 18px;
    margin-left: 4px;
  }
  .ht::before {
    display: none;
  }

  .ht-node {
    flex: none;
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 22px;
    position: relative;
  }

  .ht-dot {
    position: absolute;
    left: -22px;
    top: 2px;
  }

  .ht-top,
  .ht-bottom {
    flex: none;
    padding: 0;
    display: none;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .ht-node.ht-up .ht-top {
    display: flex;
  }

  .ht-node.ht-down .ht-bottom {
    display: flex;
  }

  .ht-label {
    text-align: left;
    padding: 0;
  }

  .ht-logo {
    margin: 4px 0 5px;
  }
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 8px 0 0;
}
@media screen and (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.project-card:hover {
  background: var(--bg-alt);
  border-color: var(--accent-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  color: var(--text);
}
.project-card-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
}
.project-card-logo svg {
  width: 26px;
  height: 26px;
  color: var(--text-muted);
}
.project-card-body {
  flex: 1;
  min-width: 0;
}
.project-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 5px;
  line-height: 1.3;
}
.project-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.project-card-arrow {
  font-size: 15px;
  color: var(--text-muted);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 1px;
  transition: color 0.15s;
}
.project-card:hover .project-card-arrow {
  color: var(--accent);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
table th, table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
  line-height: 1.5;
}
table th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--heading);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
table tr:nth-child(even) td {
  background: var(--bg-alt);
}
table tr:hover td {
  background: var(--accent-bg);
}

.highlight {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
  overflow-x: auto;
}
.highlight code {
  background: none;
  border: none;
  padding: 0;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
}

.highlight .c {
  color: #586E75;
}

/* Comment */
.highlight .err {
  color: #93A1A1;
}

/* Error */
.highlight .g {
  color: #93A1A1;
}

/* Generic */
.highlight .k {
  color: #859900;
}

/* Keyword */
.highlight .l {
  color: #93A1A1;
}

/* Literal */
.highlight .n {
  color: #93A1A1;
}

/* Name */
.highlight .o {
  color: #859900;
}

/* Operator */
.highlight .x {
  color: #CB4B16;
}

/* Other */
.highlight .p {
  color: #93A1A1;
}

/* Punctuation */
.highlight .cm {
  color: #586E75;
}

/* Comment.Multiline */
.highlight .cp {
  color: #859900;
}

/* Comment.Preproc */
.highlight .c1 {
  color: #586E75;
}

/* Comment.Single */
.highlight .cs {
  color: #859900;
}

/* Comment.Special */
.highlight .gd {
  color: #2AA198;
}

/* Generic.Deleted */
.highlight .ge {
  color: #93A1A1;
  font-style: italic;
}

/* Generic.Emph */
.highlight .gr {
  color: #DC322F;
}

/* Generic.Error */
.highlight .gh {
  color: #CB4B16;
}

/* Generic.Heading */
.highlight .gi {
  color: #859900;
}

/* Generic.Inserted */
.highlight .go {
  color: #93A1A1;
}

/* Generic.Output */
.highlight .gp {
  color: #93A1A1;
}

/* Generic.Prompt */
.highlight .gs {
  color: #93A1A1;
  font-weight: bold;
}

/* Generic.Strong */
.highlight .gu {
  color: #CB4B16;
}

/* Generic.Subheading */
.highlight .gt {
  color: #93A1A1;
}

/* Generic.Traceback */
.highlight .kc {
  color: #CB4B16;
}

/* Keyword.Constant */
.highlight .kd {
  color: #268BD2;
}

/* Keyword.Declaration */
.highlight .kn {
  color: #859900;
}

/* Keyword.Namespace */
.highlight .kp {
  color: #859900;
}

/* Keyword.Pseudo */
.highlight .kr {
  color: #268BD2;
}

/* Keyword.Reserved */
.highlight .kt {
  color: #DC322F;
}

/* Keyword.Type */
.highlight .ld {
  color: #93A1A1;
}

/* Literal.Date */
.highlight .m {
  color: #2AA198;
}

/* Literal.Number */
.highlight .s {
  color: #2AA198;
}

/* Literal.String */
.highlight .na {
  color: #93A1A1;
}

/* Name.Attribute */
.highlight .nb {
  color: #B58900;
}

/* Name.Builtin */
.highlight .nc {
  color: #268BD2;
}

/* Name.Class */
.highlight .no {
  color: #CB4B16;
}

/* Name.Constant */
.highlight .nd {
  color: #268BD2;
}

/* Name.Decorator */
.highlight .ni {
  color: #CB4B16;
}

/* Name.Entity */
.highlight .ne {
  color: #CB4B16;
}

/* Name.Exception */
.highlight .nf {
  color: #268BD2;
}

/* Name.Function */
.highlight .nl {
  color: #93A1A1;
}

/* Name.Label */
.highlight .nn {
  color: #93A1A1;
}

/* Name.Namespace */
.highlight .nx {
  color: #555;
}

/* Name.Other */
.highlight .py {
  color: #93A1A1;
}

/* Name.Property */
.highlight .nt {
  color: #268BD2;
}

/* Name.Tag */
.highlight .nv {
  color: #268BD2;
}

/* Name.Variable */
.highlight .ow {
  color: #859900;
}

/* Operator.Word */
.highlight .w {
  color: #93A1A1;
}

/* Text.Whitespace */
.highlight .mf {
  color: #2AA198;
}

/* Literal.Number.Float */
.highlight .mh {
  color: #2AA198;
}

/* Literal.Number.Hex */
.highlight .mi {
  color: #2AA198;
}

/* Literal.Number.Integer */
.highlight .mo {
  color: #2AA198;
}

/* Literal.Number.Oct */
.highlight .sb {
  color: #586E75;
}

/* Literal.String.Backtick */
.highlight .sc {
  color: #2AA198;
}

/* Literal.String.Char */
.highlight .sd {
  color: #93A1A1;
}

/* Literal.String.Doc */
.highlight .s2 {
  color: #2AA198;
}

/* Literal.String.Double */
.highlight .se {
  color: #CB4B16;
}

/* Literal.String.Escape */
.highlight .sh {
  color: #93A1A1;
}

/* Literal.String.Heredoc */
.highlight .si {
  color: #2AA198;
}

/* Literal.String.Interpol */
.highlight .sx {
  color: #2AA198;
}

/* Literal.String.Other */
.highlight .sr {
  color: #DC322F;
}

/* Literal.String.Regex */
.highlight .s1 {
  color: #2AA198;
}

/* Literal.String.Single */
.highlight .ss {
  color: #2AA198;
}

/* Literal.String.Symbol */
.highlight .bp {
  color: #268BD2;
}

/* Name.Builtin.Pseudo */
.highlight .vc {
  color: #268BD2;
}

/* Name.Variable.Class */
.highlight .vg {
  color: #268BD2;
}

/* Name.Variable.Global */
.highlight .vi {
  color: #268BD2;
}

/* Name.Variable.Instance */
.highlight .il {
  color: #2AA198;
}

/* Literal.Number.Integer.Long */
[data-theme="dark"] {
  /* Comment */
  /* Error */
  /* Generic */
  /* Keyword */
  /* Literal */
  /* Name */
  /* Operator */
  /* Other */
  /* Punctuation */
  /* Comment.Multiline */
  /* Comment.Preproc */
  /* Comment.Single */
  /* Comment.Special */
  /* Generic.Deleted */
  /* Generic.Emph */
  /* Generic.Error */
  /* Generic.Heading */
  /* Generic.Inserted */
  /* Generic.Output */
  /* Generic.Prompt */
  /* Generic.Strong */
  /* Generic.Subheading */
  /* Generic.Traceback */
  /* Keyword.Constant */
  /* Keyword.Declaration */
  /* Keyword.Namespace */
  /* Keyword.Pseudo */
  /* Keyword.Reserved */
  /* Keyword.Type */
  /* Literal.Date */
  /* Literal.Number */
  /* Literal.String */
  /* Name.Attribute */
  /* Name.Builtin */
  /* Name.Class */
  /* Name.Constant */
  /* Name.Decorator */
  /* Name.Entity */
  /* Name.Exception */
  /* Name.Function */
  /* Name.Label */
  /* Name.Namespace */
  /* Name.Other */
  /* Name.Property */
  /* Name.Tag */
  /* Name.Variable */
  /* Operator.Word */
  /* Text.Whitespace */
  /* Literal.Number.Float */
  /* Literal.Number.Hex */
  /* Literal.Number.Integer */
  /* Literal.Number.Oct */
  /* Literal.String.Backtick */
  /* Literal.String.Char */
  /* Literal.String.Doc */
  /* Literal.String.Double */
  /* Literal.String.Escape */
  /* Literal.String.Heredoc */
  /* Literal.String.Interpol */
  /* Literal.String.Other */
  /* Literal.String.Regex */
  /* Literal.String.Single */
  /* Literal.String.Symbol */
  /* Name.Builtin.Pseudo */
  /* Name.Variable.Class */
  /* Name.Variable.Global */
  /* Name.Variable.Instance */
  /* Literal.Number.Integer.Long */
}
[data-theme="dark"] .highlight .c {
  color: #8b949e;
}
[data-theme="dark"] .highlight .err {
  color: #f85149;
}
[data-theme="dark"] .highlight .g {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .k {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .l {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .n {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .o {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .x {
  color: #ffa657;
}
[data-theme="dark"] .highlight .p {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .cm {
  color: #8b949e;
}
[data-theme="dark"] .highlight .cp {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .c1 {
  color: #8b949e;
}
[data-theme="dark"] .highlight .cs {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .gd {
  color: #ffa198;
}
[data-theme="dark"] .highlight .ge {
  color: #e6edf3;
  font-style: italic;
}
[data-theme="dark"] .highlight .gr {
  color: #f85149;
}
[data-theme="dark"] .highlight .gh {
  color: #ffa657;
}
[data-theme="dark"] .highlight .gi {
  color: #56d364;
}
[data-theme="dark"] .highlight .go {
  color: #8b949e;
}
[data-theme="dark"] .highlight .gp {
  color: #8b949e;
}
[data-theme="dark"] .highlight .gs {
  color: #e6edf3;
  font-weight: bold;
}
[data-theme="dark"] .highlight .gu {
  color: #ffa657;
}
[data-theme="dark"] .highlight .gt {
  color: #8b949e;
}
[data-theme="dark"] .highlight .kc {
  color: #79c0ff;
}
[data-theme="dark"] .highlight .kd {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .kn {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .kp {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .kr {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .kt {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .ld {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .m {
  color: #79c0ff;
}
[data-theme="dark"] .highlight .s {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .na {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .nb {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .nc {
  color: #f0f6fc;
}
[data-theme="dark"] .highlight .no {
  color: #79c0ff;
}
[data-theme="dark"] .highlight .nd {
  color: #d2a8ff;
}
[data-theme="dark"] .highlight .ni {
  color: #ffa657;
}
[data-theme="dark"] .highlight .ne {
  color: #f85149;
}
[data-theme="dark"] .highlight .nf {
  color: #d2a8ff;
}
[data-theme="dark"] .highlight .nl {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .nn {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .nx {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .py {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .nt {
  color: #7ee787;
}
[data-theme="dark"] .highlight .nv {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .ow {
  color: #ff7b72;
}
[data-theme="dark"] .highlight .w {
  color: #6e7681;
}
[data-theme="dark"] .highlight .mf {
  color: #79c0ff;
}
[data-theme="dark"] .highlight .mh {
  color: #79c0ff;
}
[data-theme="dark"] .highlight .mi {
  color: #79c0ff;
}
[data-theme="dark"] .highlight .mo {
  color: #79c0ff;
}
[data-theme="dark"] .highlight .sb {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .sc {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .sd {
  color: #8b949e;
}
[data-theme="dark"] .highlight .s2 {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .se {
  color: #ffa657;
}
[data-theme="dark"] .highlight .sh {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .si {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .sx {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .sr {
  color: #7ee787;
}
[data-theme="dark"] .highlight .s1 {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .ss {
  color: #a5d6ff;
}
[data-theme="dark"] .highlight .bp {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .vc {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .vg {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .vi {
  color: #e6edf3;
}
[data-theme="dark"] .highlight .il {
  color: #79c0ff;
}
