<!DOCTYPE html>
<html lang="vi">
<head>
    <meta charset="UTF-8">
    <title>QR Region <%= region %></title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <style>
        body {
            margin: 0;
            background: #0f0f0f;
            color: #fff;
            font-family: Arial, sans-serif;
            text-align: center;
        }

        h2 {
            margin: 20px 0;
            font-size: 24px;
        }

        .container {
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding: 16px;
        }

        .qr-box {
            background: #1e1e1e;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0,255,255,0.15);
        }

        .qr-box h3 {
            margin-bottom: 16px;
            font-size: 20px;
        }

        .qr-box img {
            width: 80vw;          /* 📱 MOBILE TO */
            max-width: 320px;     /* 💻 DESKTOP */
            height: auto;
        }

        .url {
            margin-top: 12px;
            font-size: 14px;
            opacity: 0.8;
        }

        /* 💻 DESKTOP / TV */
        @media (min-width: 768px) {
            .container {
                flex-direction: row;
                justify-content: center;
            }

            .qr-box img {
                width: 260px;
            }
        }
    </style>
</head>

<body>

<h2>📍 Khu vực: <%= region %></h2>

<div class="container">

    <div class="qr-box">
        <h3>🎮 QR Trò Chơi</h3>
        <img src="<%= qr1 %>" alt="QR Game">
        <div class="url">Khu vực: <%= region %></div>
    </div>

</div>

</body>
</html>
