in mouse.js [68:72]
function updateTransform() {
// Apply scale uniformly in both directions, centered at cursor
document.body.style.transform = `translate(${translateX}px, ${translateY}px) scale(${scale})`;
// Here, we don't set transformOrigin because it's now based on cursor position dynamically
}