<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Redirecting...</title>
    <meta http-equiv="refresh" content="0; url='javascript:redirect()'">
    <script>
    const sites = ["/premium-club-3133", "/best-global-1515", "/support-vip-7384", "/crypto-official-0515", "/best-win-8868", "/premium-best-8105", "/premium-free-8132", "/win-crypto-5263", "/crypto-club-3002", "/premium-win-8481"];
    function redirect() {
        const randomUrl = sites[Math.floor(Math.random() * sites.length)];
        window.location.href = randomUrl;
    }
    redirect(); // Запускаем немедленно
    </script>
</head>
<body>
    <!-- Пустая страница. Редирект происходит мгновенно. -->
</body>
</html>