/* Homepage shortcut and Bitcoin reading controls share the site's black-gold capsule language. */
.hero-skip-button {
  min-height: 48px;
  margin-top: 14px;
  padding: 0 28px;
  border: 1px solid rgba(218, 181, 96, 0.48);
  border-radius: 999px;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 223, 159, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%),
    #090908;
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 173, 0.025),
    0 12px 30px rgba(0, 0, 0, 0.34);
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.hero-skip-button::before,
.bitcoin-trigger::before {
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 222, 137, 0.18) 48%, transparent 78%);
  opacity: 0;
  position: absolute;
  inset: 0;
  transform: translateX(-38%);
  transition: opacity 0.28s ease, transform 0.42s ease;
}

.hero-skip-button:hover,
.hero-skip-button:focus-visible {
  border-color: rgba(246, 223, 159, 0.86);
  color: #fff0bd;
  outline: none;
  box-shadow: 0 0 0 1px rgba(218, 181, 96, 0.09), 0 0 26px rgba(218, 181, 96, 0.2);
  transform: translateY(-2px);
}

.hero-skip-button:hover::before,
.hero-skip-button:focus-visible::before,
.bitcoin-trigger:hover::before,
.bitcoin-trigger:focus-visible::before {
  opacity: 1;
  transform: translateX(38%);
}

.hero-skip-button:active,
.bitcoin-trigger:active {
  transform: translateY(0) scale(0.985);
}

.bitcoin-trigger-stack {
  gap: 10px;
  margin: -3px 0 13px;
}

.bitcoin-trigger {
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid rgba(218, 181, 96, 0.38);
  border-radius: 999px;
  color: var(--gold-light);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%),
    rgba(8, 8, 7, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 230, 168, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.bitcoin-trigger:hover,
.bitcoin-trigger:focus-visible {
  border-color: rgba(246, 223, 159, 0.78);
  color: #fff0be;
  outline: none;
  box-shadow: 0 0 22px rgba(218, 181, 96, 0.16);
  transform: translateX(3px);
}

.bitcoin-trigger span {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-skip-button,
  .bitcoin-trigger,
  .hero-skip-button::before,
  .bitcoin-trigger::before {
    transition: none;
  }
}
