<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AI Platform</title>
    <style>
        body { font-family: -apple-system, "Microsoft YaHei", sans-serif; background: #1a1a2e; color: #e0e0e0; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; }
        .container { text-align: center; padding: 2rem; }
        h1 { font-size: 2.5rem; margin-bottom: 1rem; background: linear-gradient(135deg, #00b4d8, #d4a574); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .subtitle { color: #888; margin-bottom: 3rem; }
        .projects { display: flex; flex-direction: column; gap: 1rem; max-width: 400px; margin: 0 auto; }
        .project { background: #16213e; border: 1px solid #333; border-radius: 12px; padding: 1.5rem; transition: all 0.2s; text-decoration: none; color: inherit; }
        .project:hover { background: #1e293b; border-color: #00b4d8; transform: translateY(-2px); }
        .project h2 { font-size: 1.2rem; margin: 0 0 0.5rem 0; }
        .project p { color: #888; font-size: 0.9rem; margin: 0; }
        .project .url { color: #00b4d8; font-size: 0.85rem; margin-top: 0.5rem; font-family: monospace; }
    </style>
</head>
<body>
    <div class="container">
        <h1>🚀 AI Platform</h1>
        <p class="subtitle">已部署的 AI 应用</p>
        <div class="projects">
            <a href="/debate/" class="project">
                <h2>🎤 AI 辩论场</h2>
                <p>实时AI辩论平台（支持AI对战或者人和AI对战）</p>
                <div class="url">/debate/</div>
            </a>
            <a href="/news_bias/" class="project">
                <h2>📰 新闻偏见检测器</h2>
                <p>AI 驱动的新闻偏见分析工具</p>
                <div class="url">/news_bias/</div>
            </a>
        </div>
    </div>
</body>
</html>