/* Shared by the reviewed About and MoHan support sections only. */
.flameblade-support-actions {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  margin: clamp(24px, 3vw, 32px) auto 0;
  padding-inline: clamp(0px, 2vw, 16px);
}

.flameblade-support-button {
  display: inline-flex;
  width: min(100%, 200px);
  max-width: 100%;
  min-height: 60px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--flameblade-vermilion, #c84837), #9e322b);
  box-shadow: 0 10px 24px rgba(200, 72, 55, 0.24);
  color: #fff !important;
  font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.flameblade-support-button:hover,
.flameblade-support-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(158, 50, 43, 0.32);
  filter: brightness(1.05);
}

.flameblade-support-button:focus-visible {
  outline: 3px solid rgba(200, 72, 55, 0.42);
  outline-offset: 4px;
}

.flameblade-support-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 7px 18px rgba(158, 50, 43, 0.26);
  filter: brightness(0.98);
}

@media (max-width: 560px) {
  .flameblade-support-actions {
    padding-inline: 4px;
  }
}
