The game is played on a 3x3 grid of buttons that are either on or off. By pushing the buttons, you can toggle whether they are on or off. The object is to form a "magic square," which is achieved when all but the center button in the grid are "on."
The catch is that pushing a button affects the state of other buttons. If you push a button on a side, not only will that button's state be toggled, but the two other buttons on that side will be toggled as well. If you push a button in a corner, it and the three buttons adjacent to it (the two side buttons next to it along with the center button) will be toggled as well. If you push the center button, the center button and all four side buttons will be toggled.
The game will start with a random button configuration. Some may be trivial to solve, while others may be harder.
Source: The Game Website.