/* Portrait-mode overlay — instructs user to rotate to landscape */
.orientation-msg-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #0d2a16 0%, #061208 100%);
  color: #fff;
}

.orient-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.orient-phone-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orient-phone-icon {
  width: 44px;
  height: 44px;
  color: #D4A017;
  animation: orientRotatePhone 2s ease-in-out infinite;
  transform-origin: center center;
}

.orient-arrow {
  position: absolute;
  top: 0; right: 0;
  width: 36px;
  height: 36px;
  color: #D4A017;
  opacity: 0.7;
  animation: orientFadeArrow 2s ease-in-out infinite;
}

@keyframes orientRotatePhone {
  0%   { transform: rotate(0deg);   opacity: 1; }
  20%  { transform: rotate(0deg);   opacity: 1; }
  60%  { transform: rotate(-90deg); opacity: 1; }
  80%  { transform: rotate(-90deg); opacity: 1; }
  100% { transform: rotate(0deg);   opacity: 1; }
}

@keyframes orientFadeArrow {
  0%   { opacity: 0.7; }
  40%  { opacity: 0;   }
  100% { opacity: 0.7; }
}

.orient-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: center;
}

.orient-subtitle {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: -10px;
  text-align: center;
}
