#q-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: -1;
    overflow: hidden;
}

.q-instance {
    position: absolute;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.q-instance:hover {
    opacity: 1;
    transform: scale(1.1);
}

.q-instance.scatter {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mouse event overlay for passing events through content */
#mouse-event-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 998; /* Above content but below interactive elements */
    pointer-events: none; /* Normally invisible to mouse */
}

/* When hovering over non-interactive areas, enable the overlay */
body:not(.interacting-with-content) #mouse-event-overlay {
    pointer-events: auto;
}

/* Ensure main content appears above background */
#main, .fusion-body, #wrapper {
    position: relative;
    z-index: 1;
}

/* Make sure interactive elements have higher z-index */
a, button, input, textarea, select, .fusion-button, 
.fusion-menu, [onclick], [onmouseover], .clickable {
    position: relative;
    z-index: 999;
}