/* 모바일 PC 안내 오버레이 + PC 레이아웃 강제 */
#stagelo-mobile-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
}

.stagelo-mg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 12, 0.92);
  backdrop-filter: blur(8px);
}

.stagelo-mg-panel {
  position: relative;
  margin: min(8vh, 48px) auto 0;
  max-width: 400px;
  padding: 28px 24px 24px;
  background: linear-gradient(165deg, #1a1a24 0%, #12121a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  color: #e8e8ef;
  text-align: center;
}

.stagelo-mg-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 12px;
}

.stagelo-mg-title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stagelo-mg-desc {
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.stagelo-mg-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stagelo-mg-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, transform 0.1s;
}

.stagelo-mg-btn:active {
  transform: scale(0.98);
}

.stagelo-mg-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stagelo-mg-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.stagelo-mg-hint {
  margin: 16px 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* PC 레이아웃 기준(가로 스크롤)으로 표시 */
html.stagelo-desktop-mode {
  min-width: 1200px;
}

html.stagelo-desktop-mode body {
  min-width: 1200px;
  overflow-x: auto;
}
