/* werewolf/exhibition/exhibition.css
   エキシビションページの追加分だけ。本戦の viewer.css は書き換えない。 */

/* 声のプレイヤー (シーク・一時停止・音量はブラウザ標準)。
   試合用はステージの外 (操作パネルより下)、感想戦用は感想戦の見出し直下に置く */
.ex-player {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: .6rem auto 0;
  max-width: 900px;
  padding: .45rem .7rem;
  /* サイトの地色に合わせた明るい面。ステージ (暗色) の外に置くため */
  background: var(--surface, #fff);
  border: 1px solid var(--sky-200, #DCEAF2);
  border-radius: 12px;
}
.ex-player.hidden { display: none; }
.ex-player-label {
  font-size: .82rem;
  color: var(--ink-2, #506F86);
  white-space: nowrap;
}
.ex-player audio {
  flex: 1;
  min-width: 0;
  height: 34px;
}
.ex-afterparty .ex-player { margin: .6rem 0 0; }
/* 発言の中に入ったときは行いっぱいに広げ、話者名より上に置く */
.ex-line .ex-player { grid-column: 1 / -1; margin: 0 0 .7rem; }

/* 動画わきの立ち絵 (パッション)。本戦より大きめに出す */
.list-video-ex .video-side {
  height: 105%;              /* 本戦は75%。エキシビションは大きく見せる */
  right: -300px;
}
.list-video-ex .video-side img {
  /* 反転して指差しを動画側へ。傾きは反転後に -4度 相当になるよう +4度で指定 */
  transform: scaleX(-1) rotate(4deg);
}
.list-video-ex .video-bubble {
  width: 215px;
  top: 10px;
  right: -320px;
}

/* エキシビション一覧のカード */
.ex-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.ex-card {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.3rem;
  background: var(--surface, #fff);
  border: 1px solid var(--sky-200, #DCEAF2);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}
.ex-card:hover { border-color: var(--accent, #2C7392); }
.ex-card-no { font-weight: 700; color: var(--accent, #2C7392); }
.ex-card-models { font-size: .95rem; }
.ex-card-meta { font-size: .82rem; color: var(--ink-2, #506F86); white-space: nowrap; }
@media (max-width: 640px) {
  .ex-card { grid-template-columns: 1fr; gap: .3rem; }
  .ex-card-meta { white-space: normal; }
}

.ex-afterparty {
  margin: 2.5rem auto 0;
  max-width: 900px;
}
.ex-afterparty h2 {
  font-size: 1.4rem;
  margin-bottom: .3rem;
}
.ex-note {
  opacity: .7;
  font-size: .9rem;
  margin-bottom: 1.2rem;
}
.ex-line {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-top: 1px solid var(--sky-200, #DCEAF2);
  align-items: start;
}
.ex-who {
  font-weight: 700;
  font-size: .92rem;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.ex-q .ex-who { opacity: .6; }
.ex-q .ex-text { opacity: .78; }
.ex-text { line-height: 1.75; }
.ex-voice {
  border: 1px solid var(--sky-200, #DCEAF2);
  background: transparent;
  color: inherit;
  border-radius: 999px;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1;
  cursor: pointer;
  font-size: .8rem;
}
.ex-voice:hover { border-color: var(--accent, #2C7392); color: var(--accent, #2C7392); }
/* 再生中は停止ボタンとして目立たせる */
.ex-voice.playing {
  border-color: var(--accent, #2C7392);
  background: var(--accent, #2C7392);
  color: var(--white, #fff);
  font-size: .62rem;
}

@media (max-width: 640px) {
  .ex-line { grid-template-columns: 1fr; gap: .25rem; }
}
