<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>错误 - 游戏系统</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f5f5f5;
        }
        .error-container {
            max-width: 600px;
            margin: 50px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
        }
        h1 {
            color: #d9534f;
        }
        p {
            margin: 20px 0;
            font-size: 16px;
            line-height: 1.5;
        }
        a {
            color: #337ab7;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="error-container">
        <h1>系统错误</h1>
        <p>系统遇到了一个问题，请稍后再试或联系管理员。</p>
        <div><a href="/game">返回游戏</a></div>
    </div>
</body>
</html>
