<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
    <title>科目三灯光100分</title>
     <link rel="icon" type="image/png" href="/mini_app_logo.png">
    <link rel="apple-touch-icon" href="/mini_app_logo.png">
    
    <script src="https://cdn.tailwindcss.com"></script>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background: #000000; 
            font-family: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    </style>
</head>
<body>
    <div class="w-full max-w-[360px] mx-auto px-6 py-16 text-center">

        <!-- 科目三灯光 白字 -->
        <div class="text-white text-4xl font-bold tracking-wide">科目三灯光</div>

        <!-- 100分：巨大金色冲击 -->
        <div class="text-amber-500 text-8xl font-black tracking-tighter my-4 leading-none">100分</div>

        <!-- 细线分隔 -->
        <div class="w-16 h-px bg-gray-700 mx-auto my-8"></div>

        <!-- 小程序码：居中 /mnqrcode.png -->
      <div class="flex justify-center my-8">
    <div class="w-36 h-36 bg-white flex items-center justify-center rounded-full overflow-hidden">
        <img src="/mnqrcode.png" 
             alt="小程序码" 
             class="w-full h-full object-cover p-2"
             onerror="this.src='data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22144%22 height=%22144%22 viewBox=%220 0 144 144%22%3E%3Crect width=%22144%22 height=%22144%22 fill=%22%23eeeeee%22/%3E%3Ctext x=%2250%25%22 y=%2250%25%22 text-anchor=%22middle%22 dominant-baseline=%22middle%22 font-size=%2212%22 fill=%22%23999%22%3Emnqrcode%3C/text%3E%3C/svg%3E'">
    </div>
</div>

        <!-- 核心操作：极简三行，白灰字 -->
        <div class="mt-8 space-y-2 text-gray-400 text-sm font-mono">
            <div>码艺软件开发提供技术支持</div> 
        </div>

        <!-- 官方网址 -->
        <div class="mt-10 text-gray-600 text-xs tracking-wide">pw3.hayatim.top</div>

    </div>
</body>
</html>