<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>服务器出错 - 500</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css">
    <style>
        body {
            background: linear-gradient(145deg, #0f172a, #1e293b);
        }
        .shake-slow {
            animation: shake 4s ease-in-out infinite;
        }
        @keyframes shake {
            0%,100% { transform: rotate(0deg); }
            25% { transform: rotate(-3deg); }
            75% { transform: rotate(3deg); }
        }
        .glow {
            box-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
        }
        .animate-show {
            animation: show 1s ease forwards;
            opacity: 0;
        }
        @keyframes show {
            to { opacity: 1; }
        }
    </style>
</head>
<body class="min-h-screen flex items-center justify-center px-4">
<div class="animate-show text-center max-w-lg">
    <div class="shake-slow w-44 h-44 mx-auto rounded-full bg-red-900/30 glow flex items-center justify-center mb-6">
        <i class="fa fa-exclamation-triangle text-6xl text-red-400"></i>
    </div>
    <h1 class="text-[120px] font-bold text-gray-700 text-glow leading-none">500</h1>
    <h2 class="text-[26px] font-semibold text-gray-100 -mt-12 mb-4">拒绝访问！</h2>
    <p class="text-gray-400 mb-8 leading-relaxed">
        请勿带参请求！
    </p>
    <div class="flex justify-center gap-4 flex-wrap">
        <a href="/" class="px-7 py-3 bg-red-500 text-white rounded-lg hover:bg-red-600 transition shadow-lg">
            <i class="fa fa-home mr-2"></i>回到首页
        </a>
        <button onclick="location.reload()" class="px-7 py-3 border border-gray-600 text-gray-200 rounded-lg hover:bg-gray-800 transition">
            <i class="fa fa-refresh mr-2"></i>刷新页面
        </button>
    </div>
    <p class="mt-10 text-gray-600 text-sm">错误代码：ACCESS DENIED</p>
</div>
</body>
</html>
