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

.omoide-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.3s ease, border-color 0.15s ease;
}

.omoide-hotspot:active {
  transform: translate(-50%, -50%) scale(0.92);
}

.omoide-hotspot.found {
  opacity: 0.35;
  border-color: var(--color-good);
}

.omoide-progress {
  text-align: center;
  font-size: 22px;
  margin-top: 8px;
}

.omoide-card-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 61, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1800;
  padding: 24px;
}

.omoide-card {
  background: var(--color-bg-panel);
  border: 4px solid var(--color-accent);
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  text-align: center;
  animation: pop-in 0.3s ease;
}

.omoide-card-emoji {
  font-size: 72px;
  margin-bottom: 12px;
}

.omoide-card-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.omoide-card-desc {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
}
