#gamePlayPopup .modal-dialog{
  max-width:420px;
  width:calc(100% - 24px);
  margin:1.2rem auto;
}
#gamePlayPopup .modal-content{
  background:var(--color-bg-2, #191919);
  color:var(--color-text, #adadad);
  border:1px solid #2a2a2a;
  border-radius:10px;
  overflow:hidden;
}
#gamePlayPopup .btn-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
  filter:invert(1);
  opacity:.7;
}
#gamePlayPopup .game-play-body{
  padding:22px 20px 20px;
  text-align:center;
}
#gamePlayPopup .game-play-thumb{
  width:148px;
  height:110px;
  margin:0 auto 14px;
  border-radius:8px;
  overflow:hidden;
  background:#111;
  background-size:cover;
  background-position:center;
}
#gamePlayPopup .game-play-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
#gamePlayPopup .game-play-title{
  color:#fff;
  font-size:18px;
  font-weight:700;
  margin:0 0 6px;
  line-height:1.3;
}
#gamePlayPopup .game-play-sub{
  font-size:13px;
  margin:0 0 16px;
}
#gamePlayPopup .game-play-err{
  display:none;
  margin:0 0 14px;
  padding:10px 12px;
  border-radius:6px;
  background:#3a1515;
  border:1px solid #8a2a2a;
  color:#ffb4b4;
  font-size:13px;
}
#gamePlayPopup .game-play-note{
  display:none;
  margin:0 0 14px;
  padding:10px 12px;
  border-radius:6px;
  background:#1d1a10;
  border:1px solid #5a4a1a;
  color:#f0d27a;
  font-size:13px;
}
#gamePlayPopup .game-play-actions{
  display:flex;
  gap:10px;
}
#gamePlayPopup .game-play-actions .btn{
  flex:1;
  min-height:44px;
}
@media (max-width:479px){
  #gamePlayPopup .game-play-actions{
    flex-direction:column;
  }
}
