/* The Old Monitor Effect */
body::before {
  content: " ";
  display: block;
  position: absolute;
  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: 999;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none; /* Lets you click through the overlay */
}

/* The Subtle Flicker */
@keyframes flicker {
  0% { opacity: 0.97; }
  5% { opacity: 0.95; }
  10% { opacity: 0.9; }
  15% { opacity: 0.95; }
  100% { opacity: 0.98; }
}

body {
  animation: flicker 0.15s infinite;
  background-color: #008080; /* Classic Win95 Teal */
  font-family: 'Courier New', Courier, monospace;
  overflow: hidden; /* No scrolling on the main desktop */
}
