/* DOS VGA Font Import from CDN */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

/* Apply DOS aesthetics */
body {
  font-family: 'Courier Prime', 'Courier New', 'Lucida Console', monospace;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* Monospace elements */
code, pre, tt {
  font-family: 'Courier Prime', 'Courier New', 'Lucida Console', monospace;
}

/* Scanline effect (optional subtle effect) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 999;
}
