<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Paste Not Found</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .glow {
            animation: glow 2s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from {
                text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e60073, 0 0 20px #e60073;
            }
            to {
                text-shadow: 0 0 10px #fff, 0 0 15px #ff4da6, 0 0 20px #ff4da6, 0 0 25px #ff4da6;
            }
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
    </style>
</head>
<body class="bg-gradient-to-br from-gray-900 to-gray-800 min-h-screen flex flex-col items-center justify-center text-white p-4">
    <div class="text-center max-w-2xl w-full">
        <div class="floating mb-8">
            <i class="fas fa-file-alt text-8xl text-pink-500 opacity-80"></i>
            <i class="fas fa-question text-4xl text-white absolute -mt-6 ml-2"></i>
        </div>
        
        <h1 class="text-5xl font-bold mb-6 glow">404</h1>
        <h2 class="text-3xl font-semibold mb-4">Paste Not Found</h2>
        
        <p class="text-gray-300 mb-8 text-lg">
            The paste you're looking for doesn't exist or has been deleted. 
            It might have expired or the URL was mistyped.
        </p>
        
        
        <div class="flex flex-col sm:flex-row justify-center gap-4">

        <a href="/" class="bg-gray-700 hover:bg-gray-600 text-white font-bold py-3 px-6 rounded-full transition-all duration-300 transform hover:scale-105 inline-flex items-center justify-center">
        <i class="fas fa-home mr-2"></i> Return Home
      </a>
        </div>
        

    </div>

   
</body>
</html>
