.vp-hand {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 16px auto 8px;
  flex-wrap: wrap;
}
.vp-card {
  width: 56px;
  height: 78px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #c9d2de;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.vp-card.red { color: #d33; }
.vp-card.held { border-color: #6bcb77; box-shadow: 0 0 0 2px rgba(107,203,119,.5); }
.vp-card .hold-tag {
  position: absolute;
  bottom: -20px;
  font-size: 12px;
  color: #6bcb77;
  font-weight: 700;
}
.vp-result { text-align: center; font-weight: 700; color: #2b2f38; min-height: 22px; }
