.scramble-board {
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.theme-label {
  font-weight: 800;
  color: #7C3AED;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scrambled-word {
  font-family: var(--font-display, 'Fredoka', sans-serif);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1E293B;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
  width: 100%;
}

.hint-text {
  font-size: 0.9rem;
  color: #64748B;
  min-height: 1.25rem;
}

.answer-input {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border: 3px solid #E2E8F0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}

.answer-input:focus {
  border-color: #7C3AED;
}

.scramble-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feedback {
  font-weight: 800;
  min-height: 1.5rem;
}

.feedback.correct { color: #10B981; }
.feedback.wrong { color: #EF4444; }
