def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])
    return [b"""
    <html>
    <head><title>Test OK</title></head>
    <body style="background:#1a1a2e;color:#fff;font-family:sans-serif;text-align:center;padding:50px;">
        <h1>Hello! Python App is working!</h1>
        <p>Passenger + Python 3.9 berhasil jalan di Namecheap.</p>
        <p>Sekarang tinggal fix kode utamanya.</p>
    </body>
    </html>
    """]
