/* FaithWords v9 — recurring hard levels */
.scene-copy {
  position: relative;
}

.hard-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 3px 8px 4px;
  border-radius: 999px;
  background: #c93434;
  color: #fff;
  border: 2px solid rgba(255,255,255,.88);
  box-shadow: 0 3px 0 #8f2020, 0 6px 18px rgba(141,32,32,.22);
  font-size: .66rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .08em;
  vertical-align: middle;
  transform-origin: center;
  animation: hardPulse 1.35s ease-in-out infinite;
}

.hard-badge[hidden] { display: none !important; }

@keyframes hardPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 3px 0 #8f2020, 0 6px 18px rgba(141,32,32,.22); }
  50% { transform: scale(1.11) rotate(-2deg); box-shadow: 0 3px 0 #8f2020, 0 7px 24px rgba(201,52,52,.38), 0 0 0 5px rgba(201,52,52,.10); }
}

.game-card.hard-level .scene {
  box-shadow: inset 0 -4px 0 rgba(201,52,52,.62);
}

.game-card.hard-level .level-label {
  color: #b52828;
}

.game-card.hard-level .cross-cell:not(.revealed) {
  background: #ead9d5;
  box-shadow: inset 0 -2px 0 rgba(145,51,44,.10);
}

.game-card.hard-level .word-readout.idle {
  color: #a84b46;
  font-weight: 850;
}

@media (prefers-reduced-motion: reduce) {
  .hard-badge { animation: none; }
}
