:root {
  --color-accent: #facc15;
  --color-ink: #0c0c0c;
  --color-dark: #0f0f0f;
  --color-white: #ffffff;
  --color-neutral-300: #b8b3a7;
  --color-divider: #3a352d;
  --color-text-dark: #14151a;
  --color-text-primary: #141210;
  --color-revenue: #17a36b;
  --color-neutral-500: #7a7468;
  --color-leaf: #708a03;
  --color-border-light: rgba(255, 255, 255, 0.2);

  --gradient-gold: linear-gradient(155.423deg, #d4af37 0%, #f5e6a8 50%, #d4af37 100%);
  --gradient-gold-bar: linear-gradient(143.576deg, #d4af37 0%, #f5e6a8 50%, #d4af37 100%);
  --gradient-green: linear-gradient(90deg, #708a03 0%, #245100 100%);
  --gradient-card-gold: linear-gradient(136.482deg, #ffd25e 1.63%, #fff4cd 47.63%, #ffd540 98.4%);
  --gradient-card-silver: linear-gradient(133.243deg, #d7d7d7 1.63%, #f3f3f3 47.63%, #b9b9b9 98.4%);
  --gradient-card-bronze: linear-gradient(120.105deg, #dac294 1.63%, #f0debc 47.63%, #bc9b5c 98.4%);
  --gradient-btn-gold: linear-gradient(90deg, #e7c975 0%, #cd9d37 100%);
  --hero-overlay-top: rgba(15, 15, 15, 0.5);
  --hero-overlay-bottom: rgba(15, 15, 15, 0);

  --font-primary: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Wix Madefor Display", var(--font-primary);
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fs-nav: 16px;
  --fs-login: 15px;

  --gutter: 20px;
  --maxw-content: 1640px;

  --radius-btn: 10px;
  --radius-pill: 40px;
}

@media (min-width: 768px)  { :root { --gutter: 40px;  } }
@media (min-width: 1024px) { :root { --gutter: 80px;  } }
@media (min-width: 1280px) { :root { --gutter: 140px; } }

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; padding: 0; margin: 0; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px var(--gutter);
}

.navbar__logo { flex-shrink: 0; }

.navbar__logo img {
  width: 104px;
  height: auto;
}

.navbar__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 4px;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 22px var(--gutter) 28px;
  background-color: var(--color-dark);
  border-top: 1px solid var(--color-border-light);
}

.navbar__menu.is-open { display: flex; }

.navbar__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.navbar__links a {
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  color: var(--color-white);
  transition: color 0.2s ease;
}

.navbar__links a:hover,
.navbar__links a:focus-visible { color: var(--color-accent); }

.has-caret { position: relative; padding-right: 18px; }

.has-caret::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-nav);
  font-weight: var(--fw-regular);
  white-space: nowrap;
}

.lang img {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

.login-pill {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 1px;
}

.login-pill__link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  background-color: var(--color-accent);
  color: var(--color-ink);
  font-size: var(--fs-login);
  font-weight: var(--fw-medium);
  line-height: 23px;
  transition: filter 0.2s ease;
}

.login-pill__link:hover { filter: brightness(0.95); }

@media (min-width: 1024px) {
  .navbar__logo img { width: 127px; }

  .navbar__toggle { display: none; }

  .navbar__menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 32px;
    padding: 0;
    background: none;
    border: 0;
  }

  .navbar__links {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .navbar__menu { gap: 40px; }
  .navbar__links { gap: 40px; }
}

.hero {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--hero-overlay-top) 0%,
    var(--hero-overlay-bottom) 35%
  );
}

.hero__media,
.hero__img {
  display: block;
  width: 100%;
}

.hero__img { height: auto; }

.hero__cta-hotspot {
  position: absolute;
  z-index: 5;

  left: 31%;
  top: 44.5%;
  width: 38%;
  height: 5.5%;
}

@media (min-width: 1024px) {
  .hero__cta-hotspot {
    left: 15.2%;
    top: 80%;
    width: 7.8%;
    height: 11%;
  }
}

.marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 24px;
  background-color: var(--color-dark);
}

.marquee__rule {
  width: 100%;
  height: 1px;
  background-color: var(--color-divider);
}

