/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: #111116; 
  color: #00ff66; 
  font-family: 'Courier New', Courier, monospace; 
  overflow-x: hidden;
  position: relative;
  
  animation: vcr-flicker 0.15s infinite;
}


.vcr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  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)
  );
  background-size: 100% 4px, 6px 100%;
  z-index: 9999; 
  pointer-events: none; 
}


.vcr-hud {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  top: 20px;
  left: 20px;
  text-shadow: 2px 0 10px rgba(0, 255, 102, 0.8);
  animation: vcr-blink 1s infinite steps(2); 
}




@keyframes vcr-flicker {
  0% { opacity: 0.99; }
  50% { opacity: 1; }
  100% { opacity: 0.99; }
}


@keyframes vcr-blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}