/* 부모 창 — 게임 진행 중 전체 화면 차단 */
.mg-game-block {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
}

.mg-game-block-panel {
  width: min(560px, 100%);
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid rgba(0, 174, 239, 0.35);
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.mg-game-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.15);
  color: #00aeef;
  font-size: 22px;
}

.mg-game-block-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.mg-game-block-desc {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}

.mg-game-block-end {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #00aeef;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.mg-game-block-end:hover {
  background: #0096cc;
}

body.mg-game-blocked {
  overflow: hidden;
}
