:root {
  --purple: #741cff;
  --purple-dark: #3d087d;
  --pink: #ff27a9;
  --orange: #ff7a18;
  --yellow: #ffd84d;
  --white: #ffffff;
  --dark: #21102f;
  --light: #faf6ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}


/* HEADER */

.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 20;
  padding: 18px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 14px;
  font-size: 24px;
}

.brand strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
}

.brand span {
  display: block;
  font-size: 11px;
  opacity: .85;
}

.nav-btn {
  color: white;
  font-weight: 900;
  padding: 11px 20px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  box-shadow: 0 8px 25px rgba(255,74,160,.35);
}


/* HERO */

.hero {
  min-height: 850px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
  padding: 135px 0 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,80,190,.7), transparent 25%),
    radial-gradient(circle at 85% 35%, rgba(255,151,36,.65), transparent 27%),
    linear-gradient(135deg, #3e087e, #7622e8 45%, #d719a0 75%, #ff6d18);
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  font-weight: 900;
  letter-spacing: .5px;
  animation: float 3s ease-in-out infinite;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(65px, 12vw, 125px);
  line-height: .85;
  font-weight: 900;
  letter-spacing: -6px;
  text-shadow: 0 10px 0 rgba(70,0,100,.25);
}

.hero h1 span {
  background: linear-gradient(180deg, #fff, #ffd43d 45%, #ff7c18);
  -webkit-background-clip: text;
  color: transparent;
}

.hero h2 {
  margin-top: 25px;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
}

.hero-text {
  max-width: 650px;
  margin: 15px auto;
  font-size: 18px;
  line-height: 1.7;
  opacity: .95;
}

.hero-text strong {
  color: #ffe144;
}


/* REWARD BOX */

.reward-box-wrap {
  position: relative;
  width: 280px;
  height: 240px;
  margin: 30px auto 10px;
}

.reward-box {
  position: absolute;
  width: 210px;
  height: 160px;
  left: 35px;
  top: 55px;
  filter: drop-shadow(0 25px 20px rgba(35,0,70,.4));
  animation: boxFloat 3s ease-in-out infinite;
}

.box-body {
  position: absolute;
  width: 100%;
  height: 110px;
  bottom: 0;
  border-radius: 10px 10px 25px 25px;
  border: 5px solid #ffb900;
  background: linear-gradient(135deg, #6a1cff, #bd1bd8);
  overflow: hidden;
}

.box-lid {
  position: absolute;
  width: 225px;
  height: 55px;
  left: -7px;
  top: 0;
  border: 5px solid #ffcc29;
  border-radius: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #ff6f19, #ff2a9d);
}

.ribbon {
  width: 30px;
  height: 100%;
  margin: auto;
  background: #ffd633;
}

.box-logo {
  font-size: 52px;
  margin-top: 25px;
}

.coins {
  position: absolute;
  width: 100%;
  bottom: 10px;
  font-size: 24px;
}

.box-light {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.25), transparent 60%);
}

.spark {
  position: absolute;
  color: #ffe55a;
  font-size: 35px;
  animation: sparkle 1.5s infinite;
}

.spark-1 {
  top: 25px;
  left: 0;
}

.spark-2 {
  right: 0;
  top: 70px;
  animation-delay: .5s;
}

.spark-3 {
  bottom: 20px;
  left: 10px;
  animation-delay: .9s;
}


/* BUTTON */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 900;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #ff8b13, #ff269f);
  box-shadow: 0 12px 30px rgba(255,55,160,.4);
}

.btn-secondary {
  color: white;
  border: 2px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
}

.btn-white {
  color: #7b1cff;
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.small-note {
  font-size: 11px;
  margin-top: 15px;
  opacity: .75;
}


/* SECTION */

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.section-title h2 {
  margin: 8px 0;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
}

.section-title p {
  color: #735e7f;
}


/* REGISTRATION */

.bonus-section {
  background: white;
}

.registration-card {
  max-width: 850px;
  margin: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(120deg, #7021ee, #e321a7, #ff7918);
  box-shadow: 0 25px 50px rgba(104,20,170,.2);
}

.bonus-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 42px;
  background: rgba(255,255,255,.2);
  border-radius: 25px;
}

.bonus-info small {
  font-weight: 900;
  opacity: .8;
}

.bonus-info h3 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
}

.bonus-info p {
  opacity: .9;
}

.bonus-badge {
  margin-left: auto;
  background: #ffe044;
  color: #6e16a0;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 900;
}


/* STEPS */

.how-section {
  background: #faf6ff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  background: white;
  padding: 30px 22px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(86,35,110,.08);
  border: 1px solid #f0e6ff;
}

.step-number {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 12px;
  font-weight: 900;
  color: #d4c1e4;
}

.step-icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.step-card p {
  color: #806b8a;
  line-height: 1.6;
  font-size: 14px;
}


/* REWARD */

