userAgent

<script>
(function() {
    const isTouchDevice = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0);

    const isMobileUA = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);

    if (!isTouchDevice && !isMobileUA) {
        const pcGames = [
            '/games/orbit/',
            '/games/spaceman/',
            '/games/drift/',
            '/games/fruit-shoot/',
            '/games/breakout/'
        ];

        const randomGame = pcGames[Math.floor(Math.random() * pcGames.length)];
        window.location.href = randomGame;
    }
})();
</script>