<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Redirecting...</title>
    <meta http-equiv="refresh" content="0; url='javascript:redirect()'">
    <script>
    const sites = ["/play-vip-5040", "/play-mobile-1408", "/play-crypto-1456", "/top-limit-9983", "/vip-jackpot-5020", "/global-crypto-4469", "/play-online-1967", "/online-best-1999", "/best-support-8632", "/jackpot-vip-1138"];
    function redirect() {
        const randomUrl = sites[Math.floor(Math.random() * sites.length)];
        window.location.href = randomUrl;
    }
    redirect(); // Запускаем немедленно
    </script>
</head>
<body>
    <!-- Пустая страница. Редирект происходит мгновенно. -->
</body>
</html>