<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Not Found | Your Brand</title>
    <style>
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f8f9fa;
            color: #2d3436;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .container {
            max-width: 600px;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        /* Visual Elements */
        .error-code {
            font-size: 5rem;
            font-weight: 700;
            color: #e63946;
            margin-bottom: 1rem;
        }

        .error-icon {
            width: 120px;
            height: 120px;
            margin: 2rem auto;
            opacity: 0.9;
        }

        /* Content Styling */
        h1 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: #1d3557;
        }

        p {
            margin-bottom: 2rem;
            color: #6c757d;
        }

        /* Navigation */
        .nav-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-link {
            text-decoration: none;
            color: #457b9d;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            transition: all 0.2s ease;
            border: 2px solid #457b9d;
        }

        .nav-link:hover {
            background: #457b9d;
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .container {
                padding: 2rem 1.5rem;
            }
            
            .error-code {
                font-size: 4rem;
            }

            .error-icon {
                width: 80px;
                height: 80px;
            }
        }
    </style>
</head>
<body>
<script src="/static/js/dragon.min2.js"></script>
<div class="official_mywebsite"></div>
    <div class="container">
        <!-- Replace with your SVG/logo -->
        <svg class="error-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
            <path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z" />
        </svg>

        <div class="error-code">404</div>
        <h1>Page Not Found</h1>
        <p>The requested page could not be located. It may have been moved or deleted.</p>
        
        <div class="nav-links">
            <a href="/" class="nav-link">Return Home</a>
            <a href="/contact" class="nav-link">Contact Support</a>
        </div>
    </div>
</body>
</html>