<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <title>NBA2KLEAGUE王朝</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 60px 40px 30px 40px;
            max-width: 600px;
            width: 100%;
            text-align: center;
        }
        .logo {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        .title {
            color: #333;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .subtitle {
            color: #666;
            font-size: 1.3rem;
            margin-bottom: 40px;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            transition: transform 0.3s ease;
            margin: 10px;
        }
        .btn:hover {
            transform: translateY(-2px);
        }
        .api-info {
            background: #f1f5f9;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
        }
        .api-url {
            background: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-family: monospace;
            color: #0ea5e9;
            margin: 5px;
            display: inline-block;
        }
        .footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
            color: #666;
            font-size: 0.9rem;
        }
        .footer a {
            color: #667eea;
            text-decoration: none;
            margin: 0 5px;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .beian {
            margin-top: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">🏀</div>
        <h1 class="title">NBA2KLEAGUE王朝</h1>
        <p class="subtitle">专业的NBA 2K联盟管理系统</p>
        <div class="api-info">
            <p>API服务: <code class="api-url">https://api.2kwx.fun</code></p>
        </div>
        <a href="https://api.2kwx.fun/admin" class="btn">🛠️ 进入管理后台</a>
        <div class="footer">
            <div>© 2025 NBA2KLEAGUE王朝</div>
            <div class="beian">
                <a href="https://beian.miit.gov.cn" target="_blank" rel="noopener noreferrer">
                    粤ICP备2025480358号
                </a>
            </div>
        </div>
    </div>
</body>
</html>