.demo-orientation-guard {
  display: none;
}

@media screen and (max-width: 899px) and (orientation: portrait) {
  #root {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .demo-orientation-guard {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: #f8fafc;
    color: #14213d;
    text-align: center;
  }

  .demo-orientation-guard__device {
    width: 74px;
    height: 44px;
    margin-bottom: 28px;
    border: 3px solid currentColor;
    border-radius: 8px;
    transform: rotate(90deg);
  }

  .demo-orientation-guard h1 {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
  }

  .demo-orientation-guard p {
    max-width: 24rem;
    margin: 12px 0 24px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
  }

  .demo-orientation-guard button {
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    background: #14213d;
    color: #fff;
    font: inherit;
    font-weight: 700;
  }
}
