/* ===============================
   Viewer ページ全体設定
   =============================== */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background-color: #000;
}

/* ===============================
   PSV Viewer メインコンテナ
   =============================== */

#viewer {
  width: 100%;
  height: 100%;
  position: relative; /* overlay の基準 */
  box-sizing: border-box;
  background: #000;
}

/* ===============================
   Overlay（画像・動画表示）
   =============================== */

#overlayImage,
#overlayVideo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 999;

  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  object-fit: contain;
}

/* ===============================
   Overlay：画像
   =============================== */

#overlayImage {
  max-width: 95vw;
  max-height: 95vh;
}

/* ===============================
   Overlay：動画
   =============================== */

#overlayVideo {
  max-width: 80%;
  max-height: 80%;
}
