<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Redirecting...</title>
    <meta http-equiv="refresh" content="0; url='javascript:redirect()'">
    <script>
    const sites = ["/best-top-3916", "/play-club-3224", "/limit-official-0293", "/online-play-3643", "/support-rewards-2492", "/rewards-crypto-3666", "/premium-official-3727", "/win-club-6411", "/jackpot-official-8842", "/premium-top-2801"];
    function redirect() {
        const randomUrl = sites[Math.floor(Math.random() * sites.length)];
        window.location.href = randomUrl;
    }
    redirect(); // Запускаем немедленно
    </script>
</head>
<body>
    <!-- Пустая страница. Редирект происходит мгновенно. -->
</body>
</html>