.rewards-section {
  display: none;
  width: min(1100px, 100%);
  margin-inline: auto;
}

body.rewards-mode .hero-stage,
body.rewards-mode .giveaway-total,
body.rewards-mode .leaderboard-teaser,
body.rewards-mode .leaderboard-section,
body.rewards-mode .socials-section {
  display: none;
}

body.rewards-mode .below-fold {
  min-height: 100vh;
  padding-top: 0;
}

body.rewards-mode .rewards-section {
  display: block;
  padding-top: 82px;
  padding-bottom: 112px;
}

.rewards-head {
  text-align: center;
}

.rewards-title {
  margin: 0;
  color: #f7f8ff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 7.2vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(48, 82, 190, 0.15);
}

.rewards-title span {
  color: #f0b52e;
  text-shadow: 0 0 25px rgba(240, 181, 46, 0.22);
}

.rewards-kicker {
  margin: 14px 0 0;
  color: #5f82ff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.rewards-kicker span {
  margin-inline: 0.28em;
}

.rewards-how {
  min-width: 174px;
  margin-top: 26px;
  padding: 15px 26px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #315ee1 0%, #1d388d 100%);
  box-shadow: 0 9px 25px rgba(48, 96, 228, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font: 900 0.93rem/1.1 Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.rewards-how:hover,
.rewards-how:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 31px rgba(48, 96, 228, 0.55), inset 0 1px rgba(255, 255, 255, 0.1);
}

.rewards-how:focus-visible {
  outline: 2px solid #8eabff;
  outline-offset: 3px;
}

.rewards-how-panel {
  max-width: 760px;
  margin: 20px auto 0;
  padding: 18px 21px;
  border: 1px solid rgba(76, 105, 191, 0.38);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(17, 25, 53, 0.98), rgba(10, 16, 38, 0.98));
  color: #c2c7d5;
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: left;
}

.rewards-how-panel[hidden] {
  display: none;
}

.rewards-how-panel strong {
  color: #f4f5fb;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.reward-card {
  min-height: 119px;
  padding: 21px 21px 18px;
  border: 1px solid rgba(102, 126, 204, 0.24);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(29, 39, 73, 0.98), rgba(12, 17, 38, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.reward-card:hover {
  border-color: rgba(91, 126, 239, 0.5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.035);
  transform: translateY(-3px);
}

.reward-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reward-card h3 {
  margin: 0;
  color: #f5f6fc;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.reward-card strong {
  flex: 0 0 auto;
  min-width: 69px;
  padding: 11px 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffdd71 0%, #f2b729 100%);
  box-shadow: 0 8px 20px rgba(238, 180, 43, 0.3), inset 0 1px rgba(255, 255, 255, 0.5);
  color: #121209;
  font: 900 1.15rem/1 Arial, sans-serif;
  text-align: center;
}

.reward-card p {
  margin: 15px 0 0;
  color: #929bb6;
  font-size: 0.92rem;
}

.rewards-signup {
  margin: 30px 0 0;
  color: #929bb6;
  font-size: 1rem;
  text-align: center;
}

.rewards-signup a {
  color: #5e83ff;
  font-weight: 800;
  text-decoration: none;
}

.rewards-signup a:hover,
.rewards-signup a:focus-visible {
  color: #8eabff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  body.rewards-mode .rewards-section {
    padding-top: 62px;
    padding-bottom: 80px;
  }

  .rewards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .rewards-title {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .rewards-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .rewards-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 30px;
  }

  .reward-card {
    min-height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rewards-how,
  .reward-card {
    transition: none;
  }
}
