/* Feedback page */
.feedback-page {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
}

.feedback-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff2d78, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.feedback-subtext {
  text-align: center;
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.feedback-container {
  background: #111;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid rgba(255, 105, 180, 0.2);
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feedback-label {
  font-weight: 700;
  color: #ff69b4;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feedback-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 105, 180, 0.3);
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 150ms ease;
}

.feedback-select:focus,
.feedback-select:hover {
  border-color: rgba(255, 105, 180, 0.6);
}

.feedback-textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 105, 180, 0.3);
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 160px;
  outline: none;
  transition: border-color 150ms ease;
}

.feedback-textarea:focus,
.feedback-textarea:hover {
  border-color: rgba(255, 105, 180, 0.6);
}

.feedback-textarea::placeholder {
  color: #555;
  font-style: italic;
}

.feedback-meta {
  display: flex;
  justify-content: flex-end;
}

#charCount {
  color: #aaa;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feedback-button {
  align-self: center;
  width: 200px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: #ff69b4;
  color: #000;
  transition: background 150ms ease, transform 150ms ease;
}

.feedback-button:hover {
  background: #ff1493;
  transform: translateY(-2px);
}

.feedback-button:active {
  transform: translateY(0);
}

.feedback-note {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .feedback-page {
    margin: 20px 16px;
    padding: 16px;
  }

  .feedback-title {
    font-size: 2rem;
  }

  .feedback-container {
    padding: 20px;
  }

  .feedback-button {
    width: 100%;
  }
}
