/* Matrix Background Effect - Alien Binary Code (The Green Code) */
/* Disabled by default. It activates only when JS marks the page as green-code-active. */

body::before,
#matrix-bg-canvas {
  content: none;
  display: none;
}

body.green-code-active #video-bg-container {
  display: none !important;
}

body.green-code-active::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

body.green-code-active #matrix-bg-canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
