/* SwapThing formatted custom error pages */
.swapthing-error-page {
  max-width: 760px;
  margin: clamp(40px, 10vh, 96px) auto;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line, rgba(125, 167, 125, .25));
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(246,195,67,.22), transparent 34%),
    linear-gradient(135deg, rgba(16,29,21,.98), rgba(22,54,35,.95));
  box-shadow: var(--shadow, 0 24px 80px rgba(0,0,0,.24));
  color: #fff8df;
}
.swapthing-error-page h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.05em;
}
.swapthing-error-page .plain-copy {
  max-width: 58ch;
  color: rgba(255,248,223,.86);
  font-weight: 750;
}
.swapthing-error-page .action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
