/* ============================================================
   ppc.css — styles propres à Pierre-Papier-Ciseaux.
   ============================================================ */

.ppc-box { text-align: center; display: flex; flex-direction: column; gap: 18px; min-width: 280px; }

.ppc-score { font-size: 22px; }
.ppc-score strong { font-size: 26px; color: var(--accent-2); }
.ppc-score .muted { font-size: 13px; }

.ppc-last {
  font-size: 22px; padding: 10px 14px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--line);
}

.ppc-choices { display: flex; gap: 14px; justify-content: center; }
.ppc-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 40px; cursor: pointer;
  width: 96px; height: 96px; border-radius: 16px;
  background: var(--bg-soft); border: 2px solid var(--line); color: var(--text);
  transition: border-color .12s ease, transform .06s ease, background .12s ease;
}
.ppc-btn small { font-size: 12px; color: var(--text-soft); }
.ppc-btn:hover { border-color: var(--accent); background: #2a316a; }
.ppc-btn:active { transform: scale(.95); }

@media (max-width: 400px) {
  .ppc-choices { gap: 10px; }
  .ppc-btn { width: 82px; height: 82px; font-size: 34px; }
}
