@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
iframe {
    width: 100%;
    height: 100vh; /* Full viewport height */
    border: none; /* Optional: Removes iframe border */
}

        /* Style for loading container */
        .loading-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column; /* Stack items vertically */
            justify-content: center;
            align-items: center;
            z-index: 10001;
        }
        

        .loading-container img{
            width: 124px;
            height: 106px;

        }

        /* Hide iframe initially */
        #gameFrame {
            display: none;
            width: 100%;
            height: 100vh;
            border: none;
        }
        
        #loading-text {
            font-size: 18px;
            color: white;
            margin-top: 5px;
            font-family: 'Poppins', sans-serif;
        }
        