@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #e4e4e7;
  background-color: #0e0e1a;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #e4e4e7;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #93c5fd;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

hr {
  border: none;
  border-top: 1px solid #2a2a3d;
  margin: 2.5rem 0;
}

blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid #a78bfa;
  background-color: rgba(167, 139, 250, 0.06);
  border-radius: 0 8px 8px 0;
  color: #a1a1aa;
  font-style: italic;
}
blockquote p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 700;
  color: #e4e4e7;
}

em, i {
  color: #a1a1aa;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
table th, table td {
  padding: 0.75rem 1rem;
  border: 1px solid #2a2a3d;
  text-align: left;
}
table th {
  background-color: #1e1e30;
  font-weight: 600;
}
table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

code {
  font-family: "SFMono-Regular", "Cascadia Code", "Fira Code", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.85em;
  padding: 0.2em 0.4em;
  background-color: rgba(167, 139, 250, 0.15);
  border-radius: 4px;
  color: #a78bfa;
}

pre {
  background-color: #1a1b2e;
  color: #e4e4e7;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
}

::selection {
  background: rgba(96, 165, 250, 0.3);
  color: #ffffff;
}

.page-content {
  min-height: calc(100vh - 64px - 200px);
  padding-top: 3rem;
  padding-bottom: 4rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #101020;
}

.site-nav {
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-family: "SFMono-Regular", "Cascadia Code", "Fira Code", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e5e7eb;
  letter-spacing: -0.02em;
}
.site-title:hover {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #e5e7eb;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.nav-links a:hover {
  opacity: 1;
  color: #e5e7eb;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #e5e7eb;
  position: relative;
  transition: background-color 0.2s ease;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #e5e7eb;
  transition: transform 0.2s ease;
}
.hamburger::before {
  top: -7px;
}
.hamburger::after {
  top: 7px;
}

.nav-gradient {
  height: 3px;
  background: linear-gradient(90deg, #f08080, #a78bfa, #2962ff, #5ce0d8, #86efac);
}

.site-footer {
  background-color: #101020;
}

.footer-gradient {
  height: 3px;
  background: linear-gradient(90deg, #f08080, #a78bfa, #2962ff, #5ce0d8, #86efac);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: #85898c;
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: #85898c;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #e5e7eb;
}

.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 0;
  color: #60a5fa;
  background: linear-gradient(90deg, #f08080, #a78bfa, #2962ff, #5ce0d8, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #a1a1aa;
  margin: 0;
  font-weight: 400;
}

.posts-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #71717a;
  margin-bottom: 2rem;
  margin-top: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #2a2a3d;
}

.post-list {
  display: flex;
  flex-direction: column;
}

.post-card {
  padding: 2rem 0;
  border-bottom: 1px solid #1f1f30;
}
.post-card:first-child {
  padding-top: 0;
}
.post-card:last-child {
  border-bottom: none;
}

.post-card .post-date {
  display: block;
  font-size: 0.875rem;
  color: #71717a;
  margin-bottom: 0.5rem;
  font-family: "SFMono-Regular", "Cascadia Code", "Fira Code", Consolas, "Liberation Mono", Menlo, monospace;
}

.post-card .post-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}
.post-card .post-title a {
  color: #e4e4e7;
  transition: color 0.2s ease;
}
.post-card .post-title a:hover {
  color: #60a5fa;
}

.post-card .post-excerpt {
  color: #a1a1aa;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.post-card .post-meta-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-card .reading-time {
  font-size: 0.875rem;
  color: #71717a;
}

.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.post-header {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2a2a3d;
  position: relative;
}
.post-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f08080, #a78bfa, #2962ff, #5ce0d8, #86efac);
  border-radius: 2px;
}

.post-header .post-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.post-meta .post-date {
  font-size: 0.875rem;
  color: #71717a;
  font-family: "SFMono-Regular", "Cascadia Code", "Fira Code", Consolas, "Liberation Mono", Menlo, monospace;
}

.post-meta .reading-time {
  font-size: 0.875rem;
  color: #71717a;
}
.post-meta .reading-time::before {
  content: "·";
  margin-right: 1rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  font-family: "SFMono-Regular", "Cascadia Code", "Fira Code", Consolas, "Liberation Mono", Menlo, monospace;
}

