/*
 * 커스텀 UI 스킨 — 이 파일은 플레이어(play.html)에 항상 로드되며 빌드에 포함됩니다.
 * 아래 주석을 해제하고 수정하면 기본 디자인을 덮어씁니다.
 *
 * 상품 팝업:  .gswe-popup-backdrop / .gswe-popup / .gswe-popup-thumb
 *            .gswe-popup-title / .gswe-popup-price / .gswe-popup-cta / .gswe-popup-close
 * HUD:       #hud / #hud-marks / .piece-chip / #interact-prompt
 * 입장 화면:  #start-overlay / .start-btn
 *
 * 팝업 구조 자체를 바꾸려면 (JS):
 *   window.gswe.setProductPopupRenderer((product, close) => {
 *     const el = document.createElement("div");
 *     el.className = "my-popup";
 *     el.innerHTML = `...${product.title}...${product.price}...`;
 *     return el; // close()를 호출하면 팝업이 닫힘
 *   });
 */

/*
.gswe-popup {
  background: #ffffff;
  border: none;
  border-radius: 16px;
}
.gswe-popup-title { color: #111; }
.gswe-popup-cta { background: #111; color: #fff; }
*/
