<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fundraiser Not Found | Pretzel Boys</title>
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-stone-50 min-h-screen text-stone-900 p-6 flex items-center justify-center">

    <div class="max-w-md w-full bg-white p-8 rounded-2xl shadow-xl border border-stone-100 text-center">
        <div class="text-5xl mb-6 animate-bounce">🔍🥨</div>

        <h1 class="text-3xl font-black text-stone-900 mb-3">
            Fundraiser Not Found
        </h1>

        <p class="text-stone-600 text-sm mb-8 leading-relaxed">
            We couldn't find an active campaign at this web address. The link might have a typo, or this group's delicious pretzel fundraiser may have already wrapped up!
        </p>

        <div class="space-y-3">
            <a href="/" 
               class="block w-full py-3 px-4 bg-amber-500 hover:bg-amber-600 text-white font-extrabold rounded-xl shadow-md hover:shadow-lg transition duration-150 transform hover:-translate-y-0.5">
                Visit Main Website
            </a>
            
            <a href="/#start-fundraiser" 
               class="block w-full py-3 px-4 bg-stone-100 hover:bg-stone-200 text-stone-800 font-bold rounded-xl transition">
                Start a New Fundraiser
            </a>
        </div>

        <p class="text-stone-400 text-xs mt-8">
            Have questions? Contact your local Pretzel Boys shop to verify campaign details.
        </p>
    </div>

</body>
</html>