<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>parahat.info</title>
    <style>
        body { margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; font-family: sans-serif; background: #f4f4f4; }
        .btn { width: 80px; height: 80px; cursor: pointer; border: none; margin: 15px; border-radius: 8px; transition: transform 0.1s; }
        .btn:active { transform: scale(0.95); }
        .game-container { display: flex; flex-wrap: wrap; justify-content: center; }
        .green-text { color: green; }
    </style>
</head>
<body>
    <h2>сайт <span class="green-text">parahat.info</span> приветствует Вас</h2>
    <p>Нажмите <span class="green-text"><b>зелёную</b></span> кнопку:</p>
    <div class="game-container">
                    <button class="btn" style="background-color: blue;" onclick="check('blue')"></button>
                    <button class="btn" style="background-color: red;" onclick="check('red')"></button>
                    <button class="btn" style="background-color: green;" onclick="check('green')"></button>
            </div>

    <script>
    function check(color) {
        if (color === 'green') {
            document.cookie = "parahat_access=1; max-age=31536000; path=/";
            location.reload();
        } else {
            document.body.innerHTML = "<h1 class='green-text'>Вы дальтоник, сочувствуем и до свидания!</h1>";
            setTimeout(() => { window.location.href = 'https://www.google.com'; }, 3000);
        }
    }
    </script>
</body>
</html>
