*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --bg: #ffffff;
    --text: #1c1c1c;
    --muted: #6b6b6b;
    --border: #e5e5e5;
    --code-bg: #f5f5f5;
    --code-border: #e0e0e0;
    --link: #0066cc;
  }
 
  html { font-size: 18px; }
 
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Lora', Georgia, serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }
 
  header {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .site-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
  }
  .site-name:hover { color: var(--link); }
 
  header nav { display: flex; gap: 1.4rem; }
  header nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
  }
  header nav a:hover { color: var(--text); }
 
  article {
    max-width: 680px;
    margin: 3.5rem auto 5rem;
    padding: 0 1.5rem;
  }
 
  .post-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
  }
  .post-meta a { color: var(--muted); text-decoration: none; }
  .post-meta a:hover { color: var(--text); }
 
  h1 {
    font-family: 'Lora', serif;
    font-size: 1.95rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
  }
 
  .subtitle {
    font-size: 1rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }
 
  p { margin-bottom: 1.25rem; }
 
  h2 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2.2rem 0 0.7rem;
  }
 
  a {
    color: var(--link);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }
  a:hover { text-decoration: none; }
 
  code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78em;
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 3px;
    padding: 0.1em 0.38em;
    color: #c0392b;
  }
 
  pre {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    overflow-x: auto;
    margin: 1.3rem 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.76rem;
    line-height: 1.65;
    color: #2c2c2c;
  }
  pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
    border-radius: 0;
  }
 
  .kw { color: #7c3aed; }
  .fn { color: #1d4ed8; }
  .st { color: #15803d; }
  .cm { color: #9ca3af; font-style: italic; }
  .ty { color: #0f766e; }
 
  blockquote {
    border-left: 3px solid var(--border);
    padding: 0.1rem 1.1rem;
    color: var(--muted);
    margin: 1.5rem 0;
    font-style: italic;
  }
 
  ul, ol { padding-left: 1.4rem; margin-bottom: 1.25rem; }
  li { margin-bottom: 0.3rem; }
 
  hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
  }
 
  footer {
    padding: 1.3rem 1.5rem;
    border-top: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
  }

  .social-link{
    color:#a8a8a8;
    text-decoration:none;
    transition:all 0.25s ease;
  }

  .social-link:hover{
    color:rgb(10, 10, 10);
    transform:translateY(-2px);
  }

  .image-box{
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: 4px;
  padding: 0.7rem;
  margin: 1.3rem 0;
  overflow: hidden;
}

.image-box img{
  width: 100%;
  display: block;
  border-radius: 3px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.image-box img:hover{
  transform: scale(1.02);
  opacity: 0.92;
}