.elementor-5128 .elementor-element.elementor-element-c97aa65{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5128 .elementor-element.elementor-element-d2053c2{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-d2053c2 *//* Grund-Container */
  .game-container {
    position: relative;
    width: 100%;
    border: 2px solid #333; /* Optional: Ein kleiner Rahmen */
    box-sizing: border-box;
  }

  /* Standard: Hochformat (Portrait) */
  @media screen and (orientation: portrait) {
    .game-container {
      height: 70vh; /* Nutzt 70% der Bildschirmhöhe */
    }
  }

  /* Automatische Anpassung: Querformat (Landscape) */
  @media screen and (orientation: landscape) {
    .game-container {
      height: 95vh; /* Nutzt fast die gesamte Höhe im Querformat */
    }
  }

  .game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }/* End custom CSS */