/* Base layout */
body {
  background-color: #121212; /* true dark */
  color: #e0e0e0;           /* neutral text */
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.7;
  margin: 0 auto;
  padding: 20px;
  max-width: 800px;
}

/* Typography */
b {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  color: #00ffc8; /* neon cyan-green accent */
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 0 6px rgba(0, 255, 200, 0.4);
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }
h4, h5, h6 { font-size: 1.2em; }

/* Links */
a {
  color: #00bfff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: #00ffc8;
  border-color: #00ffc8;
}

/* Lists */
ul, ol {
  padding-left: 30px;
}

/* Code */
code {
  background-color: #1e1e1e;
  border-radius: 6px;
  color: #ffb347; /* warm accent */
  padding: 0.3em 0.5em;
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 0.95em;
}

pre {
  background-color: #1e1e1e;
  border-radius: 6px;
  padding: 1em;
  overflow: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

pre code {
  padding: 0;
  color: #ffb347;
}

/* Blockquotes */
blockquote {
  background: #1a1a1a;
  border-left: 4px solid #00bfff;
  padding: 1em;
  margin: 1.5em 0;
  font-style: italic;
  color: #cfcfcf;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #1e1e1e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.2s ease;
}

img:hover {
  transform: scale(1.02);
}

/* Scrollbars */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #121212; }
::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
  border: 2px solid #121212;
}
::-webkit-scrollbar-thumb:hover { background-color: #555; }

* {
  scrollbar-width: thin;
  scrollbar-color: #333 #121212;
}
