Most spinning wheels on the internet are fake random. They use a pseudo-random number generator — a deterministic algorithm seeded by your system clock. Given the same seed, it produces the same sequence every time. It looks random. It is not.
This wheel is different. Every spin fetches a number from a quantum physics experiment happening right now at Australian National University. The outcome is not just hard to predict — it is physically impossible to predict, even in principle.
The randomness comes from measuring quantum vacuum fluctuations— the irreducible noise that exists in empty space itself. Even a perfect vacuum is not truly empty. Heisenberg's uncertainty principle forbids it. The electromagnetic field is constantly fluctuating at the quantum level, and those fluctuations cannot be controlled, predicted, or reproduced.
ANU's hardware fires a laser into a beam splitter and measures the difference in photon counts between the two output paths. That difference is driven entirely by quantum noise. The result is a stream of genuinely non-deterministic numbers, published as a free API — the ANU Quantum Random Number Generator.
The quantum number is fetched before the wheel starts spinning. The animation is purely cosmetic — the winner is already decided the moment the number arrives.
After each spin, the wheel shows the raw quantum random number and how it mapped to a winner. For example:
ANU returned 47834. With 4 choices, 47834 % 4 = 2, so the wheel lands on the third choice (index 2). You can check the math yourself. Nothing is hidden.
If the ANU API is unreachable, the wheel falls back to crypto.getRandomValues()— the browser's cryptographically secure PRNG. This is the same entropy source used by your password manager and every TLS handshake your browser makes. It is not quantum, but it is not a clock seed either.
The status dot in the top bar tells you which source was used. Cyan = quantum. Magenta = fallback. You always know.