<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Zora | Link Not Found | 404</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 3rem;
            flex-shrink: 0;
        }

        .logo {
            height: 60px; /* Increased logo size */
            width: auto;
        }

        .auth-links {
            display: flex;
            gap: 1.5rem; /* Reduced gap */
        }

        .auth-link {
            color: #1E3A8A;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem; /* Smaller auth links */
        }

        .error-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            overflow: hidden;
        }

        .error-image {
            width: 350px; /* Larger image */
            height: auto;
            margin-bottom: 2rem;
            max-height: 40vh;
            object-fit: contain;
        }

        h1 {
            color: #e74c3c;
            margin-bottom: 1.5rem;
            font-size: 3.5rem; /* Even larger heading */
            font-weight: 700;
            line-height: 1.1;
            max-width: 90vw;
        }

        p {
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 1.2rem;
            max-width: 600px;
        }

        .home-link {
            color: #3498db;
            font-weight: 500;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .header {
                padding: 1.5rem;
            }
            .logo {
                height: 50px;
            }
            h1 {
                font-size: 2.5rem;
            }
            .error-image {
                width: 280px;
            }
        }
    </style>
</head>
<body>
<header class="header">
    <img src="/images/zora-logo.png" alt="Zora Logo" class="logo">
    <div class="auth-links">
        <a href="https://zora-web-app-dvg4a8abarcqh4d8.canadacentral-01.azurewebsites.net/" class="auth-link">Log In</a>
        <a href="https://zora-web-app-dvg4a8abarcqh4d8.canadacentral-01.azurewebsites.net/" class="auth-link">Sign Up</a>
    </div>
</header>

<main class="error-content">
    <img src="/images/not-found.png" alt="Error" class="error-image">
    <h1>Something's wrong here.</h1>
    <p>
        This is a 404 error, which means you've clicked on a bad link or entered an invalid URL.
        Maybe what you are looking for can be found at <a href="https://app.livebit.link" class="home-link">
        Livebit.link</a>.
    </p>
    <p>P.S. Zora links are case sensitive.</p>
</main>
</body>
</html>