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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #1D1D1F;
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #0A84FF;
}

code {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.875em;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: rgba(214, 51, 132, 0.08);
  color: #d63384;
  border: 1px solid rgba(214, 51, 132, 0.15);
}

pre {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-x: auto;
  padding: 0;
  border-radius: 0.75rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
pre code {
  display: block;
  padding: 1.5rem;
  background: transparent;
  color: #1D1D1F;
  border: none;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

blockquote {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #ffffff 100%);
  border-left: 4px solid #0A84FF;
  border: 1px solid rgba(10, 132, 255, 0.1);
  border-left: 4px solid #0A84FF;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(10, 132, 255, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}
blockquote p {
  color: #1e3a5f;
  margin: 0;
  font-style: italic;
  line-height: 1.7;
}
blockquote strong {
  color: #0a2540;
  font-weight: 600;
}

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

::selection {
  background-color: #0A84FF;
  color: white;
}

:focus-visible {
  outline: 2px solid #0A84FF;
  outline-offset: 2px;
}

.text-blue {
  color: #0A84FF;
}

.bg-blue {
  background-color: #0A84FF;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  body {
    font-size: 15px;
  }
  pre {
    margin: 1.5rem 0;
    border-radius: 0.5rem;
  }
  pre code {
    padding: 1rem;
    font-size: 0.8rem;
  }
  blockquote {
    padding: 0.875rem 1.25rem;
    margin: 1.25rem 0;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  body {
    font-size: 14px;
  }
  pre code {
    padding: 0.875rem;
    font-size: 0.75rem;
  }
}
.container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

nav {
  height: 3.5rem;
}
nav .nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.6;
}
nav .nav-btn:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.05);
}

main {
  min-height: calc(100vh - 3.5rem);
  padding-top: 6.5rem;
  padding-bottom: 4rem;
}

footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.grid {
  display: grid;
}
.grid.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn.btn-primary {
  background-color: #0A84FF;
  color: white;
}
.btn.btn-primary:hover {
  background-color: rgb(0, 106.5632653061, 214);
}
.btn.btn-secondary {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.05);
  color: #1D1D1F;
}
.btn.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.category-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: transparent;
  color: #666666;
  cursor: pointer;
}
.category-btn:hover {
  border-color: #1D1D1F;
}
.category-btn.active {
  background-color: #1D1D1F;
  color: white;
  border-color: #1D1D1F;
}

.post-item {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  cursor: pointer;
}
.post-item:last-child {
  border-bottom: none;
}
.post-item:hover h2 {
  color: #0A84FF;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  font-family: "JetBrains Mono", "Courier New", monospace;
  background-color: rgba(128, 128, 128, 0.1);
  color: #666666;
}

#searchModal .search-container {
  animation: spotlight-enter 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#searchModal .search-result {
  padding: 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}
#searchModal .search-result:hover {
  background-color: #0A84FF;
  color: white;
}

#readingProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  z-index: 60;
}
#readingProgress #progressBar {
  height: 100%;
  background-color: #0A84FF;
  transition: width 0.15s ease-out;
}

#toast {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

#scrollToTop {
  cursor: pointer;
}
#scrollToTop:active {
  transform: scale(0.95) !important;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(128, 128, 128, 0.2);
  border-radius: 4px;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  border-radius: 0.75rem;
  padding: 0;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.highlight pre {
  margin: 0;
  padding: 1.5rem;
  background-color: transparent;
}
.highlight pre code {
  color: #1D1D1F;
  font-family: "JetBrains Mono", "Courier New", monospace;
  line-height: 1.6;
}
.highlight .c, .highlight .cm, .highlight .cp, .highlight .c1, .highlight .cs {
  color: #6272a4;
  font-style: italic;
}
.highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .kv {
  color: #ff79c6;
  font-weight: bold;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .s1 {
  color: #f1fa8c;
}
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
  color: #bd93f9;
}
.highlight .nf, .highlight .fm {
  color: #50fa7b;
}
.highlight .nc, .highlight .nn {
  color: #8be9fd;
}
.highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm {
  color: #f8f8f2;
}
.highlight .o, .highlight .ow {
  color: #ff79c6;
}
.highlight .nb {
  color: #8be9fd;
}
.highlight .lineno {
  color: #6272a4;
  opacity: 0.5;
  user-select: none;
  margin-right: 1rem;
}

.code-block {
  position: relative;
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.code-block .code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: #252526;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.code-block .code-header .language-label {
  font-size: 0.75rem;
  font-family: "JetBrains Mono", "Courier New", monospace;
  text-transform: uppercase;
  opacity: 0.5;
}
.code-block .code-header .copy-button {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background-color: transparent;
  border: none;
  color: white;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.2s;
}
.code-block .code-header .copy-button:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
.code-block .code-header .copy-button.copied {
  color: #50fa7b;
}
.code-block .code-header .window-controls {
  display: flex;
  gap: 0.25rem;
}
.code-block .code-header .window-controls .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.code-block .code-header .window-controls .dot.red {
  background-color: #ff5f56;
}
.code-block .code-header .window-controls .dot.yellow {
  background-color: #ffbd2e;
}
.code-block .code-header .window-controls .dot.green {
  background-color: #27c93f;
}
.code-block pre {
  padding: 1.5rem;
  margin: 0;
  background-color: transparent;
  color: #f8f8f2;
}

