*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 15px;
  scroll-behavior: smooth;
  scrollbar-color: #555 #1d1f21;
  scrollbar-width: thin;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #c9cacc;
  background-color: #1d1f21;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
::selection {
  background: rgba(212,128,170,0.3);
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #1d1f21;
}
::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #777;
}
a {
  color: #d480aa;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #da93b7;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.4;
  color: #c9cacc;
}
h1 {
  font-size: 1.8rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1rem;
}
code {
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
  font-size: 0.9em;
  background: #232628;
  padding: 2px 6px;
  border-radius: 4px;
}
pre {
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
  background: #232628;
  padding: 20px;
  border-radius: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  max-width: 100%;
}
pre code {
  background: none;
  padding: 0;
}
blockquote {
  border-left: 3px solid #2bbc8a;
  padding-left: 20px;
  margin: 20px 0;
  color: #908d8d;
  font-style: italic;
}
hr {
  border: none;
  border-top: 1px solid #3d3f41;
  margin: 30px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
th,
td {
  padding: 10px 20px;
  border: 1px solid #3d3f41;
  text-align: left;
}
th {
  background: #232628;
  font-weight: 600;
}
.container {
  max-width: var(--page-width, 52rem);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .container {
    padding: 0 var(--mobile-padding, 20px);
  }
}
.main {
  flex: 1;
  padding: 40px 0;
}
.home-layout {
  display: flex;
  gap: 50px;
}
.home-layout.vertical {
  flex-direction: column;
  max-width: var(--content-width, 800px);
  margin: 0 auto;
  width: 100%;
}
.home-layout.vertical .sidebar {
  margin-bottom: 20px;
}
.home-layout.vertical .profile {
  text-align: left;
}
.home-layout.vertical .search-box {
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .home-layout {
    flex-direction: column;
  }
}
.sidebar-area {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sidebar-area {
    width: 100%;
    order: -1;
  }
}
.content-area {
  flex: 1;
  min-width: 0;
}
.page-layout {
  max-width: var(--content-width, 720px);
  margin: 0 auto;
  width: 100%;
}
.header {
  position: sticky;
  top: 0;
  padding: 20px 0;
  border-bottom: 1px solid #3d3f41;
  background: #1d1f21;
  z-index: 100;
}
.header-inner {
  max-width: var(--page-width, 52rem);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .header-inner {
    padding: 0 var(--mobile-padding, 20px);
  }
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
}
.site-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9cacc;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.site-title:hover {
  color: #2bbc8a;
}
@media (max-width: 480px) {
  .site-title {
    font-size: 1.2rem;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #1d1f21;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.25s ease;
    z-index: 99;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }
  .nav-menu.is-open {
    right: 0;
  }
  .nav-menu .nav-divider {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-item {
    border-bottom: 1px solid #3d3f41;
    padding-bottom: 10px;
    width: 100%;
  }
}
.nav-link {
  color: #2bbc8a;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s ease;
  padding: 0 10px;
}
.nav-link:hover {
  color: #d480aa;
}
.nav-link.active {
  color: #2bbc8a;
}
.nav-divider {
  color: #6e6e6e;
  font-size: 13px;
  user-select: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: #c9cacc;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}
.nav-overlay.is-visible {
  display: block;
}
.footer {
  padding: 30px 0;
  border-top: 1px solid #3d3f41;
  margin-top: auto;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #908d8d;
}
@media (max-width: 480px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.footer-left .copyright {
  margin-right: 10px;
}
.footer-right {
  display: flex;
  gap: 20px;
}
.footer-right span::after {
  content: " | ";
  margin-left: 20px;
  color: #3d3f41;
}
.footer-right span:last-child::after {
  display: none;
}
.footer-right a {
  color: #908d8d;
}
.footer-right a:hover {
  color: #d480aa;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #3d3f41;
}
.social-link {
  color: #908d8d;
  transition: color 0.15s ease, transform 0.15s ease;
}
.social-link:hover {
  color: #2bbc8a;
  transform: translateY(-2px);
}
.social-link svg {
  display: block;
}
@media (max-width: 768px) {
  .sidebar {
    margin-bottom: 40px;
  }
}
.profile {
  margin-bottom: 20px;
}
.vertical .profile {
  margin-bottom: 30px;
}
.vertical .profile .profile-description {
  font-size: 15px;
  max-width: 600px;
}
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 2px solid #3d3f41;
}
.profile-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #c9cacc;
}
.profile-subtitle {
  font-size: 13px;
  color: #908d8d;
  margin-bottom: 10px;
}
.profile-description {
  font-size: 13px;
  color: #908d8d;
  line-height: 1.6;
}
.profile-description a {
  color: #d480aa;
}
.profile-description a:hover {
  color: #da93b7;
}
.profile-description p {
  margin-bottom: 10px;
}
.profile-description p:last-child {
  margin-bottom: 0;
}
.profile-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.profile-social .social-link {
  color: #908d8d;
}
.profile-social .social-link:hover {
  color: #2bbc8a;
}
.search-box {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #3d3f41;
}
.vertical .search-box {
  border-top: none;
  padding-top: 0;
  max-width: 100%;
}
.search-input {
  width: 100%;
  padding: 10px 20px;
  font-size: 15px;
  color: #c9cacc;
  background: #232628;
  border: 1px solid #3d3f41;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease;
}
.search-input::placeholder {
  color: #6e6e6e;
}
.search-input:focus {
  border-color: #2bbc8a;
}
.search-result {
  margin-top: 10px;
}
.search-result-list {
  max-height: 300px;
  overflow-y: auto;
}
.search-result-item {
  padding: 10px 0;
  border-bottom: 1px dashed #3d3f41;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item a {
  color: #c9cacc;
  display: block;
}
.search-result-item a:hover {
  color: #d480aa;
}
.search-result-item mark {
  background: rgba(212,128,170,0.3);
  color: #d480aa;
  padding: 0 2px;
  border-radius: 2px;
}
.search-no-result {
  font-size: 13px;
  color: #6e6e6e;
  padding: 10px 0;
}
.columns-container {
  display: flex;
  gap: 50px;
}
.columns-container.columns-single-column {
  flex-direction: column;
}
.columns-container.columns-two-column {
  flex-direction: row;
}
@media (max-width: 768px) {
  .columns-container.columns-two-column {
    flex-direction: column;
  }
}
.column {
  flex: 1;
  min-width: 0;
}
.columns-two-column .column {
  width: calc(50% - ($content-gap / 2));
}
@media (max-width: 768px) {
  .columns-two-column .column {
    width: 100%;
  }
}
.column-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2bbc8a;
}
.column-title a {
  color: #2bbc8a;
}
.column-title a:hover {
  color: #d480aa;
}
.column-posts {
  list-style: none;
}
.column-post-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed #313234;
  gap: 20px;
  line-height: 1.6;
}
.column-post-item:last-child {
  border-bottom: none;
}
.column-post-item:hover .post-link {
  color: #d480aa;
}
@media (max-width: 480px) {
  .column-post-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.post-link {
  color: #c9cacc;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.15s ease;
}
@media (max-width: 480px) {
  .post-link {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    order: 1;
  }
}
.post-date {
  color: #908d8d;
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .post-date {
    order: 2;
  }
}
.view-all {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: #d480aa;
}
.view-all:hover {
  color: #da93b7;
}
.no-posts {
  color: #6e6e6e;
  font-style: italic;
  padding: 10px 0;
}
.post-list-section {
  margin-top: 20px;
}
.post-list-section .section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2bbc8a;
}
.post-list {
  list-style: none;
}
.post-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed #313234;
  gap: 20px;
  line-height: 1.6;
}
.post-list-item:last-child {
  border-bottom: none;
}
@media (max-width: 480px) {
  .post-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.post-list-item .post-link {
  color: #c9cacc;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-list-item .post-link:hover {
  color: #d480aa;
}
@media (max-width: 480px) {
  .post-list-item .post-link {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
.post-list-item .post-date {
  color: #908d8d;
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
  flex-shrink: 0;
}
.post-header {
  margin-bottom: 40px;
}
.post-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  .post-title {
    font-size: 1.5rem;
  }
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #908d8d;
}
.post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-meta .meta-item svg {
  width: 14px;
  height: 14px;
}
.post-content {
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin: 1.5em 0 0.5em;
  font-weight: 600;
}
.post-content h1:first-child,
.post-content h2:first-child,
.post-content h3:first-child,
.post-content h4:first-child,
.post-content h5:first-child,
.post-content h6:first-child {
  margin-top: 0;
}
.post-content h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #3d3f41;
}
.post-content p {
  margin-bottom: 1em;
}
.post-content ul,
.post-content ol {
  margin: 1em 0;
  padding-left: 2em;
}
.post-content ul {
  list-style: disc;
}
.post-content ol {
  list-style: decimal;
}
.post-content li {
  margin-bottom: 0.5em;
}
.post-content img {
  display: block;
  max-width: 100%;
  margin: 20px auto;
  border-radius: 4px;
}
.post-content a {
  color: #d480aa;
  border-bottom: 1px dashed #d480aa;
}
.post-content a:hover {
  border-bottom-style: solid;
}
.post-content blockquote {
  margin: 20px 0;
  padding: 10px 20px;
  border-left: 3px solid #2bbc8a;
  background: #232628;
  border-radius: 0 4px 4px 0;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-content pre {
  margin: 20px 0;
  position: relative;
}
.post-content code {
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
}
.post-content table {
  margin: 20px 0;
}
.post-content hr {
  margin: 40px 0;
  border: none;
  border-top: 1px dashed #3d3f41;
}
.post-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #3d3f41;
}
.post-categories,
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.post-categories:last-child,
.post-tags:last-child {
  margin-bottom: 0;
}
.meta-label {
  font-size: 13px;
  color: #6e6e6e;
}
.category,
.tag {
  font-size: 13px;
  color: #908d8d;
  background: #232628;
  padding: 5px 10px;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.category:hover,
.tag:hover {
  color: #d480aa;
  background: #2e3134;
}
.tag::before {
  content: "#";
  margin-right: 2px;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #3d3f41;
}
@media (max-width: 480px) {
  .post-nav {
    flex-direction: column;
    gap: 20px;
  }
}
.post-nav-item {
  max-width: 45%;
}
@media (max-width: 480px) {
  .post-nav-item {
    max-width: 100%;
  }
}
.post-nav-item.prev {
  text-align: left;
}
.post-nav-item.next {
  text-align: right;
}
@media (max-width: 480px) {
  .post-nav-item.next {
    text-align: left;
  }
}
.post-nav-label {
  font-size: 13px;
  color: #6e6e6e;
  margin-bottom: 5px;
}
.post-nav-title {
  color: #c9cacc;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-nav-title:hover {
  color: #d480aa;
}
.toc {
  margin: 30px 0;
  padding: 20px;
  background: #232628;
  border-radius: 4px;
}
.toc-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #c9cacc;
}
.toc-list {
  font-size: 13px;
  line-height: 1.8;
}
.toc-list ol {
  list-style: none;
  padding-left: 20px;
}
.toc-list ol:first-child {
  padding-left: 0;
}
.toc-list a {
  color: #908d8d;
}
.toc-list a:hover {
  color: #d480aa;
}
.archive-page {
  max-width: 720px;
  margin: 0 auto;
}
.archive-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.archive-year {
  margin-bottom: 40px;
}
.archive-year-title {
  font-size: 18px;
  font-weight: 600;
  color: #2bbc8a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3d3f41;
}
.archive-posts {
  list-style: none;
}
.archive-post-item {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  gap: 20px;
}
.archive-post-item:hover .post-link {
  color: #d480aa;
}
@media (max-width: 480px) {
  .archive-post-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.archive-post-date {
  width: 80px;
  flex-shrink: 0;
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
  color: #908d8d;
}
@media (max-width: 480px) {
  .archive-post-date {
    width: auto;
  }
}
.archive-post-link {
  flex: 1;
  color: #c9cacc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.15s ease;
}
@media (max-width: 480px) {
  .archive-post-link {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
.archive-post-link:hover {
  color: #d480aa;
}
.category-page,
.tag-page {
  max-width: 720px;
  margin: 0 auto;
}
.category-title,
.tag-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.category-title span,
.tag-title span {
  color: #2bbc8a;
}
.category-count,
.tag-count {
  font-size: 15px;
  color: #908d8d;
  margin-bottom: 40px;
}
.categories-list,
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.category-item,
.tag-item {
  font-size: 13px;
  color: #908d8d;
  background: #232628;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.category-item:hover,
.tag-item:hover {
  color: #d480aa;
  background: #2e3134;
}
.category-item .count,
.tag-item .count {
  margin-left: 5px;
  color: #6e6e6e;
}
.categories-page {
  max-width: 800px;
  margin: 0 auto;
}
.categories-page .page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.categories-posts {
  margin-top: 40px;
}
.category-section {
  margin-bottom: 40px;
}
.category-name {
  font-size: 18px;
  font-weight: 600;
  color: #2bbc8a;
  margin-bottom: 20px;
}
.category-name a {
  color: #2bbc8a;
}
.category-name a:hover {
  color: #d480aa;
}
.category-name .count {
  font-size: 13px;
  font-weight: normal;
  color: #908d8d;
  margin-left: 10px;
}
.category-post-list {
  list-style: none;
}
.category-post-item {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  gap: 20px;
  border-bottom: 1px dashed #313234;
}
.category-post-item:last-child {
  border-bottom: none;
}
.category-post-item .post-date {
  width: 90px;
  flex-shrink: 0;
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
  color: #908d8d;
}
.category-post-item .post-link {
  flex: 1;
  color: #c9cacc;
}
.category-post-item .post-link:hover {
  color: #d480aa;
}
.tags-page {
  max-width: 800px;
  margin: 0 auto;
}
.tags-page .page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.tags-posts {
  margin-top: 40px;
}
.tag-section {
  margin-bottom: 40px;
}
.tag-name {
  font-size: 18px;
  font-weight: 600;
  color: #2bbc8a;
  margin-bottom: 20px;
}
.tag-name a {
  color: #2bbc8a;
}
.tag-name a:hover {
  color: #d480aa;
}
.tag-name .count {
  font-size: 13px;
  font-weight: normal;
  color: #908d8d;
  margin-left: 10px;
}
.tag-post-list {
  list-style: none;
}
.tag-post-item {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  gap: 20px;
  border-bottom: 1px dashed #313234;
}
.tag-post-item:last-child {
  border-bottom: none;
}
.tag-post-item .post-date {
  width: 90px;
  flex-shrink: 0;
  font-size: 13px;
  font-family: "SF Mono", "Fira Code", "Monaco", "Menlo", "Consolas", monospace;
  color: #908d8d;
}
.tag-post-item .post-link {
  flex: 1;
  color: #c9cacc;
}
.tag-post-item .post-link:hover {
  color: #d480aa;
}
.page {
  max-width: 720px;
  margin: 0 auto;
}
.page-header {
  margin-bottom: 40px;
}
.page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-content {
  font-size: 1rem;
  line-height: 1.75;
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  margin: 1.5em 0 0.5em;
  font-weight: 600;
}
.page-content h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #3d3f41;
}
.page-content p {
  margin-bottom: 1em;
}
.page-content ul,
.page-content ol {
  margin: 1em 0;
  padding-left: 2em;
}
.page-content ul {
  list-style: disc;
}
.page-content ol {
  list-style: decimal;
}
.page-content li {
  margin-bottom: 0.5em;
}
.page-content img {
  display: block;
  max-width: 100%;
  margin: 20px auto;
  border-radius: 4px;
}
.page-content a {
  color: #d480aa;
}
.page-content a:hover {
  color: #da93b7;
}
.page-content blockquote {
  margin: 20px 0;
  padding: 10px 20px;
  border-left: 3px solid #2bbc8a;
  background: #232628;
}
.error-page {
  text-align: center;
  padding: 80px 0;
}
.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: #2bbc8a;
  line-height: 1;
  margin-bottom: 20px;
}
.error-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.error-description {
  color: #908d8d;
  margin-bottom: 30px;
}
.error-link {
  display: inline-block;
  padding: 10px 30px;
  background: #2bbc8a;
  color: #1d1f21;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.error-link:hover {
  background: #33d09a;
  color: #1d1f21;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px dashed #3d3f41;
}
.page-number {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #908d8d;
  background: #232628;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.page-number:hover {
  color: #d480aa;
  background: #2e3134;
}
.page-number.current {
  color: #1d1f21;
  background: #2bbc8a;
  font-weight: 600;
}
.prev-link,
.next-link {
  padding: 5px 20px;
  font-size: 13px;
  color: #908d8d;
  background: #232628;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.prev-link:hover,
.next-link:hover {
  color: #d480aa;
  background: #2e3134;
}
.space {
  color: #6e6e6e;
}
figure.highlight,
pre,
.code-block {
  background: #232628;
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0;
  position: relative;
  max-width: 100%;
}
figure.highlight {
  margin: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
figure.highlight pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  min-width: 0;
}
figure.highlight table {
  width: auto;
  min-width: 100%;
  border: none;
  margin: 0;
}
figure.highlight td {
  padding: 0;
  border: none;
}
figure.highlight .gutter {
  width: 40px;
  padding-right: 20px;
  text-align: right;
  user-select: none;
}
figure.highlight .gutter pre {
  padding: 20px 0;
  padding-right: 20px;
  color: #6e6e6e;
}
figure.highlight .code pre {
  padding: 20px;
  padding-left: 0;
}
.line {
  height: 1.5em;
}
.copy-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 13px;
  color: #908d8d;
  background: #1d1f21;
  border: 1px solid #3d3f41;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.copy-button:hover {
  color: #c9cacc;
  border-color: #908d8d;
}
figure.highlight:hover .copy-button,
pre:hover .copy-button {
  opacity: 1;
}
.highlight .comment,
.highlight .quote {
  color: #969896;
}
.highlight .keyword,
.highlight .selector-tag,
.highlight .addition {
  color: #b294bb;
}
.highlight .number,
.highlight .string,
.highlight .meta .meta-string,
.highlight .literal,
.highlight .doctag,
.highlight .regexp {
  color: #b5bd68;
}
.highlight .title,
.highlight .section,
.highlight .name,
.highlight .selector-id,
.highlight .selector-class {
  color: #81a2be;
}
.highlight .attribute,
.highlight .attr,
.highlight .variable,
.highlight .template-variable,
.highlight .class .title,
.highlight .type {
  color: #c66;
}
.highlight .symbol,
.highlight .bullet,
.highlight .subst,
.highlight .meta,
.highlight .meta .keyword,
.highlight .selector-attr,
.highlight .selector-pseudo,
.highlight .link {
  color: #de935f;
}
.highlight .built_in,
.highlight .deletion {
  color: #b294bb;
}
.highlight .formula {
  background: #232628;
}
.highlight .emphasis {
  font-style: italic;
}
.highlight .strong {
  font-weight: bold;
}
.comments-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #3d3f41;
}
.comments-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
#disqus_thread {
  margin-top: 20px;
}
.utterances {
  max-width: 100% !important;
}
.giscus {
  margin-top: 20px;
}
.links-page {
  max-width: 900px;
  margin: 0 auto;
}
.links-page .page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.links-intro {
  margin-bottom: 40px;
  color: #908d8d;
  line-height: 1.8;
}
.links-intro a {
  color: #d480aa;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #232628;
  border: 1px solid #3d3f41;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.link-card:hover {
  border-color: #2bbc8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.link-card:hover .link-name {
  color: #2bbc8a;
}
.link-avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #2e3134;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.link-avatar .link-initial {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2bbc8a;
}
.link-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.link-name {
  font-size: 15px;
  font-weight: 600;
  color: #c9cacc;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}
.link-desc {
  font-size: 13px;
  color: #908d8d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
