body {
  font-family: "Roboto Flex", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

html {
  scroll-behavior: smooth;
}

.font-inter {
  /* Use Roboto Flex everywhere to avoid font swaps */
  font-family: "Roboto Flex", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

/* Custom Arrow Button Style */
.custom-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0.66px solid #d9d9d9;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: plus-lighter;
}

.bonus-gradient {
  background: linear-gradient(to right, #f4a81e, #ffce10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.radial-step-icon {
  border: 0.66px solid #d9d9d9;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 9999px;
  padding: 0.75rem; /* matches p-3 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 1rem auto; /* mx-auto mb-4 */
  mix-blend-mode: plus-lighter;
}

/* Respect reduced motion for bouncing arrow */
@media (prefers-reduced-motion: reduce) {
  .animate-bounce {
    animation: none !important;
  }
}

/* Reveal on scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Simple delay helpers for staggered reveals */
.reveal.delay-1 { transition-delay: 120ms; }
.reveal.delay-2 { transition-delay: 240ms; }
.reveal.delay-3 { transition-delay: 360ms; }

/* Respect reduced motion: show content without animation */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* 
.sponsor-box {
  background: linear-gradient(90deg, #1E1E1E 0%, #303030 50%, #1E1E1E 100%);
  border: 0.5px solid #D9D9D9;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 5px 1px #5E5E5E;
} */
#promoStatusWrapper .promo-pill,
.promo-pill {
  background: linear-gradient(120deg, rgba(13, 94, 36, 0.9) 0%, rgba(8, 60, 22, 0.95) 100%);
  border: 1px solid rgba(98, 255, 128, 0.45);
  box-shadow: 0 12px 35px rgba(2, 30, 10, 0.45);
  color: #62ff80;
}

.promo-pill__icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.promo-pill__label {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7cde64;
}

.promo-pill__name {
  color: #ffffff;
}

.promo-pill__status {
  color: #7cde64;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.promo-pill__input {
  display: none;
}

.promo-pill--modal.editing {
  background: transparent;
  border: none;
  box-shadow: none;
}

.promo-pill--modal.editing .promo-pill__icon,
.promo-pill--modal.editing .promo-pill__status,
.promo-pill--modal.editing .promo-pill__edit {
  display: none;
}

.promo-pill--modal.editing + #regPromoTagline {
  display: none !important;
}

.promo-pill--modal.editing .promo-pill__input {
  display: block;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font: inherit;
  text-align: center;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.promo-pill__edit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(124, 222, 100, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.promo-pill__edit:hover {
  background: rgba(124, 222, 100, 0.18);
  border-color: rgba(124, 222, 100, 0.8);
  transform: translateY(-1px);
}

.promo-pill__edit img {
  pointer-events: none;
}

.promo-pill--modal {
  width: fit-content;
}

#regPromoInputWrapper[data-invalid="true"] {
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.45);
  border-color: rgba(248, 113, 113, 0.65);
}
