<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Error 404 Not Found | Palco</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: #1e1e2f;
            color: #fff;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }

        .container {
            position: relative;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .robot {
            position: relative;
            width: 150px;
            height: 200px;
            background: #5255de;
            border-radius: 10px;
            overflow: hidden;
            animation: float 3s infinite ease-in-out;
        }

        .robot::before, .robot::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            background: #fff;
            border-radius: 50%;
            top: 20px;
        }

        .robot::before {
            left: 30px;
        }

        .robot::after {
            right: 30px;
        }

        .robot .mouth {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 10px;
            background: #ff4747;
            border-radius: 5px;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .button {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 1.2rem;
            color: #fff;
            background: #ff4747;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
        }

        .button:hover {
            background: #ff7575;
        }

        .logo {
            width: 100px;
            margin-bottom: 20px;
        }
    </style>
</head>
<body>
    <div class="container">
        <img src="https://palcoticketing.com/logos/logo_isotipo.svg" alt="Palco Logo" class="logo">
        <div class="robot">
            <div class="mouth"></div>
        </div>
        <h1>404</h1>
        <p>Oops! The page you're looking for doesn't exist.</p>
        <a href="javascript:void(0);" class="button" onclick="window.history.back();">Go Back</a>
    </div>
    <script>
        // JavaScript to add a little interactivity
        const robot = document.querySelector('.robot');
        document.addEventListener('mousemove', (e) => {
            const rect = robot.getBoundingClientRect();
            const x = e.clientX - (rect.left + rect.width / 2);
            const y = e.clientY - (rect.top + rect.height / 2);
            robot.style.transform = `translateY(-20px) rotateX(${y / 20}deg) rotateY(${x / 20}deg)`;
        });

        document.addEventListener('mouseout', () => {
            robot.style.transform = 'translateY(-20px)';
        });
    </script>
</body>
</html>

