/* Ensure the canvas covers the entire screen */
body {
    position: relative; /* Ensure canvas positioning works with the rest of the page */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: none !important; /* Disable background color overrides */
}

canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important; /* Ensure the canvas is above any background but below content */
    pointer-events: none !important; /* Prevent interaction with the canvas */
    width: 100% !important; /* Ensure full width */
    height: 100% !important; /* Ensure full height */
    background: none !important; /* Ensure no conflicting backgrounds */
}
