/* KICKOFF · Blind Test Maillot (css dédié, s'appuie sur tokens.css + games.css)
   Réutilise gm-back, gm-hero-ico, gm-loading, btn-sheen, card, pill, kicker.
   Motif signature : le slash "/" rouge en puce de règle. */

.bt-wrap { display: flex; flex-direction: column; gap: 12px; padding: 4px 0 16px; }

/* ----- intro ----- */
.bt-hero { text-align: center; padding: 8px 0 2px; }
.bt-hero .gm-hero-ico {
  width: 78px; height: 78px; margin: 0 auto 10px; color: var(--red-glow);
  background: radial-gradient(circle at 50% 38%, rgba(232,0,13,.22), rgba(255,255,255,.03) 66%);
  border: 1px solid rgba(232,0,13,.28); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
}
.bt-hero .gm-hero-ico svg { width: 40px; height: 40px; filter: drop-shadow(0 0 12px rgba(232,0,13,.5)); }
.bt-hero-title { font-size: 26px; margin-bottom: 2px; }

/* trois maillots d'ambiance, légèrement inclinés comme sur un étendoir */
.bt-preview { display: flex; justify-content: center; align-items: flex-end; gap: 2px; padding: 2px 0 4px; }
.bt-preview .bt-jersey { width: 84px; height: 78px; }
.bt-preview .bt-jersey:nth-child(1) { transform: rotate(-7deg) translateY(4px); }
.bt-preview .bt-jersey:nth-child(2) { width: 100px; height: 92px; z-index: 1; }
.bt-preview .bt-jersey:nth-child(3) { transform: rotate(7deg) translateY(4px); }

.bt-rules { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 13.5px; }
.bt-rules li { display: flex; gap: 10px; align-items: flex-start; }
.bt-rules b { color: var(--txt); }
.bt-dot {
  flex: none; font-family: var(--disp); font-style: italic; font-weight: 700;
  color: var(--red); font-size: 17px; line-height: 1.3; width: 14px; text-align: center;
  text-shadow: 0 0 10px rgba(232,0,13,.6);
}
.bt-capnote { background: rgba(244,195,59,.06); border-color: rgba(244,195,59,.3); }

/* ----- manche ----- */
.bt-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bt-top .gold { display: inline-block; min-width: 14px; }

.bt-stage {
  position: relative; display: flex; flex-direction: column; align-items: center;
  padding: 6px 0 2px;
}
.bt-ring {
  position: absolute; top: -2px; right: 2px;
  width: 54px; height: 54px; border-radius: 50%; padding: 5px; z-index: 2;
  background: conic-gradient(var(--gold) 360deg, rgba(255,255,255,.06) 360deg);
}
.bt-ring.hot { animation: koRingPulse .55s ease-in-out infinite; }
.bt-ring-in {
  width: 100%; height: 100%; border-radius: 50%; background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-style: italic; font-weight: 700; font-size: 19px; color: var(--txt);
}

.bt-jwrap {
  display: flex; justify-content: center; align-items: center;
  padding: 6px 0 2px;
  animation: btJIn .45s cubic-bezier(.16,1,.3,1);
}
.bt-jersey {
  width: 200px; height: 184px; max-width: 62vw;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.5));
}
@keyframes btJIn {
  from { opacity: 0; transform: translateY(10px) scale(.94); }
  to { opacity: 1; transform: none; }
}

.bt-ask { text-align: center; padding: 2px 0; }

.bt-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.bt-choice {
  display: flex; align-items: center; justify-content: center; text-align: center; min-height: 54px;
  cursor: pointer; background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 12px; color: var(--txt); font-family: var(--body); font-size: 13.5px; font-weight: 600;
  line-height: 1.25; -webkit-tap-highlight-color: transparent;
  transition: border-color .12s ease, background .12s ease, transform .12s ease;
  animation: koSlideQ .34s cubic-bezier(.16,1,.3,1) backwards;
}
.bt-choice:nth-child(1) { animation-delay: .04s; }
.bt-choice:nth-child(2) { animation-delay: .09s; }
.bt-choice:nth-child(3) { animation-delay: .14s; }
.bt-choice:nth-child(4) { animation-delay: .19s; }
.bt-choice:not(:disabled):active { border-color: var(--red); transform: scale(.97); }
.bt-choice:disabled { cursor: default; opacity: .82; }
.bt-choice.good {
  background: rgba(34,197,94,.16); border-color: var(--green); color: #d9ffe6; opacity: 1;
  animation: koGoodPop .4s cubic-bezier(.34,1.56,.64,1);
}
.bt-choice.bad {
  background: rgba(232,0,13,.14); border-color: var(--red); color: #ffd7da; opacity: 1;
}

.bt-fb { min-height: 22px; text-align: center; font-size: 13.5px; font-weight: 700; }
.bt-fb .muted { font-weight: 600; margin-left: 6px; }

/* ----- fin de manche ----- */
.bt-end { text-align: center; }
.bt-total { font-size: 44px; line-height: 1.05; margin: 4px 0 8px; }
.bt-endbtns { display: flex; flex-direction: column; gap: 9px; }

.bt-locked { text-align: center; padding: 22px 14px; }
.bt-locked .gm-hero-ico { margin: 0 auto 12px; }

@media (prefers-reduced-motion: reduce) {
  .bt-jwrap, .bt-choice { animation: none; }
  .bt-ring.hot { animation: none; }
}
