/* AKL Orientation Lock V1 – MA-App only */
.akl-staff-orientation-lock {
  display: none;
}

@media screen and (orientation: landscape) and (max-height: 560px),
       screen and (orientation: landscape) and (pointer: coarse) and (max-width: 1100px) {
  .akl-staff-orientation-lock {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(24px, env(safe-area-inset-top)) max(22px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    background:
      radial-gradient(circle at 18% 12%, rgba(255, 214, 69, 0.16), transparent 30%),
      linear-gradient(135deg, #070b12 0%, #0b1422 58%, #03050a 100%);
    color: #fff;
    text-align: center;
  }

  .akl-staff-orientation-lock-card {
    width: min(460px, 92vw);
    padding: 24px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(9, 15, 25, 0.94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(18px);
  }

  .akl-staff-orientation-lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(255, 214, 69, 0.14);
    color: #ffd645;
    font-size: 30px;
    line-height: 1;
  }

  .akl-staff-orientation-lock h1 {
    margin: 0 0 10px;
    font-size: clamp(23px, 5vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .akl-staff-orientation-lock p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.45;
  }
}