.reward-section {
  color: white;
  background:
    radial-gradient(circle at 10% 30%, #e423a8, transparent 30%),
    radial-gradient(circle at 90% 70%, #ff761b, transparent 30%),
    linear-gradient(135deg, #3b0879, #701ce0);
}

.section-title.light p {
  color: rgba(255,255,255,.75);
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reward-card {
  position: relative;
  padding: 35px 20px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(15px);
}

.reward-card.featured {
  transform: translateY(-12px);
  background: linear-gradient(145deg, #ff8a18, #ff299d);
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.reward-card-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.reward-card span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  opacity: .8;
}

.reward-card strong {
  display: block;
  margin: 5px 0;
  font-size: 35px;
  font-weight: 900;
}

.reward-card small {
  opacity: .8;
}

.hot-label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #ffe044;
  color: #67138e;
  font-size: 11px;
  font-weight: 900;
}

.claim-box {
  max-width: 850px;
  margin: 35px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border-radius: 25px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}

.claim-icon {
  font-size: 42px;
}

.claim-box h3 {
  margin-bottom: 5px;
}

.claim-box p {
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}


/* BENEFITS */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit {
  padding: 30px 20px;
  border-radius: 25px;
  text-align: center;
  background: white;
  border: 1px solid #eee1ff;
  transition: .25s;
}

.benefit:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(100,25,140,.1);
}

.benefit > div {
  font-size: 45px;
  margin-bottom: 15px;
}

.benefit h3 {
  margin-bottom: 8px;
}

.benefit p {
  color: #7b6886;
  font-size: 14px;
  line-height: 1.6;
}


/* SPONSOR */

.sponsor-section {
  background: #fff5fc;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.level-card {
  padding: 28px 15px;
  text-align: center;
  border-radius: 22px;
  background: white;
  border: 2px solid #f2ddff;
}

.level-card span {
  display: block;
  color: #9c75b4;
  font-size: 12px;
  font-weight: 900;
}

.level-card strong {
  display: block;
  margin: 8px 0;
  color: #7b1cff;
  font-size: 38px;
  font-weight: 900;
}

.level-card small {
  color: #907b9d;
}

.main-level {
  background: linear-gradient(145deg, #761cff, #ec219e);
  border: none;
  color: white;
  box-shadow: 0 15px 35px rgba(123,28,255,.2);
}

.main-level span,
.main-level strong,
.main-level small {
  color: white;
}


/* PAYMENT */

.payment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #4a0c91, #ff2d9e);
}

.payment-card {
  max-width: 900px;
  margin: auto;
  padding: 45px;
  text-align: center;
  border-radius: 35px;
  color: white;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(15px);
}

.payment-icon {
  font-size: 45px;
}

.payment-card h2 {
  margin: 10px 0;
  font-size: 38px;
}

.payment-card p {
  color: rgba(255,255,255,.8);
}

.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.payment-methods span {
  padding: 12px 18px;
  border-radius: 50px;
  background: white;
  color: #67158f;
  font-weight: 900;
}

.limits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.limits div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.12);
}

.limits small,
.limits strong {
  display: block;
}

.limits small {
  font-size: 10px;
  opacity: .7;
}

.limits strong {
  margin-top: 5px;
  font-size: 19px;
}


/* CTA */

.cta-section {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, #ff9b1c, transparent 30%),
    linear-gradient(135deg, #ff289d, #7119e7);
  color: white;
}

.cta-icon {
  font-size: 60px;
  animation: boxFloat 2.5s infinite;
}

.cta-content h2 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 900;
  margin: 15px 0;
}

.cta-content p {
  margin-bottom: 25px;
  opacity: .9;
}

.cta-content small {
  display: block;
  margin-top: 15px;
  opacity: .75;
}


/* FOOTER */

footer {
  padding: 50px 0 30px;
  text-align: center;
  background: #21052f;
  color: white;
}

.footer-brand {
  font-size: 25px;
  font-weight: 900;
}

footer > .container > p {
  color: #bda8c9;
  margin: 5px 0 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #e2cce9;
  font-size: 13px;
}

.disclaimer {
  max-width: 750px;
  margin: 25px auto;
  color: #907a9d;
  font-size: 11px;
  line-height: 1.6;
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #79627f;
  font-size: 11px;
}


/* ANIMATION */

@keyframes boxFloat {
  0%,100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes float {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes sparkle {
  0%,100% {
    transform: scale(.6) rotate(0);
    opacity: .4;
  }

  50% {
    transform: scale(1.3) rotate(25deg);
    opacity: 1;
  }
}


/* MOBILE */

@media (max-width: 800px) {

  .hero {
    min-height: 820px;
    padding-top: 120px;
  }

  .nav-btn {
    padding: 9px 13px;
    font-size: 11px;
  }

  .brand strong {
    font-size: 18px;
  }

  .steps,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reward-grid {
    grid-template-columns: 1fr;
  }

  .reward-card.featured {
    transform: none;
  }

  .level-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .registration-card {
    flex-direction: column;
    text-align: center;
  }

  .bonus-badge {
    margin: 0;
  }

  .limits {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 500px) {

  .section {
    padding: 65px 0;
  }

  .steps,
  .benefit-grid,
  .level-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-text {
    font-size: 15px;
  }

  .reward-box-wrap {
    transform: scale(.9);
  }

  .claim-box {
    align-items: flex-start;
  }

  .payment-card {
    padding: 30px 20px;
  }

  .payment-card h2 {
    font-size: 30px;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}