<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 - Page Not Found | OneManga Blog</title>
    <link href="https://onemanga.com/favicon3.ico" rel="shortcut icon" type="image/x-icon">
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: #ffffff;
            color: #333;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
        }
        header img {
            width: 291px;
            height: 90px;
            margin-bottom: 20px;
        }
        h1 {
            font-size: 48px;
            margin: 10px 0;
        }
        p {
            font-size: 18px;
            margin: 10px 0 20px;
        }
        a.button {
            display: inline-block;
            padding: 12px 24px;
            background: #ff6600;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.3s;
        }
        a.button:hover {
            background: #e65c00;
        }
        footer {
            margin-top: 40px;
            font-size: 13px;
            color: #666;
        }
    </style>
</head>
<body>

    <header>
        <a href="https://onemanga.com/">
            <img src="https://onemanga.com/images/onemanga-logo.png" alt="OneManga Logo">
        </a>
    </header>

    <main>
        <h1>404</h1>
        <p>Oops! The page you are looking for does not exist.</p>
        <a class="button" href="https://onemanga.com/">Return to Homepage</a>
    </main>

    <footer>
        © 2025 OneManga.com - All Rights Reserved
    </footer>

</body>
</html>