body {

  background: #000;

  color: #0f0;

  font-family: 'Courier New', monospace;

  margin: 0;

  padding: 0;

  overflow: hidden;

}


#terminal {

  padding: 20px;

  white-space: pre;

  font-size: 18px;

  line-height: 1.5;

  text-shadow: 0 0 5px #0f0;

  font-weight: bold;

}


body::before {

  content: "";

  position: fixed;

  top: 0; left: 0;

  width: 100%; height: 100%;

  background: repeating-linear-gradient(0deg, rgba(0,255,0,0.03), rgba(0,255,0,0.03) 1px, transparent 1px, transparent 2px);

  pointer-events: none;

  z-index: 10;

}


@keyframes blink {

  0%, 100% { opacity: 1; }

  50% { opacity: 0; }

}


@media (prefers-reduced-motion: reduce) {

  body::before {

    background: none !important;

  }

}