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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #0d1117;
  color: #c9d1d9;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", "Consolas", monospace;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #58a6ff;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: rgb(164.5, 206.7694610778, 255);
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6e7681;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-nav {
  border-bottom: 1px solid #30363d;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .nav-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #39d353;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.site-nav .nav-brand .prompt {
  color: #6e7681;
  font-weight: 400;
}
.site-nav .nav-brand .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #39d353;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1.2s step-end infinite;
}
.site-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.site-nav .nav-links a {
  color: #8b949e;
  font-size: 0.875rem;
  transition: color 0.15s;
}
.site-nav .nav-links a:hover, .site-nav .nav-links a.active {
  color: #39d353;
  text-decoration: none;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.terminal-window {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 8px;
  overflow: hidden;
  margin: 2.5rem 0;
}
.terminal-window .terminal-bar {
  background: #1c2128;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #30363d;
}
.terminal-window .terminal-bar .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-window .terminal-bar .dot.red {
  background: #ff5f57;
}
.terminal-window .terminal-bar .dot.yellow {
  background: #febc2e;
}
.terminal-window .terminal-bar .dot.green {
  background: #28c840;
}
.terminal-window .terminal-bar .title {
  color: #6e7681;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.terminal-window .terminal-body {
  padding: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.9;
}
.terminal-window .terminal-body .line {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: baseline;
}
.terminal-window .terminal-body .ps1 {
  color: #39d353;
  white-space: nowrap;
  flex-shrink: 0;
}
.terminal-window .terminal-body .cmd {
  color: #c9d1d9;
}
.terminal-window .terminal-body .out {
  color: #8b949e;
}
.terminal-window .terminal-body .val {
  color: #58a6ff;
}
.terminal-window .terminal-body .tag {
  display: inline-block;
  background: rgba(57, 211, 83, 0.12);
  color: #39d353;
  border: 1px solid rgba(57, 211, 83, 0.3);
  border-radius: 4px;
  padding: 0 0.4rem;
  font-size: 0.78rem;
  margin: 0.1rem;
}
.terminal-window .terminal-body .tag-yellow {
  background: rgba(227, 179, 65, 0.12);
  color: #e3b341;
  border-color: rgba(227, 179, 65, 0.3);
}
.terminal-window .terminal-body .tag-cyan {
  background: rgba(88, 166, 255, 0.12);
  color: #58a6ff;
  border-color: rgba(88, 166, 255, 0.3);
}
.terminal-window .terminal-body .blank {
  height: 0.5rem;
  width: 100%;
}
.terminal-window .terminal-body a {
  color: #58a6ff;
}
.terminal-window .terminal-body a:hover {
  color: rgb(164.5, 206.7694610778, 255);
}

.post-content {
  margin-bottom: 2rem;
}
.post-content h1 {
  font-size: 1.5rem;
  color: #c9d1d9;
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}
.post-content h2, .post-content h3, .post-content h4 {
  color: #c9d1d9;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}
.post-content h2::before, .post-content h3::before, .post-content h4::before {
  color: #e3b341;
  margin-right: 0.4em;
}
.post-content h2::before {
  content: "##";
}
.post-content h3::before {
  content: "###";
}
.post-content h4::before {
  content: "####";
}
.post-content p {
  color: #8b949e;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.post-content strong {
  color: #c9d1d9;
}
.post-content em {
  color: #e3b341;
  font-style: normal;
}
.post-content ul, .post-content ol {
  color: #8b949e;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.post-content ul li, .post-content ol li {
  margin-bottom: 0.3rem;
}
.post-content code {
  background: #1c2128;
  border: 1px solid #30363d;
  border-radius: 3px;
  padding: 0.1em 0.4em;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", "Consolas", monospace;
  font-size: 0.85em;
  color: #58a6ff;
}
.post-content pre {
  background: #1c2128;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}
.post-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: #c9d1d9;
  font-size: 0.85rem;
  line-height: 1.7;
}
.post-content blockquote {
  border-left: 3px solid #e3b341;
  padding-left: 1rem;
  margin: 1.25rem 0;
  color: #8b949e;
  font-style: italic;
}
.post-content hr {
  border: none;
  border-top: 1px solid #30363d;
  margin: 2rem 0;
}
.post-content a {
  color: #58a6ff;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.post-content table th, .post-content table td {
  border: 1px solid #30363d;
  padding: 0.6rem 0.875rem;
  text-align: left;
}
.post-content table th {
  background: #1c2128;
  color: #c9d1d9;
}
.post-content table td {
  color: #8b949e;
}
.post-content table tr:hover td {
  background: rgba(28, 33, 40, 0.5);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #30363d;
}
.post-nav a {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.83rem;
  color: #8b949e;
  transition: border-color 0.2s, color 0.2s;
  max-width: 48%;
}
.post-nav a:hover {
  border-color: #39d353;
  color: #39d353;
  text-decoration: none;
}
.post-nav a .nav-label {
  font-size: 0.72rem;
  color: #6e7681;
  display: block;
  margin-bottom: 0.2rem;
}
.post-nav .post-nav-next {
  text-align: right;
  margin-left: auto;
}

.site-footer {
  border-top: 1px solid #30363d;
  padding: 1.25rem 0;
  margin-top: 2rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}
.site-footer .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer .footer-ps1 {
  color: #39d353;
}
.site-footer .footer-cmd {
  color: #c9d1d9;
}
.site-footer .footer-comment {
  color: #6e7681;
}
.site-footer a {
  color: #6e7681;
}
.site-footer a:hover {
  color: #39d353;
  text-decoration: none;
}

.highlight .c, .highlight .c1, .highlight .cm, .highlight .cs {
  color: #6e7681;
  font-style: italic;
}
.highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #ff7b72;
}
.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr, .highlight .ss {
  color: #a5d6ff;
}
.highlight .n, .highlight .na {
  color: #c9d1d9;
}
.highlight .nb {
  color: #ffa657;
}
.highlight .nc {
  color: #f0883e;
}
.highlight .nf, .highlight .nx {
  color: #58a6ff;
}
.highlight .mi, .highlight .mf, .highlight .mh, .highlight .mo {
  color: #79c0ff;
}
.highlight .o, .highlight .ow {
  color: #ff7b72;
}
.highlight .p {
  color: #c9d1d9;
}
.highlight .gp {
  color: #39d353;
  user-select: none;
}
.highlight .go {
  color: #8b949e;
}
.highlight .ge {
  color: #e3b341;
}

@media (max-width: 600px) {
  .nav-links {
    gap: 1rem;
  }
  .terminal-body {
    font-size: 0.8rem;
  }
  .post-content h1 {
    font-size: 1.2rem;
  }
  .post-nav {
    flex-direction: column;
  }
  .post-nav a {
    max-width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */