/*Game Frame*/
.mother {
    width: 100%;
    height: 100vh; /* Adjust height as needed */
    border: none; /* Remove border if you don't want it */
    position: absolute;
    pointer-events: auto;
  }

  #game-iframe {
    display: none;
    z-index: 2;
  }

  .overlay {
    width: 100%;
    height: 100vh;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto; /* Ensure game is interactive */
}