body {
  background: radial-gradient(circle at top left, #f7f2e9, #f0f5ff 45%, #f8fafc);
  min-height: 100vh;
}
.hero {
  padding: 3rem 1.5rem;
}
.result-card {
  border-left: 4px solid #0d6efd;
}
.step {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  word-break: break-word;
}
#steps .step {
  text-align: center;
}
.redirect-arrow {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.15rem 0;
}
.redirect-arrow .arrow-icon {
  font-size: 1rem;
  animation: arrow-bob 1.8s ease-in-out infinite;
  display: inline-block;
}
.redirect-arrow .arrow-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chain-label {
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.35rem;
}

@keyframes arrow-bob {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(3px);
    opacity: 0.85;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}
