/* ===== Base Styles ===== */
:root {
  --neon-green: #39ff14;  /* Classic neon green */
  --dark-bg: #0a0a0a;     /* Deeper dark background */
  --text-light: #e0e0e0;  /* Soft off-white for text */
  --accent-purple: #b026ff; /* Optional purple accent */
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; /* Modern font stack */
  line-height: 1.6;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Typography ===== */
h1, h2, h3 {
  color: var(--neon-green);
  font-weight: 600; /* Semi-bold */
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}

/* Smaller header font size */
h1 {
  font-size: 2rem; /* Reduced from default 2.5-3rem */
  border-bottom: 1px solid var(--neon-green);
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
}

/* ===== Links ===== */
a {
  color: var(--neon-green);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px var(--neon-green); /* Glow effect */
}

/* ===== Special Effects ===== */
.post {
  border-left: 3px solid var(--neon-green);
  padding-left: 1rem;
  transition: transform 0.2s ease;
}

.post:hover {
  transform: translateX(5px);
}

/* ===== Footer ===== */
footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}