.marquee__viewport {
  width: 100%;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.marquee__item {
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  line-height: 24px;
  color: var(--color-neutral-300);
  white-space: nowrap;
}

.marquee__sep {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin: 0 26px;
  background: url("assets/marquee-sep.svg") center / contain no-repeat;
  transform: skewX(-0.67deg);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (min-width: 1024px) {
  .marquee {
    gap: 25px;
    padding-block: 32px;
  }
}

.text-gold,
.text-gradient-green {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gold { background-image: var(--gradient-gold); }
.text-gradient-green { background-image: var(--gradient-green); }

.podium {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-block: 40px;
  background-color: var(--color-dark);
}

.podium__title {
  width: 100%;
  max-width: var(--maxw-content);
  padding-inline: var(--gutter);
  margin: 0 auto;
  text-align: center;
  font-weight: var(--fw-semibold);
  font-size: 28px;
  line-height: 1.18;
  color: var(--color-white);
}

.podium__scene {
  display: none;
  width: 100%;
  height: auto;
}

.podium__scene-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-inline: auto;
  padding: 32px 16px;
  background: url("assets/podium-bg.png") center / cover no-repeat;
}

.podium__trophy {
  width: 60%;
  max-width: 240px;
  height: auto;
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .podium__scene { display: block; }
  .podium__scene-mobile { display: none; }
}

.giveaway {
  position: relative;
  width: calc(100% - 2 * var(--gutter));
  max-width: var(--maxw-content);
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid var(--color-divider);
  border-radius: 24px;
}

.giveaway__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.giveaway__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.giveaway__badge {
  width: 64px;
  height: auto;
}

.giveaway__heading {
  font-weight: var(--fw-semibold);
  font-size: 24px;
  line-height: 1.1;
}

.giveaway__desc {
  max-width: 716px;
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.35;
  color: var(--color-text-dark);
}

.giveaway__highlight {
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .podium { gap: 40px; padding-block: 56px; }
  .podium__title { font-size: 38px; }
  .giveaway { padding: 32px; }
  .giveaway__heading { font-size: 32px; line-height: 36px; }
  .giveaway__desc { font-size: 20px; line-height: 1.4; }
}

@media (min-width: 1024px) {
  .podium { gap: 48px; padding-block: 64px; }
  .podium__title { font-size: 46px; line-height: 1.14; }
  .giveaway__badge { width: 81px; }
}

@media (min-width: 1280px) {
  .podium__title { font-size: 56px; line-height: 64px; }
  .giveaway { padding: 36px; }
  .giveaway__heading { font-size: 40px; line-height: 44px; }
  .giveaway__desc { font-size: 24px; line-height: 32px; }
}

.leaderboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 48px var(--gutter);
  background-color: var(--color-dark);
}

.leaderboard__header {
  width: 100%;
  max-width: 1058px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.leaderboard__title {
  font-weight: var(--fw-semibold);
  font-size: 30px;
  line-height: 1.16;
  color: var(--color-white);
}

.leaderboard__desc {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
}

.leaderboard__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: var(--maxw-content);
}

.lb-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lb-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 168px;
  padding: 20px 24px;
  border-radius: 24px;
  overflow: hidden;
}

.lb-card--gold   { background-image: var(--gradient-card-gold); }
.lb-card--silver { background-image: var(--gradient-card-silver); }
.lb-card--bronze { background-image: var(--gradient-card-bronze); }

.lb-card__trophy {
  flex: 0 0 auto;
  width: auto;
  height: 140px;
}

.lb-card__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lb-card__name {
  font-weight: var(--fw-semibold);
  font-size: 20px;
  line-height: 32px;
  color: var(--color-text-primary);
}

