<?php 
http_response_code(404);
require_once 'header.php'; 
?>

<main class="flex-grow flex items-center justify-center min-h-[70vh] text-center px-4">
    <div>
        <h1 class="text-9xl font-extrabold text-gray-200 dark:text-gray-800">404</h1>
        <p class="text-2xl font-bold text-gray-800 dark:text-white mt-4">Oops! Page not found.</p>
        <p class="text-gray-500 dark:text-gray-400 mt-2">The video or page you are looking for might have been removed or deleted.</p>
        
        <a href="<?php echo BASE_URL; ?>" class="mt-8 inline-block px-8 py-3 bg-red-600 hover:bg-red-700 text-white font-bold rounded-full transition shadow-lg shadow-red-600/30">
            Go Back Home
        </a>
    </div>
</main>

<?php require_once 'footer.php'; ?>