/* === feedback === */
/* Playtest feedback dialog (src/ui/feedback.ts). Reuses .modal-card /
   .god-card / .big-btn from styles.css; only feedback-specific rules live
   here. */

.fb-cats {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.fb-cats .god-card {
  flex: 1;
  min-height: 0;
  padding: 10px 6px;
  text-align: center;
  font-size: 13px;
}

.fb-cat .fb-icon {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.god-card.fb-cat.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, #2a3555, #202a48);
  box-shadow: 0 0 14px rgba(232, 182, 76, 0.35);
}

#fb-text {
  width: 100%;
  min-height: 96px;
  box-sizing: border-box;
  resize: vertical;
  background: var(--bg2);
  border: 1px solid #36436e;
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  padding: 10px;
}

#fb-text:focus {
  outline: none;
  border-color: var(--gold);
}

#fb-text::placeholder {
  color: var(--dim);
}

.fb-note {
  color: var(--dim);
  font-size: 12px;
  margin: 8px 0 2px;
}

.fb-shake {
  animation: fb-shake 0.3s;
}

@keyframes fb-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