.post-content {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #a1a1aa;
}
.post-content > p:first-child {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e4e4e7;
  margin-bottom: 2rem;
}
.post-content > p {
  margin-bottom: 1.5rem;
}
.post-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  color: #e4e4e7;
  position: relative;
}
.post-content h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f08080, #a78bfa, #2962ff, #5ce0d8, #86efac);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #e4e4e7;
  padding-left: 1rem;
  border-left: 3px solid #5ce0d8;
}
.post-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #e4e4e7;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.875rem;
}
.post-content a {
  color: #60a5fa;
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.post-content a:hover {
  color: #93c5fd;
  text-decoration-color: #93c5fd;
}
.post-content ul {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}
.post-content ul > li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.post-content ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
}
.post-content ul ul {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.post-content ul ul > li::before {
  background: transparent;
  border: 1.5px solid #a78bfa;
}
.post-content ol {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
  counter-reset: ol-counter;
}
.post-content ol > li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  counter-increment: ol-counter;
}
.post-content ol > li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-family: "SFMono-Regular", "Cascadia Code", "Fira Code", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #5ce0d8;
  background: rgba(92, 224, 216, 0.1);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-content li > strong:first-child {
  color: #e4e4e7;
  font-weight: 700;
}
.post-content strong {
  color: #e4e4e7;
  font-weight: 700;
}
.post-content em {
  color: #e4e4e7;
  font-style: italic;
}
.post-content img {
  margin: 2.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a3d;
  cursor: zoom-in;
}
.post-content a.glightbox {
  display: block;
  text-decoration: none;
}
.post-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid #a78bfa;
  background: rgba(167, 139, 250, 0.06);
  border-radius: 0 8px 8px 0;
}
.post-content blockquote p {
  color: #a1a1aa;
  font-style: italic;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-content pre {
  margin: 2.5rem 0;
  border: 1px solid #2a2a3d;
}
.post-content hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #f08080, #a78bfa, #2962ff, #5ce0d8, #86efac);
  margin: 3rem 0;
  border-radius: 2px;
  opacity: 0.5;
}
.post-content > *:first-child {
  margin-top: 0;
}
.post-content .footnotes {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a3d;
  font-size: 0.875rem;
  color: #71717a;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a3d;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #71717a;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.back-link:hover {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .hero {
    padding: 2.5rem 1rem 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
  .post-header .post-title {
    font-size: 2rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #101020;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 0.75rem 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .page-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .posts-section {
    padding: 0 1rem;
  }
  .post {
    padding: 0 1rem;
  }
  .post-card .post-title {
    font-size: 1.25rem;
  }
  pre {
    font-size: 0.8rem;
    padding: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
}
.highlight {
  background-color: #1a1b2e;
  border-radius: 8px;
  margin: 2rem 0;
}
.highlight pre {
  margin: 0;
  background: none;
}
.highlight .c, .highlight .c1, .highlight .cm, .highlight .cs, .highlight .ch {
  color: #6a737d;
  font-style: italic;
}
.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .sh, .highlight .sx {
  color: #98c379;
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #c678dd;
}
.highlight .m, .highlight .mi, .highlight .mf, .highlight .mh, .highlight .mo, .highlight .il {
  color: #d19a66;
}
.highlight .nf, .highlight .fm {
  color: #61afef;
}
.highlight .nc, .highlight .nn {
  color: #e5c07b;
}
.highlight .nv, .highlight .vi, .highlight .gp {
  color: #e06c75;
}
.highlight .o, .highlight .ow {
  color: #56b6c2;
}
.highlight .no {
  color: #d19a66;
}
.highlight .nb {
  color: #56b6c2;
}
.highlight .na {
  color: #d19a66;
}
.highlight .nt {
  color: #e06c75;
}
.highlight .p {
  color: #abb2bf;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gd {
  color: #e06c75;
}
.highlight .gi {
  color: #98c379;
}
.highlight .n, .highlight .nx {
  color: #abb2bf;
}
.highlight .err {
  color: #e06c75;
}
.highlight .w {
  color: #abb2bf;
}
.highlight .bp {
  color: #e5c07b;
}
.highlight .vc, .highlight .vg {
  color: #e06c75;
}
.highlight .vs {
  color: #98c379;
}
.highlight .sr {
  color: #98c379;
}
.highlight .si, .highlight .se {
  color: #d19a66;
}
.highlight .ss {
  color: #98c379;
}

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