<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>GoJapan.AI</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            margin: 0;

            padding: 0;

            background-color: #f8f8f8;

        }

        header {

            background-color: #ff4b4b;

            color: white;

            padding: 20px;

            font-size: 24px;

        }

        .container {

            margin: 50px auto;

            padding: 20px;

            max-width: 600px;

            background: white;

            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

            border-radius: 10px;

        }

        button {

            background-color: #ff4b4b;

            color: white;

            border: none;

            padding: 15px 20px;

            font-size: 16px;

            cursor: pointer;

            border-radius: 5px;

        }

        button:hover {

            background-color: #d93b3b;

        }

        .footer {

            margin-top: 20px;

            font-size: 14px;

            color: gray;

        }

    </style>

    <script>

        function redirectToX() {

            alert('The system is under construction. Please check updates on our X page!');

            window.location.href = 'https://x.com/gojapanai';

        }

    </script>

</head>

<body>

    <header>GoJapan.AI</header>

    <div class="container">

        <h2>Your AI Assistant for Japan</h2>

        <p>Get instant answers about travel, work, and life in Japan!</p>

        <button onclick="redirectToX()">Ask AI</button>

    </div>

    <div class="footer">Powered by <a href="https://desim.tech" target="_blank">DeSiM.tech</a></div>

</body>

</html>