<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta http-equiv="refresh" content="60; url=https://portal.euroasian.group">
    <title>Redirection...</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f5f5f5;
        }
        .container {
            text-align: center;
            padding: 40px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .title {
            font-size: 24px;
            color: #333;
            margin-bottom: 30px;
        }
        .countdown {
            font-size: 48px;
            font-weight: bold;
            color: #0066cc;
            margin: 20px 0;
        }
        .message {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
        }
        .link {
            color: #0066cc;
            text-decoration: none;
        }
        .link:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="title">Текущий редмайн больше не функционирует, задачи теперь нужно ставить на портале ГК https://portal.euroasian.group/ </div>
        <div class="countdown" id="countdown">60</div>
        <div class="message">seconds</div>
        <div class="message">
            Или нажмите <a href="https://portal.euroasian.group/" class="link">сюда для перехода</a>
        </div>
    </div>

    <script>
        let seconds = 60;
        const countdownElement = document.getElementById("countdown");
        
        function updateCountdown() {
            if (seconds > 0) {
                countdownElement.textContent = seconds;
                seconds--;
                setTimeout(updateCountdown, 1000);
            }
        }
        
        // Start the countdown when page loads
        updateCountdown();
    </script>
</body>
</html>