/* Landscape orientation lock — show rotation hint on phones */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .orientation-lock-overlay {
    display: flex !important;
  }
}
.orientation-lock-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050816;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  text-align: center;
  padding: 24px;
}
.orientation-lock-overlay svg {
  width: 56px;
  height: 56px;
  color: #14ddf0;
  animation: orientRotate 1.6s ease-in-out infinite;
}
.orientation-lock-overlay p {
  font-size: 1rem;
  font-weight: 600;
  color: #c5d2e8;
  margin: 0;
}
@keyframes orientRotate {
  0%, 100% { transform: rotate(0deg); }
  40%, 60% { transform: rotate(-90deg); }
}
