.orientation-msg-container {
    position: fixed;               /* Фіксуємо контейнер на екрані */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1); /* Трохи прозорий фон */
    display: none;                 /* Спочатку прихований */
    justify-content: center;
    align-items: center;
    z-index: 9999;                 /* Високий z-index для перекриття гри */
    pointer-events: none;          /* Блокуємо кліки для контейнера */
}

.orientation-msg-text {
    color: #fff;
    font-size: 2em;
    text-align: center;
}

.orientation-image {
    max-width: 1080px;
    max-height: 1920px;
}


@media (max-width: 767px) {
    .orientation-msg-text{    
        font-size: 30px;  
    }
}


@media (max-width: 500px) {
    .orientation-msg-text{    
        font-size: 30px;  
    }
}





/* .orientation-msg-container {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  background-color: #000;
}

.orientation-msg-text {
  max-width: 50%;
  max-height: 70%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 767px) {
  .orientation-msg-text {
    font-size: 30px;
  }
}


@media (max-width: 500px) {
  .orientation-msg-text {
    font-size: 30px;
  }
} */