/* Prevent full-page scrolling while keeping the layout contained */
html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

/* Ensure navbar stays on top */
.navbar {
  position: relative;
  z-index: 10;
  height: 60px; /* Adjust if your navbar height differs */
}

/* Flex container for the game iframe */
.game-container {
  width: 100%;
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}