 /* Si vous souhaitez forcer le mode Paysage (Landscape) */
      @media screen and (orientation: portrait) {
        #unity-container {
          display: none;
        }
        #orientation-warning {
          display: flex;
          justify-content: center;
          align-items: center;
          position: fixed;
          top: 0;
          left: 0;
          width: 100vw;
          height: 100vh;
          background: rgb(0, 106, 170);
          background-image: url("turn.png");
          background-repeat: no-repeat;
          background-size: 50%;
          background-position: 50%;
          color: white;
          z-index: 999;
        }
      }

      @media screen and (orientation: landscape) {
        #orientation-warning {
          display: none;
        }
      }