.portrait-lock-screen {
  display: none;
}

@media (max-width: 1023px) {
  html,
  body {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .portrait-lock-screen {
    position: fixed;
    z-index: 2147483647;
    inset: 0;
    display: grid;
    padding: 24px;
    color: #111633;
    background: #fff;
    place-items: center;
  }

  .portrait-lock-card {
    max-width: 320px;
    text-align: center;
  }

  .portrait-lock-card strong {
    display: block;
    margin-top: 18px;
    font-size: 20px;
  }

  .portrait-lock-card p {
    margin-top: 8px;
    color: #68708f;
    font-size: 13px;
    line-height: 1.6;
  }

  .portrait-lock-phone {
    position: relative;
    width: 42px;
    height: 72px;
    display: block;
    margin: 0 auto;
    border: 3px solid #5b39f6;
    border-radius: 10px;
    animation: portrait-hint .9s ease both;
  }

  .portrait-lock-phone::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 12px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: #5b39f6;
    content: "";
  }
}

@keyframes portrait-hint {
  from { transform: rotate(90deg); }
  to { transform: rotate(0); }
}
