button.hero-link-button {
  color: var(--text);
  border: 1px solid rgba(244, 197, 108, 0.42);
  background: linear-gradient(135deg, rgba(244, 197, 108, 0.18), rgba(107, 201, 255, 0.12));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

button.hero-link-button:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 197, 108, 0.7);
}

.feedback-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 30;
  min-width: min(420px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 16, 30, 0.92);
  color: var(--text, #f8fafc);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.feedback-toast.is-success {
  border-color: rgba(70, 213, 154, 0.3);
  color: var(--success, #46d59a);
}

.feedback-toast.is-error {
  border-color: rgba(255, 122, 135, 0.3);
  color: var(--red, #ff7a87);
}

.feedback-dialog {
  width: min(560px, calc(100vw - 24px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
}

.feedback-dialog::backdrop {
  background: rgba(3, 8, 16, 0.64);
  backdrop-filter: blur(4px);
}

.feedback-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card, rgba(8, 16, 30, 0.96));
  color: var(--text, #f8fafc);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.feedback-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.feedback-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent, var(--gold, #f4c56c));
}

.feedback-head h3 {
  margin: 10px 0 0;
  font-size: 28px;
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", serif;
}

.feedback-icon-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text, #f8fafc);
  box-shadow: none;
  font-size: 24px;
  line-height: 1;
}

.feedback-field {
  display: grid;
  gap: 8px;
}

.feedback-field span {
  font-size: 14px;
  color: var(--muted, #95a7bf);
}

.feedback-field textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  color: var(--text, #f8fafc);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
}

.feedback-field textarea::placeholder {
  color: rgba(230, 238, 247, 0.45);
}

.feedback-field textarea:focus {
  border-color: rgba(244, 197, 108, 0.7);
  box-shadow: 0 0 0 3px rgba(244, 197, 108, 0.16);
}

.feedback-tip {
  margin: 0;
  color: var(--muted, #95a7bf);
  line-height: 1.6;
  font-size: 13px;
}

.feedback-status {
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.6;
  font-size: 14px;
}

.feedback-status.is-success {
  color: #e2fff3;
  border: 1px solid rgba(70, 213, 154, 0.25);
  background: rgba(70, 213, 154, 0.16);
}

.feedback-status.is-error {
  color: #ffe0e0;
  border: 1px solid rgba(255, 123, 123, 0.28);
  background: rgba(255, 123, 123, 0.14);
}

.feedback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.feedback-secondary-button,
.feedback-primary-button {
  min-width: 120px;
}

.feedback-secondary-button {
  color: var(--text, #f8fafc);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

@media (max-width: 720px) {
  .feedback-form {
    padding: 18px;
  }

  .feedback-head h3 {
    font-size: 24px;
  }

  .feedback-actions {
    flex-direction: column-reverse;
  }

  .feedback-secondary-button,
  .feedback-primary-button {
    width: 100%;
  }
}
