.tsgw-bg-effect {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.tsgw-bg-effect .tsgw-bg-line {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.tsgw-bg-effect .tsgw-bg-line::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(
        to bottom,
        rgba(131, 131, 131, 0.1) 0%,
        rgb(243 78 58) 75%,
        rgba(131, 131, 131, 0.1) 100%
    );
    animation: tsgw-line-run 5s infinite;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

/* Line Positions */
.tsgw-bg-effect .tsgw-bg-line:nth-child(1) { left: 5%; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(2) { left: 25%; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(3) { left: 50%; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(4) { left: 75%; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(5) { left: 95%; }

/* Delays */
.tsgw-bg-effect .tsgw-bg-line:nth-child(1)::after { animation-delay: 0.05s; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(2)::after { animation-delay: 0.15s; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(3)::after { animation-delay: 0.25s; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(4)::after { animation-delay: 0.35s; }
.tsgw-bg-effect .tsgw-bg-line:nth-child(5)::after { animation-delay: 0.45s; }

@keyframes tsgw-line-run {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