.dark {
  background-color: #0a0a0a !important;
  color: #F5F5F7 !important;
}
.dark body {
  background-color: #0a0a0a !important;
  color: #F5F5F7 !important;
}
.dark main {
  color: #F5F5F7;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: white !important;
}
.dark p {
  color: #e0e0e0 !important;
}
.dark strong, .dark b {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.5) !important;
}
.dark em, .dark i {
  color: #f0f0f0 !important;
  font-style: italic;
}
.dark a {
  color: #4db5ff !important;
}
.dark a:hover {
  color: #80ccff !important;
}
.dark .text-gray-400 {
  color: #d0d0d0 !important;
}
.dark .text-gray-500 {
  color: #b8b8b8 !important;
}
.dark .text-gray-600 {
  color: #a0a0a0 !important;
}
.dark .dark\:text-gray-400 {
  color: #d0d0d0 !important;
}
.dark .dark\:text-gray-500 {
  color: #b8b8b8 !important;
}
.dark .dark\:text-gray-600 {
  color: #a0a0a0 !important;
}
.dark .bg-white {
  background-color: #0a0a0a;
}
.dark .bg-gray-50 {
  background-color: rgba(255, 255, 255, 0.05);
}
.dark .bg-gray-100 {
  background-color: rgba(255, 255, 255, 0.1);
}
.dark .border-gray-100 {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .border-gray-200 {
  border-color: rgba(255, 255, 255, 0.05);
}
.dark nav {
  background-color: rgba(15, 15, 17, 0.95);
  backdrop-filter: blur(10px);
}
.dark nav .nav-btn {
  color: #e0e0e0;
}
.dark nav .nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
}
.dark nav a {
  color: #e0e0e0;
}
.dark nav a:hover {
  color: white;
}
.dark .btn-primary {
  background: linear-gradient(135deg, #0A84FF, #0066CC) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3) !important;
}
.dark .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4) !important;
  transform: translateY(-1px);
}
.dark .btn-secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #e0e0e0 !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05) !important;
}
.dark .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1) !important;
}
.dark .category-btn {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #e0e0e0 !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}
.dark .category-btn:hover {
  border-color: white !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}
.dark .category-btn.active {
  background-color: white !important;
  color: black !important;
  border-color: white !important;
}
.dark .card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05) !important;
}
.dark .card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1), 0 0 20px rgba(74, 181, 255, 0.1) !important;
  transform: translateY(-2px);
}
.dark .post-item {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.dark .post-item h2 {
  color: white !important;
}
.dark .post-item h3 {
  color: white !important;
}
.dark .post-item p {
  color: #d8d8d8 !important;
}
.dark .post-item:hover h2 {
  color: #0A84FF !important;
}
.dark .tag {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)) !important;
  color: #e8e8e8 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.2s;
}
.dark .tag:hover {
  background: linear-gradient(135deg, rgba(74, 181, 255, 0.15), rgba(10, 132, 255, 0.1)) !important;
  color: white !important;
  border-color: rgba(74, 181, 255, 0.3) !important;
  box-shadow: 0 0 10px rgba(74, 181, 255, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
}
.dark code {
  background-color: rgba(255, 121, 198, 0.15) !important;
  color: #ff79c6 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 121, 198, 0.3) !important;
}
.dark pre {
  background: #050507 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8) !important;
  border-radius: 0.75rem !important;
  padding: 0 !important;
}
.dark pre code {
  background: transparent !important;
  color: #f8f8f2 !important;
  padding: 1.5rem !important;
  border: none !important;
  display: block !important;
  overflow-x: auto !important;
}
.dark .highlight {
  background: #050507 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8) !important;
  border-radius: 0.75rem !important;
  overflow: hidden !important;
}
.dark .highlight pre {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
}
.dark blockquote {
  background: #0a0a0c !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-left: 4px solid #3b82f6 !important;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  color: #d1d5db !important;
}
.dark blockquote p {
  color: #d1d5db !important;
  margin: 0;
  font-style: italic;
  opacity: 1;
}
.dark blockquote strong {
  color: #ffffff !important;
  font-weight: 700;
}
.dark blockquote * {
  color: #d1d5db !important;
}
.dark #searchModal .search-container {
  background-color: #1c1c1e;
  border-color: rgba(255, 255, 255, 0.1);
}
.dark #searchModal .search-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}
.dark #searchModal input {
  color: white;
}
.dark #searchModal input::placeholder {
  color: #666;
}
.dark #searchModal .search-result:hover {
  background-color: #0A84FF;
  color: white;
}
.dark #toast {
  background: linear-gradient(135deg, #1c1c1e, #242426) !important;
  color: #f0f0f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
}
.dark footer {
  border-top-color: rgba(255, 255, 255, 0.15);
  color: #a0a0a0 !important;
}
.dark .group:hover .group-hover\:text-blue {
  color: #0A84FF !important;
}
.dark .text-gray-100 {
  color: #f0f0f0 !important;
}
.dark .text-gray-200 {
  color: #e8e8e8 !important;
}
.dark .text-gray-300 {
  color: #e0e0e0 !important;
}
.dark .text-gray-700 {
  color: #888888 !important;
}
.dark .text-gray-800 {
  color: #606060 !important;
}
.dark .text-gray-900 {
  color: #404040 !important;
}
.dark .dark\:text-gray-100 {
  color: #f0f0f0 !important;
}
.dark .dark\:text-gray-200 {
  color: #e8e8e8 !important;
}
.dark .dark\:text-gray-300 {
  color: #e0e0e0 !important;
}
.dark .post-content {
  color: #e8e8e8 !important;
}
.dark .post-content h1, .dark .post-content h2, .dark .post-content h3, .dark .post-content h4, .dark .post-content h5, .dark .post-content h6 {
  color: white !important;
}
.dark .post-content p {
  color: #e8e8e8 !important;
}
.dark .post-content ul, .dark .post-content ol {
  color: #e8e8e8 !important;
}
.dark .post-content li {
  color: #e8e8e8 !important;
}
.dark .post-content a {
  color: #4db5ff !important;
}
.dark .post-content a:hover {
  color: #80ccff !important;
}
.dark .post-content blockquote {
  background: #0a0a0c !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-left: 4px solid #3b82f6 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0.75rem !important;
  color: #d1d5db !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}
.dark .post-content blockquote p, .dark .post-content blockquote * {
  color: #d1d5db !important;
  opacity: 1 !important;
}
.dark .post-content blockquote strong {
  color: #ffffff !important;
  font-weight: 700 !important;
}
.dark .post-content pre {
  background: #050507 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}
.dark .post-content pre code {
  background: transparent !important;
  color: #f8f8f2 !important;
}
.dark .post-content .highlight {
  background: #050507 !important;
}
.dark .post-content .highlight pre {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.dark .sun-icon {
  display: none;
}
.dark .moon-icon {
  display: block;
}
.dark .prose {
  color: #e8e8e8 !important;
}
.dark .prose h1, .dark .prose h2, .dark .prose h3, .dark .prose h4, .dark .prose h5, .dark .prose h6 {
  color: white !important;
  font-weight: 700;
}
.dark .prose p {
  color: #e8e8e8 !important;
  line-height: 1.7;
}
.dark .prose li {
  color: #e8e8e8 !important;
}
.dark .prose strong {
  color: white !important;
  font-weight: 600;
}
.dark .prose a {
  color: #4db5ff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dark .prose a:hover {
  color: #80ccff !important;
}
.dark .prose blockquote {
  background: #0a0a0c !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-left: 4px solid #3b82f6 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0.75rem !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  color: #d1d5db !important;
}
.dark .prose blockquote p {
  color: #d1d5db !important;
  font-style: italic;
  opacity: 1 !important;
}
.dark .prose blockquote strong {
  color: #ffffff !important;
  font-weight: 700 !important;
}
.dark .prose blockquote * {
  color: #d1d5db !important;
}
.dark .prose code {
  background-color: rgba(255, 121, 198, 0.15) !important;
  color: #ff79c6 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 121, 198, 0.3) !important;
}
.dark .prose pre {
  background: #050507 !important;
  color: #f8f8f2 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8) !important;
  border-radius: 0.75rem !important;
}
.dark .prose pre code {
  background: transparent !important;
  border: none !important;
  padding: 1.5rem !important;
  color: #f8f8f2 !important;
}

body:not(.dark) .sun-icon {
  display: block;
}
body:not(.dark) .moon-icon {
  display: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spotlight-enter {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}
.animate-fade-in {
  animation: fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
  animation: slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-spotlight-enter {
  animation: spotlight-enter 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.translate-x-0 {
  transform: translateX(0);
}

.-translate-x-1 {
  transform: translateX(-0.25rem);
}

.-translate-x-2 {
  transform: translateX(-0.5rem);
}

.translate-y-0 {
  transform: translateY(0);
}

.-translate-y-4 {
  transform: translateY(-1rem);
}

.translate-y-10 {
  transform: translateY(2.5rem);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.scale-95 {
  transform: scale(0.95);
}

.scale-100 {
  transform: scale(1);
}

.scale-105 {
  transform: scale(1.05);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:-translate-x-1:hover {
  transform: translateX(-0.25rem);
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:opacity-70:hover {
  opacity: 0.7;
}

.group:hover .group-hover\:translate-x-0 {
  transform: translateX(0);
}
.group:hover .group-hover\:-translate-x-1 {
  transform: translateX(-0.25rem);
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:text-blue {
  color: #0A84FF;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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