.feedback-settings {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.feedback-setting {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid var(--ivory-09);
  border-radius: 2px;
  background: var(--surface-1);
  color: var(--warm-ivory);
  text-align: left;
}

.feedback-setting:hover,
.feedback-setting:focus-visible {
  border-color: var(--cyan-42);
  background: rgba(99, 217, 242, 0.045);
}

.feedback-setting[aria-checked="true"] {
  border-color: var(--cyan-42);
}

.feedback-setting-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.feedback-setting-copy strong {
  color: var(--warm-ivory);
  font: 850 14px/1.3 "Noto Sans KR", system-ui, sans-serif;
  word-break: keep-all;
}

.feedback-setting-copy small {
  color: var(--ivory-72);
  font: 650 12px/1.35 "Noto Sans KR", system-ui, sans-serif;
  word-break: keep-all;
}

.feedback-switch {
  position: relative;
  width: 44px;
  height: 26px;
  border: 1px solid var(--ivory-16);
  border-radius: 2px;
  background: var(--vault-black);
}

.feedback-switch::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ivory-48);
  transition: transform 140ms ease, background-color 140ms ease;
}

.feedback-setting[aria-checked="true"] .feedback-switch {
  border-color: var(--electric-cyan);
  background: rgba(99, 217, 242, 0.12);
}

.feedback-setting[aria-checked="true"] .feedback-switch::after {
  background: var(--electric-cyan);
  transform: translateX(18px);
}

.feedback-note {
  margin: 10px 0 0;
  color: var(--ivory-72);
  font: 650 12px/1.45 "Noto Sans KR", system-ui, sans-serif;
  word-break: keep-all;
}

html[data-motion-reduced="true"] .scene *,
html[data-motion-reduced="true"] .boardwrap::before,
html[data-motion-reduced="true"] .boardwrap::after,
html[data-motion-reduced="true"] .panel,
html[data-motion-reduced="true"] .shape-pop,
html[data-motion-reduced="true"] .hat-pop,
html[data-motion-reduced="true"] .board-pop,
html[data-motion-reduced="true"] .bump,
html[data-motion-reduced="true"] .reward-shard,
html[data-motion-reduced="true"] .feedback-switch::after {
  animation: none !important;
  transition: none !important;
}

@media (max-height: 640px) {
  .feedback-settings { gap: 6px; margin-top: 12px; }
  .feedback-setting { min-height: 54px; padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-switch::after { transition: none; }
}