.lb-card__profit {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lb-card__rev-label {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  color: var(--color-text-primary);
}

.lb-card__rev {
  font-weight: var(--fw-semibold);
  font-size: 40px;
  line-height: 44px;
  color: var(--color-revenue);
}

.lb-card__ribbon {
  position: absolute;
  top: 0;
  right: -3px;
  width: 118px;
  height: 118px;
  pointer-events: none;
}

.lb-card__ribbon img {
  width: 100%;
  height: 100%;
}

.lb-card__ribbon span {
  position: absolute;
  top: 38px;
  right: 23px;
  transform: rotate(45deg);
  transform-origin: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
  text-shadow: 1px -1px 2.1px rgba(0, 0, 0, 0.15);
}

.lb-table-wrap {
  width: 100%;
  border: 0.5px solid var(--color-neutral-500);
  border-radius: 24px;
  overflow: hidden;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.lb-table th,
.lb-table td {
  height: 60px;
  padding: 0 12px;
  vertical-align: middle;
}

.lb-table .col-top  { width: 18%; text-align: center; }
.lb-table .col-name { width: 52%; text-align: left; }
.lb-table .col-rev  { width: 30%; text-align: center; }

.lb-table thead tr {
  background-image: var(--gradient-gold-bar);
  border-bottom: 1px solid rgba(201, 168, 90, 0.6);
}

.lb-table thead th {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  border: 0;
}

.lb-table tbody td {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: var(--color-white);
  border: 0;
}

.lb-table tbody .col-rev {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
}

.lb-table tbody tr:nth-child(even) {
  background-color: rgba(51, 51, 51, 0.15);
}

@media (min-width: 768px) {
  .leaderboard { gap: 44px; padding-block: 56px; }
  .leaderboard__title { font-size: 42px; }
  .leaderboard__desc { font-size: 18px; line-height: 30px; }
  .lb-table th, .lb-table td { height: 68px; padding: 0 24px; }
}

@media (min-width: 1024px) {
  .leaderboard { gap: 48px; padding-block: 64px; }
  .leaderboard__title { font-size: 56px; line-height: 64px; }

  .leaderboard__body {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }

  .lb-cards {
    flex: 0 0 auto;
    width: 40%;
    max-width: 520px;
  }

  .lb-table-wrap { flex: 1 1 auto; }
}

@media (min-width: 1280px) {
  .lb-cards { width: 520px; }
}

.howto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 48px var(--gutter);
  background-color: var(--color-dark);
}

.howto__title {
  width: 100%;
  text-align: center;
  font-weight: var(--fw-semibold);
  font-size: 30px;
  line-height: 1.16;
  color: var(--color-white);
}

.howto__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: var(--maxw-content);
}

.join-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 36px 24px;
  border: 1px solid var(--color-leaf);
  border-radius: 24px;
  text-align: center;
}

.join-card__badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background-image: var(--gradient-green);
}

.join-card__badge img {
  width: 34px;
  height: 34px;
}

.join-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.join-card__title {
  font-weight: var(--fw-semibold);
  font-size: 24px;
  line-height: 32px;
  color: var(--color-white);
}

.join-card__desc {
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 30px;
  color: var(--color-white);
}

.join-card__highlight {
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
}

.rewards {
  position: relative;
  width: 100%;
  max-width: var(--maxw-content);
  border-radius: 24px;
  overflow: hidden;
  padding: 40px 28px;
  isolation: isolate;
}

.rewards__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.rewards__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: center bottom;
}

.rewards::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 20, 10, 0.65) 0%, rgba(8, 20, 10, 0) 55%);
}

.rewards__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 567px;
}

.rewards__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rewards__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rewards__heading {
  font-weight: var(--fw-semibold);
  font-size: 28px;
  line-height: 1.15;
}

.rewards__list {
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .rewards { min-height: 560px; }
}

.rewards__btn {
  align-self: flex-start;
  padding: 14px 22px;
  border-radius: 100px;
  background-image: var(--gradient-btn-gold);
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 18px;
  line-height: 26px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.rewards__btn:hover,
.rewards__btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 22px rgba(205, 157, 55, 0.45);
}

.rewards__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .rewards__btn { transition: filter 0.2s ease, box-shadow 0.2s ease; }
  .rewards__btn:hover,
  .rewards__btn:focus-visible { transform: none; }
}

@media (min-width: 768px) {
  .howto { gap: 44px; padding-block: 56px; }
  .howto__title { font-size: 42px; }
  .howto__cards { grid-template-columns: repeat(2, 1fr); }
  .rewards { padding: 56px 48px; }
  .rewards__list { line-height: 30px; }

  .rewards__bg img { object-position: right center; }
  .rewards::before {
    background: linear-gradient(90deg, rgba(8, 20, 10, 0.6) 0%, rgba(8, 20, 10, 0) 65%);
  }
}

@media (min-width: 1024px) {
  .howto { gap: 48px; padding-block: 64px; }
  .howto__title { font-size: 56px; line-height: 64px; }
  .howto__cards { gap: 40px; }
  .rewards { padding: 64px 90px; }
  .rewards__heading { font-size: 40px; line-height: 44px; }
}

@media (min-width: 1280px) {
  .howto__cards { grid-template-columns: repeat(4, 1fr); }
}

