body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 50%, #1e3a5f 100%);
    color: #dcdcdc;
    line-height: 1.6;
    padding: 0 2rem;
    min-height: 100vh;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid #333;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
  }
  
  nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    display: inline-block;
    vertical-align: middle;
  }
  
  .socials a {
    margin-left: 1rem;
    color: #999;
    font-size: 1.2rem;
    text-decoration: none;
  }
  
  .intro {
    max-width: 800px;
    margin: 2rem 0;
  }
  
  .intro h1 {
    font-size: 2.5rem;
    color: #fff;
  }
  
  .highlight {
    color: #fef200;
    font-weight: 600;
  }
  
  .accent {
    color: #36d1dc;
  }
  
  .content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .posts {
    flex: 2;
  }
  
  .posts h2 {
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  
  .posts article h3 {
    color: #fff;
    margin: 1rem 0 0.5rem;
  }
  
  .posts article p {
    color: #bbb;
  }
  
  .date {
    font-size: 0.8rem;
    color: #fef200;
  }
  
  .featured {
    flex: 1;
  }
  
  .featured h2 {
    font-size: 1rem;
    font-weight: bold;
    color: #999;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  
  .feature-item h4 {
    margin: 1rem 0 0.3rem;
    color: #fff;
  }
  
  .feature-item p {
    color: #aaa;
    font-size: 0.9rem;
  }
  
  /* Code block styling - unified with JDBCInjection first snippet */
  pre {
    background-color: #1e1f22;
    color: #bcbec4;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
    font-family: 'JetBrains Mono', Consolas, 'Courier New', monospace;
    font-size: 0.95rem;
  }
  
  /* Ensure nested code inside pre inherits text color and no extra background */
  pre code {
    color: inherit;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
  }
  
  /* Inline code (not in pre) */
  code {
    color: #bcbec4;
    font-family: 'JetBrains Mono', Consolas, 'Courier New', monospace;
    font-size: 0.95rem;
  }
  
  :where(code):not(pre code) {
    background-color: #1e2329;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0.15rem 0.35rem;
  }