.feeding-game {
  padding: 12px;
}
.feeding-game__desc {
  font-size: 11px;
  color: var(--text-2);
  margin: 6px 0;
  line-height: 1.5;
}
.feeding-game__seeds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.feeding-game__seed {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--border-2);
  cursor: pointer;
}
.feeding-game__seed.filled {
  color: var(--accent);
}
.feeding-game__bonus {
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
}
.feeding-game__character {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.feeding-game__character img {
  width: 48px; height: 48px;
  object-fit: contain;
}
.feeding-game__label {
  font-size: 11px;
  color: var(--text-2);
  background: var(--card-accent);
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 700;
}
