.score-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: var(--col-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 7px;
}

.player-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 5px;
  padding: 3px 6px 3px 3px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(245, 233, 196, 0.14);
  min-width: 0;
}

.player-card.self {
  border-color: rgba(29, 158, 117, 0.75);
  background: rgba(29, 158, 117, 0.1);
}

.player-card.active {
  border-color: rgba(245, 192, 74, 0.8);
  background: rgba(245, 192, 74, 0.1);
  animation: cardpulse 1.6s ease-in-out infinite;
}

@keyframes cardpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 192, 74, 0); }
  50% { box-shadow: 0 0 10px 0 rgba(245, 192, 74, 0.35); }
}

.wind-tab {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.wind-e { background: linear-gradient(180deg, #E8B93C, #A87510); }
.wind-s { background: linear-gradient(180deg, #4FBF97, #17765A); }
.wind-w { background: linear-gradient(180deg, #6FA8DC, #245F98); }
.wind-n { background: linear-gradient(180deg, #B8B2A5, #6D665C); }

.player-info-group {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.player-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-score {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold-cream);
}

.player-card.self .player-score { color: var(--green-light); }
.player-card.active .player-score { color: var(--gold-pale); }

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 900;
}

.status-chip-dealer {
  width: 13px;
  height: 13px;
  font-size: 9px;
  background: linear-gradient(180deg, #ffe892 0%, var(--gold-light) 100%);
  border: 1px solid rgba(255, 232, 146, 0.95);
  color: #3b2705;
  font-family: var(--font-display);
}

.status-chip-riichi {
  padding: 1px 4px;
  font-size: 7px;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #ffb0aa 0%, var(--red-light) 100%);
  border: 1px solid rgba(255, 176, 170, 0.95);
  color: #3b0808;
}

@media (prefers-reduced-motion: reduce) {
  .player-card.active { animation: none; }
}
