#feedbackPopup {
  position: fixed;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  padding: 20px;
  background: #0f0f0f;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  z-index: 1500;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#feedbackPopup.show { right: 20px; }
#feedbackPopup h3 { margin: 0 0 10px 0; font-size: 18px; color:#ff93e9; }
#feedbackPopup p { font-size: 14px; color: #b0b0b0; margin: 0 0 15px 0; }

.rating-stars { display: flex; gap: 8px; margin-bottom: 15px; }
.rating-stars .fa-star {
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: color 0.2s;
}
.rating-stars .fa-star.filled { color: #ffc107; }

#feedbackMessage {
  width: 100%;
  height: 80px;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.04);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  resize: vertical;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
}
#feedbackActions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 15px; }
#feedbackActions button {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.03);
  cursor: pointer;
}
#feedbackActions #submitFeedbackBtn {
  background: linear-gradient(90deg,#ff93e9,#9b7cff);
  border: none;
}
