.video-background::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    pointer-events: none; /* permite clicar nos elementos acima */
    
    /* overlay de linhas horizontais mais grossas e pretas */
    background:
      repeating-linear-gradient(
        to bottom,
        black 0px,
        black 3px,       /* altura da linha preta */
        transparent 3px,
        transparent 5px  /* espaçamento entre linhas */
      );
    z-index: 2;
}