/* ===== CUTTHROAT ===== */

#ctGame.hidden { display: none; }

.ct-balls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ct-ball-btn {
  background: none;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  padding: 3px;
  cursor: pointer;
  transition: all .2s;
}

.ct-ball-btn img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
}

.ct-ball-btn.pocketed {
  opacity: 0.25;
  filter: grayscale(1);
  border-color: transparent;
}

.ct-balls-mini {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-left: auto;
}

.ball-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.ct-corners {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 8px 0;
}

.ball-corner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #FFD700;
  box-shadow: 0 0 12px rgba(255,215,0,0.4);
}

.btn-fault {
  background: rgba(255, 68, 68, 0.2);
  border: 1px solid rgba(255, 68, 68, 0.5);
  color: #ff8888;
  border-radius: 50px;
  padding: 7px 16px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.win-trophy {
  font-size: 64px;
  margin-bottom: 12px;
}

.win-name {
  font-size: 26px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 6px;
}

.win-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
