/* По умолчанию уведомление скрыто */
.orientation-notice {
  display: none;
}

/* Только для мобильных устройств в горизонтальной ориентации */
@media screen and (orientation: landscape) and (max-width: 991px) {

  html, body {
    overflow: hidden !important;
    height: 100% !important;
  }

  /* Скрываем все блоки сайта, кроме T123 (где уведомление) */
  .t-record:not(.t123) {
    display: none !important;
  }

  /* Показываем уведомление при landscape */
  .orientation-notice {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: #fff;
    color: #000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    z-index: 9999;
  }
