/* huit.css */
.ha-box { display: flex; flex-direction: column; gap: 14px; align-items: center; min-width: 280px; }
.ha-pile { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ha-suit { font-size: 14px; color: var(--text-soft); }
.ha-hand { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

.ha-card {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 42px; height: 58px; padding: 0 6px;
  background: #fff; color: #1a1a1a; border: 1px solid #999; border-radius: 8px;
  font-weight: 800; font-size: 18px; cursor: pointer;
}
.ha-card small { font-size: 14px; }
.ha-card.red { color: #d33; }
.ha-card.big { width: 56px; height: 76px; font-size: 24px; cursor: default; }
.ha-card.dim { opacity: .4; cursor: not-allowed; }
.ha-suit .red, .ha-pick .red { color: #d33; }
.ha-pick { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.ha-suit-btn { font-size: 24px; background: #fff; color: #1a1a1a; min-width: 54px; }
