<!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Simple Baseball Scoreboard</title>
            <script defer src="https://analytics.codewarp.org/script.js" data-website-id="0d18b464-bee7-4d86-916c-14ae2bdcd87d"></script>
            <style>
                * { margin: 0; padding: 0; box-sizing: border-box; }
                body { background: #0a1628; color: #c8d8e8; font-family: -apple-system, system-ui, sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
                .card { text-align: center; max-width: 400px; }
                h1 { font-size: 28px; margin-bottom: 8px; color: #e8f0f8; }
                p { color: #8898a8; margin-bottom: 24px; font-size: 15px; }
                .dl-btn { display: inline-block; padding: 14px 32px; background: #2563eb; color: #fff; font-size: 16px; font-weight: 700; border-radius: 8px; text-decoration: none; }
                .dl-btn:hover { background: #3b82f6; }
                .ver { margin-top: 16px; font-size: 12px; color: #5a6a7a; }
            </style>
        </head>
        <body>
            <div class="card">
                <h1>Simple Baseball Scoreboard</h1>
                <p>Live MLB scores, standings, and game audio</p>
                <a href="/sbs.apk" class="dl-btn" id="dl">Download APK</a>
                <div class="ver" id="ver"></div>
                <script>fetch("/version").then(r=>r.text()).then(v=>{v=v.trim();if(/^[0-9]/.test(v)){document.getElementById("ver").textContent="v"+v;document.getElementById("dl").href="/sbs-"+v+".apk"}}).catch(()=>{});</script>
            </div>
        </body>
        </html>