body {
    background-color: #ffffff;
    color: #29323d;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  b {
    font-weight: 900;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #29323d;
    margin-top: 24px;
    margin-bottom: 16px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  h2 {
    font-size: 1.75em;
  }
  
  h3 {
    font-size: 1.5em;
  }
  
  h4, h5, h6 {
    font-size: 1.2em;
  }
  
  a {
    color: #3838ca;
    text-decoration: none;
  }
  
  a:hover {
    color: #8195f8;
  }
  
  ul, ol {
    padding-left: 30px;
  }
  
  pre {
    background-color: #282c34; /* Dark background for code */
    color: #dadde3; /* Light text color for contrast */
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto; /* Allows horizontal scrolling for long lines */
    font-family: 'Consolas', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace; /* Monospaced font */
    line-height: 1.5;
    white-space: pre-wrap; /* Ensures lines wrap if they are too long */
    word-break: break-word; /* Prevents overflow with very long words */
  }

  /* Styling for the code within the preformatted block */
  pre code {
    display: block; /* Ensures code takes up full width of pre */
    padding: 0; /* Remove default padding from code element */
    background-color: transparent; /* No extra background for code */
    color: inherit; /* Inherit text color from pre */
    font-size: 0.9em; /* Slightly smaller font size for code */
  }

  /* Optional: Styling for inline code snippets */
  code {
    background-color: #e0e0e0; /* Light background for inline code */
    color: #5f5f6a; /* Distinct color for inline code */
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Consolas', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
  }
  
  blockquote {
    font-family: 'Georgia', serif; /* A classic, readable serif font */
    font-size: 1em; /* Slightly larger text for emphasis */
    line-height: 1;
    color: #333; /* Dark grey text for contrast */
    margin: 2em 0; /* Vertical spacing above and below */
    padding: 1.25em 2em; /* Inner padding for content */
    border-left: 4px solid #8195f8; /* A prominent left border for visual distinction */
    background-color: #eef3ff; /* Light background color */
    position: relative; /* For potential pseudo-elements or absolute positioning */
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;

  }
  
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #1f1c25;
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #3c3c42;
    border-radius: 6px;
    border: 3px solid #1f1c25;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #5a5466;
  }
  
  * {
    scrollbar-width: thin;
    scrollbar-color: #b9bac0 #ffffff;
  }
  
  ::-webkit-scrollbar-corner {
    background: #1f1c25;
  }

  .lowbar {
    position: static; /* stays visible near bottom when scrolling past footer area */
    bottom: 0;
    background: #6371f1;
    color: #fff;
    font-size: 14px;
  }

  .lowbar-inner {
    max-width: max-content;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    gap: 12px;
    align-items: left;
    justify-content: space-between;
  }
  .lowbar-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
    font-weight: bold;
  }
  .lowbar-links a:hover { text-decoration: underline; }  
  
  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #6371f1;
    color: #fff;
  } 

  .navbar h1 {
    color: #fff
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  .nav-links a:hover { text-decoration: underline; }

  .brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
    white-space: nowrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;    
  }
  
  .brand h1 {
    margin: 0;
    font-size: 2.5em;
    color: #ffffff;
  }
  .brand .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #5f5f6a;
  }
  .brand .tag {
    background: #e0e9ff;
    padding: 2px 8px;
    border-radius: 6px;
  }

  .social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
  }

  .social a:hover {
    color: #8195f8;
  }
