.feedback-header {
  gap: 8px;
  padding-top: 32px;
}
.feedback-header h1 {
  color: var(--white);
  font-size: var(--xxxl);
  font-family: var(--secondary-font);
}
.feedback-header p {
  opacity: 0.5;
  font-size: var(--m);
  max-width: 480px;
}
.feedback-card,
.help-item,
.feedback-form-card {
  background: rgba(32, 32, 44, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mr);
  transition: border-color var(--dur-micro) ease;
}
.feedback-card:hover,
.help-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.feedback-columns,
.help-columns {
  display: flex;
  align-items: flex-start;
}
.feedback-columns {
  gap: 80px;
}
.help-columns {
  gap: 80px;
}
.feedback-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.feedback-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sort-select {
  padding: 8px 32px 8px 12px;
  border-radius: var(--sr);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(32, 32, 44, 0.82);
  color: var(--white);
  font-family: var(--secondary-font);
  font-size: var(--s);
  cursor: pointer;
  appearance: none;
  width: fit-content;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.feedback-form-card {
  background: rgba(32, 32, 44, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
  padding: var(--box-padding);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.type-toggle {
  display: flex;
  gap: 8px;
}
.feedback-form-card textarea {
  min-height: 100px;
  resize: vertical;
}
.login-prompt {
  padding: 24px;
  background: rgba(255, 193, 7, 0.06);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: var(--mr);
  font-size: var(--s);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.login-prompt a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feedback-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  animation: fade-up var(--dur-enter) var(--ease-spring) both;
}
.feedback-card:nth-child(1) {
  animation-delay: 0.04s;
}
.feedback-card:nth-child(2) {
  animation-delay: 0.08s;
}
.feedback-card:nth-child(3) {
  animation-delay: 0.12s;
}
.feedback-card:nth-child(4) {
  animation-delay: 0.16s;
}
.feedback-card:nth-child(5) {
  animation-delay: 0.2s;
}
.feedback-card:nth-child(6) {
  animation-delay: 0.24s;
}
.feedback-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.feedback-content h3 {
  font-size: var(--m);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}
.feedback-content p {
  font-size: var(--s);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feedback-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--xs);
  color: rgba(255, 255, 255, 0.3);
}
.type-badge {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.upvote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 14px;
  border-radius: var(--mr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--dur-micro) ease;
  min-width: 52px;
  font-family: var(--secondary-font);
}
.upvote-btn .icon {
  transition: transform var(--dur-micro) ease;
}
.upvote-btn .upvote-count {
  font-size: var(--s);
  font-weight: 700;
}
.upvote-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 193, 7, 0.06);
}
.upvote-btn:hover .icon {
  transform: translateY(-2px);
}
.upvote-btn.voted {
  border-color: var(--primary);
  background: rgba(255, 193, 7, 0.12);
  color: var(--primary);
}
.upvote-btn.own-post {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.help-section-heading {
  font-size: var(--l);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.help-item {
  transition: border-color 0.3s ease;
}
.help-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: var(--m);
  gap: 12px;
}
.help-item summary::after {
  content: "+";
  font-size: var(--l);
  color: var(--primary);
  transition: rotate 0.3s ease;
}
.help-item[open] summary::after {
  content: "\2212";
  rotate: 90deg;
}
.help-item p {
  padding: 0 20px 16px;
  font-size: var(--s);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.help-item[open] {
  border-color: rgba(255, 193, 7, 0.2);
}
.help-faq-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.help-feedback-cta {
  max-width: 480px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
  background: rgba(255, 193, 7, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.12);
  border-radius: var(--mr);
}
.help-feedback-cta h2 {
  font-size: var(--l);
  font-weight: 700;
}
.help-feedback-cta p {
  font-size: var(--s);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .feedback-columns,
  .help-columns {
    flex-direction: column;
  }
  .feedback-card {
    padding: 16px;
    gap: 12px;
  }
  .help-feedback-cta {
    order: -1;
    position: static;
  }
}
