.hanafuda-section-label {
  font-size: 22px;
  margin: 12px 0 6px;
  text-align: center;
  color: var(--color-accent);
}

.hanafuda-hand,
.hanafuda-field {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin-bottom: 16px;
}

.hanafuda-card {
  width: 100px;
  min-height: 110px;
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  transition: transform 0.15s ease, opacity 0.3s ease, border-color 0.15s ease;
}

.hanafuda-card:active {
  transform: scale(0.95);
}

.hanafuda-card .hanafuda-emoji {
  font-size: 36px;
}

.hanafuda-card.selected {
  border-color: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
  transform: translateY(-6px);
}

.hanafuda-card.captured {
  opacity: 0.12;
  pointer-events: none;
}
