@font-face {
  font-family: "PxPlus IBM VGA9";
  src: url("https://cdn.jsdelivr.net/gh/rewtnull/PxPlus_IBM_VGA9@master/PxPlus_IBM_VGA9.ttf");
}

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #33ff33;
  font-family: "PxPlus IBM VGA9", monospace;
  font-size: 16px;
  line-height: 1.2;
}

.screen {
  padding: 24px;
  max-width: 900px;
}

/* CRT glow */
body {
  text-shadow: 0 0 6px #33ff33;
}

/* Scanlines */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(255,255,255,0.02) 50%,
    rgba(0,0,0,0.1) 50%
  );
  background-size: 100% 2px;
  pointer-events: none;
}

/* Slight screen flicker */
@keyframes flicker {
  0% { opacity: 0.97; }
  100% { opacity: 1; }
}

body {
  animation: flicker 0.1s infinite alternate;
}
