/* Ensure the background canvas is fixed and visible */
#ai-bg-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
    pointer-events: none;
    background: #000; /* Dark fallback */
}

/* 
   We must make the theme's default background transparent. 
   These selectors cover most WordPress themes.
*/
body, 
.site, 
#page, 
.site-content, 
.main-container,
#content,
header,
footer {
    background-color: transparent !important;
}

canvas {
    display: block;
}

#ai-bg-canvas-container {
    pointer-events: auto; /* Change this to AUTO if you want users to interact with the background */
}