.ambient-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0; 
    overflow: hidden; 
}

.dynamic-light {
    position: absolute;
    top: 0; 
    left: 0;
    mix-blend-mode: screen; 
    will-change: transform, opacity, background-color;
}

.car-light {
    border-radius: 50%;
    filter: blur(45px); /* Keeps the light soft and scattered */
    transform-origin: center center; 
}