/* Feedback form — playblendy.com/feedback */
.feedback-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
}

.feedback-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.feedback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.feedback-header a {
  color: #ffd43b;
  text-decoration: none;
  font-weight: 800;
  font-family: "Baloo 2", "Nunito", sans-serif;
}

.feedback-header h1 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.feedback-section {
  margin-bottom: 28px;
}

.feedback-section h2 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.feedback-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.feedback-categories::-webkit-scrollbar {
  display: none;
}

.feedback-chip {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #221c17;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 12px 16px;
  font: 700 0.92rem/1 "Nunito", sans-serif;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.feedback-chip.selected {
  background: #2b241e;
  border-color: rgba(255, 212, 59, 0.45);
  color: #fff8ef;
}

.feedback-issues {
  display: grid;
  gap: 10px;
}

.feedback-issue {
  width: 100%;
  text-align: left;
  border-radius: 999px;
  padding: 16px 18px;
}

.feedback-textarea-wrap {
  background: #11100d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px;
  transition: border-color 0.15s ease;
}

.feedback-textarea-wrap:focus-within {
  border-color: rgba(255, 212, 59, 0.55);
}

.feedback-textarea {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  border: none;
  outline: none;
  background: transparent;
  color: #fff8ef;
  font: 600 0.95rem/1.55 "Nunito", sans-serif;
}

.feedback-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.feedback-email {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #11100d;
  color: #fff8ef;
  border-radius: 18px;
  padding: 14px 16px;
  font: 600 0.95rem/1.4 "Nunito", sans-serif;
  outline: none;
}

.feedback-email:focus {
  border-color: rgba(255, 212, 59, 0.55);
}

.feedback-submit {
  width: 100%;
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 16px 20px;
  font: 800 1rem/1 "Baloo 2", "Nunito", sans-serif;
  color: #111;
  background: #ffd43b;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 10px 28px rgba(255, 212, 59, 0.28);
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.feedback-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.feedback-submit:not(:disabled):hover {
  transform: translateY(-1px);
}

.feedback-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  font-weight: 600;
}

.feedback-status {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.92rem;
}

.feedback-status.error {
  color: #ff5a5f;
}

.feedback-status.success {
  color: #35d66b;
}

.feedback-success-panel {
  text-align: center;
  padding: 48px 20px;
}

.feedback-success-panel h2 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.feedback-success-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.feedback-success-panel a {
  display: inline-block;
  margin-top: 20px;
  color: #ffd43b;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 720px) {
  .feedback-shell {
    padding-top: 40px;
  }

  .feedback-header h1 {
    font-size: 1.35rem;
  }
}
