/* ====== 圖片縮放控制 ====== */
.poster {
  max-width: 750px;   /* 原始設計寬度 */
  margin: 0 auto;
}
.poster.scale70 {
  transform: scale(0.9);         /* 縮小到 70% */
  transform-origin: top center;  /* 從頂部中間縮放 */
}
.poster img {
  display: block;
  width: 100%;   /* 保持等比縮放 */
  height: auto;
}

/* ====== CTA 熱區定位 ====== */
.cta { position: relative; }
.cta .hit {
  position: absolute;
  display: block;
  border-radius: 14px;
  /* 調試用：確認位置後刪掉 */
  outline: 2px dashed rgba(255,215,0,.55);
}
.cta .hit:focus-visible { outline: 3px solid #ffd23f; }

/* ====== 基於原圖 750x322 的百分比 ====== */
.btn-official {
  left: 3.2%;
  top: 5.90062%;
  width: 93.6%;
  height: 34.47205%;
}
.btn-ws {
  left: 3.33333%;
  top: 43.78882%;
  width: 46%;
  height: 35.09317%;
}
.btn-tg {
  left: 50.26667%;
  top: 43.47826%;
  width: 46.26667%;
  height: 35.09317%;
}
