.find-item-scene {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 420px;
  background-color: #3a2b20;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--color-accent);
  border-radius: 20px;
  margin: 16px 0;
  overflow: hidden;
}

.find-item-obj {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 44px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.find-item-obj:active {
  transform: translate(-50%, -50%) scale(0.9);
}

.find-item-obj.found {
  opacity: 0.15;
  pointer-events: none;
}

.find-item-obj.hint-pulse {
  animation: hint-pulse 0.6s ease infinite alternate;
}

@keyframes hint-pulse {
  from { filter: drop-shadow(0 0 0 var(--color-accent)); }
  to { filter: drop-shadow(0 0 16px var(--color-accent)); }
}

.find-item-board {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

.find-item-target {
  background: var(--color-bg-panel);
  border: 3px solid var(--color-accent);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.find-item-target.done {
  opacity: 0.4;
  text-decoration: line-through;
}
