/* Figma 节点 11013:2631 — 终章反馈区 */
body:has(.figma-game-header) .feedback-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 20px 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body:has(.figma-game-header) .feedback-title {
  width: 100%;
  margin: 0;
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  color: #d9d9d9;
  text-align: left;
}

body:has(.figma-game-header) .feedback-description {
  width: 100%;
  margin: 0;
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #d9d9d9;
}

body:has(.figma-game-header) .feedback-textarea {
  box-sizing: border-box;
  width: 100%;
  height: 120px;
  min-height: 120px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(0, 221, 255, 0.2);
  border-radius: 12px;
  background: rgba(0, 221, 255, 0.1);
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #d9d9d9;
  resize: vertical;
}

body:has(.figma-game-header) .feedback-textarea::placeholder {
  color: rgba(217, 217, 217, 0.5);
}

body:has(.figma-game-header) .feedback-textarea:focus {
  outline: none;
  border-color: rgba(0, 221, 255, 0.45);
}

body:has(.figma-game-header) .feedback-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 160px;
  height: 40px;
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: #00ddff;
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #000000;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

body:has(.figma-game-header) .feedback-submit-button:hover {
  opacity: 0.9;
  transform: none;
  background: #00ddff;
}

body:has(.figma-game-header) .feedback-back-button {
  display: none;
  box-sizing: border-box;
  align-self: center;
  width: auto;
  min-width: 160px;
  height: 40px;
  margin: 0 auto;
  padding: 0 24px;
  border: 1px solid #8800dd;
  border-radius: 12px;
  background: rgba(136, 0, 221, 0.2);
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

body:has(.figma-game-header) .feedback-back-button:hover {
  background: rgba(136, 0, 221, 0.28);
  border-color: #9610ee;
  transform: none;
}

@media (max-width: 768px) {
  body:has(.figma-game-header) .feedback-container {
    padding: 20px 15px 40px;
  }
}