/* Lean layer on top of styles.css to align Multiplayer visuals */

.visible-game { display: block; }

/* Big overlay count */
.mp-big-count {
  font-size: 56px;
  font-weight: 900;
  margin-top: 8px;
}

/* Scoreboard */
.mp-score-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.mp-score-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.mp-score-list li:last-child { border-bottom: 0; }

.mp-muted { color: #555; }
.mp-winner { margin-top: 8px; font-weight: 800; }

/* Show overlays */
.overlay.visible { display: flex; }

/* Actor images */
.actor-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #ddd;
  background: #f9f9f9;
}

/* Suggestions keep site look */
#suggestions { position: relative; z-index: 10; }

/* Scoreboard popup sizing */
#scoreboardPopup .overlay-card {
  width: 420px;
  max-width: calc(100vw - 40px);
}

/* Status alignment */
.status { margin-top: 8px; min-height: 22px; }

/* Chain answers: match other game pills; first=blue, middle=orange, final=green */
#guessLog { list-style: none; margin: 0; padding: 0; }
#guessLog li {
  margin: 8px 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}
#guessLog li.blue   { background: var(--blue);   color: #fff; }
#guessLog li.orange { background: var(--orange); color: #fff; }
#guessLog li.green  { background: var(--green);  color: #fff; } /* winner */

/* Mini steps badge for player list */
.counter-sm {
  transform: scale(0.8);
  display: inline-grid;
  place-items: center;
  margin: 0 6px;
  vertical-align: middle;
}

/* Round pill next to Current Chain */
.round-sep { opacity: 0.6; margin: 0 8px; }
.round-pill {
  display: inline-block;
  background: #2f2f2f;
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

/* Player name pill (same look as round pill) */
.name-pill {
  display: inline-block;
  background: #2f2f2f;
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
}

/* Points pill */
.points-pill {
  display: inline-block;
  background: #edcf07;
  color: #222121;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 800;
  margin-left: 8px;
}

/* Player list: no bullets by default, show a single bullet only for yourself */
#players { list-style: none; margin: 0; padding: 0; }
#players li { position: relative; padding-left: 14px; }
#players li::before { content: ''; }
#players li.me::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
  font-weight: 900;
}

/* Reset button now uses .btn-red from styles.css; no extra overrides here */
