
<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Solta Carta</title>
    <style>
        html, body {
            margin: 0;
            padding: 0;
            background-color: #121212;
            color: #e0e0e0;
            font-family: Arial, sans-serif;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        body, iframe {
            touch-action: manipulation;
            -webkit-overflow-scrolling: touch;
        }

        .iframe-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
        }

        .iframe-container iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: none;
        }
    </style>
</head>
<body>
    <div id="start-btn" style="width: 100vw; height: 100vh; background: #121212; color: white; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer;">
        Toque para iniciar
    </div>

    <div class="iframe-container" style="display: none;">
        <iframe
            id="cassino-frame"
            title="Cassino"
            src="https://m.pgsoft-games.com/126/index.html?l=pt&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&from=https://pgdemo.asia/&language=pt-BR&__refer=m.pg-redirect.net&or=static.pgsoft-games.com"
            allow="autoplay; fullscreen"
            allowfullscreen
            sandbox="allow-scripts allow-same-origin allow-popups"
        ></iframe>
    </div>

    <script>
        document.getElementById("start-btn").addEventListener("click", () => {
            document.getElementById("start-btn").style.display = "none";
            document.querySelector(".iframe-container").style.display = "block";
        });
    </script>
</body>
</html>