/* CRT Terminal Theme */
body {
  background-color: #0a0a0a; /* Deep black */
  color: #00ff41; /* Classic Matrix/Terminal Green */
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  text-transform: lowercase; /* Optional: gives a more 'system' feel */
}

/* Links that look like terminal commands */
a {
  color: #00ff41;
  text-decoration: none;
  border-bottom: 1px dashed #00ff41;
}

a:hover {
  background-color: #00ff41;
  color: #0a0a0a;
  box-shadow: 0 0 10px #00ff41;
}

/* Add a slight 'glow' to headers */
h1, h2, h3 {
  color: #00ff41;
  text-shadow: 0 0 5px #00ff41;
  border-bottom: 1px solid #00ff41;
  padding-bottom: 10px;
}

/* List styling */
ul.posts {
  list-style: none;
  padding-left: 0;
}

ul.posts li::before {
  content: "> "; /* Terminal prompt symbol */
}

/* The Scanline Effect - This makes it look like a real CRT screen */
body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}