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

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

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

body.points-mode .points-section {
  display: block;
  padding-top: 88px;
  padding-bottom: 115px;
}

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

.points-title {
  margin: 0;
  color: #f7f8ff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 4.6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(48, 82, 190, 0.16);
}

.points-title span {
  color: #f0b52e;
  text-shadow: 0 0 24px rgba(240, 181, 46, 0.23);
}

.points-head p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #969fb9;
  font-size: 1rem;
  line-height: 1.5;
}

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

.points-step {
  min-height: 180px;
  padding: 25px 21px 22px;
  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;
}

.points-step: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);
}

.points-step__number {
  color: #3564ec;
  font: 900 2.4rem/1 Arial, sans-serif;
}

.points-step h3 {
  margin: 14px 0 0;
  color: #f5f6fc;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.points-step p {
  margin: 10px 0 0;
  color: #929bb6;
  font-size: 0.92rem;
  line-height: 1.45;
}

.points-signin-box {
  max-width: 560px;
  margin: 30px auto 0;
  padding: 19px;
  border: 1px solid rgba(93, 122, 207, 0.28);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(29, 39, 73, 0.98), rgba(12, 17, 38, 0.98));
}

.points-signin {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #365edd 0%, #203b95 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 Arial, sans-serif;
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.points-signin:focus-visible,
.points-winners:focus-visible {
  outline: 2px solid #8eabff;
  outline-offset: 3px;
}

.points-signin__icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  background: #9146ff;
  color: #fff;
  font: 900 0.82rem/1 Arial, sans-serif;
}

.points-winners {
  display: block;
  width: min(620px, 100%);
  min-height: 98px;
  margin: 26px auto 0;
  padding: 25px;
  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));
  color: #f5f6fc;
  cursor: pointer;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  transition: border-color 160ms ease, filter 160ms ease;
}

.points-winners:hover {
  border-color: rgba(91, 126, 239, 0.5);
  filter: brightness(1.08);
}

.points-subscribe {
  margin: 31px 0 0;
  color: #929bb6;
  font-size: 1rem;
  text-align: center;
}

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

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

@media (max-width: 900px) {
  body.points-mode .points-section {
    padding-top: 65px;
    padding-bottom: 88px;
  }

  .points-steps {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .points-step {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .points-title {
    font-size: clamp(2.9rem, 15vw, 4.1rem);
  }

  .points-head p {
    font-size: 0.92rem;
  }

  .points-steps {
    gap: 13px;
    margin-top: 30px;
  }

  .points-signin-box {
    padding: 13px;
  }

  .points-winners {
    min-height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .points-step,
  .points-signin,
  .points-winners {
    transition: none;
  }
}
