:root {
  --color-dark: #0f0f0f;
  --color-white: #ffffff;
  --color-neutral-300: #b8b3a7;
  --color-divider: #3a352d;

  --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;

  --fs-nav: 16px;

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

@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;
}

.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__textbox {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 32px var(--gutter) 0;
}

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

.hero__title {
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 1.2;
  color: #facc15;
}

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

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__btn {
  align-self: flex-start;
  padding: 10px 32px;
  border-radius: 100px;
  background-color: #facc15;
  color: #141210;
  font-weight: var(--fw-semibold);
  font-size: 18px;
  line-height: 1.3;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero__btn:hover,
.hero__btn:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hero__date {
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-white);
}

.hero__exclusive {
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.4;
  color: #facc15;
}

@media (min-width: 768px) {
  .hero__textbox { gap: 24px; padding-top: 44px; }
  .hero__title { font-size: 44px; }
  .hero__subtitle { font-size: 22px; }
  .hero__btn { font-size: 22px; padding: 12px 40px; }
  .hero__date { font-size: 20px; }
  .hero__exclusive { font-size: 24px; }
}

@media (min-width: 1024px) {
  .hero__textbox {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: 58%;
    padding: 0 0 0 var(--gutter);
    gap: 28px;
  }
  .hero__title { font-size: 52px; }
  .hero__subtitle { font-size: 26px; }
  .hero__btn { font-size: 24px; }
  .hero__date { font-size: 20px; }
  .hero__exclusive { font-size: 26px; }
}

@media (min-width: 1280px) {
  .hero__textbox { gap: 32px; }
  .hero__title { font-size: 64px; line-height: 1.25; }
  .hero__subtitle { font-size: 32px; line-height: 1.44; }
  .hero__cta { gap: 16px; }
  .hero__btn { font-size: 28px; padding: 12px 48px; }
  .hero__date { font-size: 24px; }
  .hero__exclusive { font-size: 32px; }
}

.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;
  }
}

.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: block;
  width: 100%;
  height: auto;
}

.podium__title-gold { color: #facc15; }

/* Top 4 & 5 pill */
.podium-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: calc(100% - 2 * var(--gutter));
  padding: 6px 20px;
  background-color: #141210;
  border: 1px solid #f3d48b;
  border-radius: 32px;
}

.podium-pill__laurel {
  width: auto;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
  pointer-events: none;
}

.podium-pill__laurel--right { transform: scaleX(-1); }

.podium-pill__text { text-align: center; }

.podium-pill__title {
  margin: 0;
  font-weight: var(--fw-semibold);
  font-size: 28px;
  line-height: 1.1;
  color: #facc15;
}

.podium-pill__sub {
  margin: 0;
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-white);
}

.podium-pill__gold {
  font-weight: var(--fw-semibold);
  color: #facc15;
}

@media (min-width: 768px) {
  .podium { gap: 40px; padding-block: 56px; }
  .podium__title { font-size: 38px; }
  .podium-pill { gap: 24px; padding: 6px 24px; }
  .podium-pill__laurel { height: 80px; }
  .podium-pill__title { font-size: 34px; }
  .podium-pill__sub { font-size: 18px; }
}

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

@media (min-width: 1280px) {
  .podium__title { font-size: 48px; line-height: 1.2; }
  .podium-pill { gap: 32px; }
  .podium-pill__laurel { height: 96px; }
  .podium-pill__title { font-size: 40px; line-height: 44px; }
  .podium-pill__sub { font-size: 20px; line-height: 30px; }
}

.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);
  opacity: 0.8;
}

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

.text-gold-solid { color: #facc15; }

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

.lb-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid #383838;
  border-radius: 24px;
}

.lb-card__lead {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.lb-card__medal {
  flex: 0 0 auto;
  width: 56px;
  height: auto;
}

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

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

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

.lb-card__rev-label {
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 26px;
  color: #b8b3a7;
}

.lb-card__rev {
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 26px;
  color: #facc15;
}

.lb-pill {
  flex: 0 0 auto;
  padding: 4px 24px;
  border-radius: 99px;
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 22px;
  color: #141210;
  white-space: nowrap;
}

.lb-pill--gold   { background-image: linear-gradient(103deg, #d4af37 0%, #f5e6a8 50%, #d4af37 100%); }
.lb-pill--silver { background-image: linear-gradient(134deg, #7d7d7d 2%, #ffffff 57%, #7d7d7d 98%); }
.lb-pill--bronze { background-image: linear-gradient(180deg, #c7743c 0%, #f0b27e 45%, #e9a46e 70%, #ffd5af 100%); }
.lb-pill--flat   { background-color: #facc15; }

.lb-table-wrap {
  width: 100%;
  border: 0.5px solid #383838;
  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;
  text-align: center;
}

.lb-table .col-top  { width: 22%; }
.lb-table .col-name { width: 40%; }
.lb-table .col-rev  { width: 38%; }

.lb-table thead tr {
  background-color: #facc15;
  border-bottom: 1px solid rgba(201, 168, 90, 0.6);
}

.lb-table thead th {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: 16px;
  color: #141210;
}

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

.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-card { padding: 32px; }
  .lb-card__lead { gap: 32px; }
  .lb-card__medal { width: 72px; }
  .lb-card__name { font-size: 24px; line-height: 32px; }
  .lb-table th, .lb-table td { height: 68px; padding: 0 24px; }
  .lb-table thead th { font-size: 18px; }
}

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

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

  .lb-cards { flex: 1 1 0; }
  .lb-table-wrap { flex: 1 1 0; }
}

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

.howto__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  max-width: none;
  height: 333px;
  background: url("assets/light.png") top center / contain no-repeat;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.howto__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

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

.howto__subtitle {
  max-width: 720px;
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 28px;
  color: #e5e7eb;
}

.howto__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: var(--maxw-content);
}

.howto__steps::before {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
  background: url("assets/howto-bg.png") center / 100% 100% no-repeat;
  transform: translate(0.4%, -3%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
}

.step__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #1a1a1a;
}

.step__icon img {
  width: 36px;
  height: 36px;
}

.step__title {
  font-weight: var(--fw-semibold);
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-white);
}

.step__desc {
  max-width: 460px;
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 28px;
  color: var(--color-white);
}

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

.rewards-row__promo {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.rewards-row__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rewards-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rewards-block__title {
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-white);
}

.reward-list {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.reward-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #3a352d;
}

.reward-list__row dt {
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 24px;
  color: #facc15;
}

.reward-list__row dd {
  margin: 0;
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 30px;
  color: var(--color-white);
}

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

.rewards-note__title {
  font-weight: var(--fw-regular);
  font-size: 24px;
  line-height: 1.3;
  color: #f9fafb;
}

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

.rewards-row__btn {
  align-self: flex-start;
  padding: 14px 32px;
  border-radius: 100px;
  background-color: #facc15;
  color: #141210;
  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-row__btn:hover,
.rewards-row__btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 22px rgba(205, 157, 55, 0.45);
}

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

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

@media (min-width: 768px) {
  .howto { gap: 44px; padding-block: 56px; }
  .howto__title { font-size: 42px; }
  .howto__subtitle { font-size: 18px; line-height: 30px; }
  .howto__steps {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    min-height: 560px;
  }
  .howto__steps::before { display: block; }
  .step { padding: 48px 56px; gap: 20px; justify-content: center; }

  /* Gold corner glows: Step 1 from bottom-right, Step 4 from top-left */
  .step:nth-child(1) {
    background: radial-gradient(ellipse farthest-side at bottom right, rgba(250, 204, 21, 0.08) 0%, rgba(250, 204, 21, 0) 100%);
  }
  .step:nth-child(4) {
    background: radial-gradient(ellipse farthest-side at top left, rgba(250, 204, 21, 0.08) 0%, rgba(250, 204, 21, 0) 100%);
  }
  .step__title { font-size: 24px; line-height: 32px; }
  .step__desc { font-size: 18px; line-height: 30px; }

  .rewards-row { position: relative; z-index: 1; flex-direction: row; align-items: flex-start; gap: 40px; }
  .rewards-row__promo { flex: 1 1 0; min-width: 0; }
  .rewards-row__body { flex: 1 1 0; min-width: 0; }
}

@media (min-width: 1024px) {
  .howto { gap: 48px; padding-block: 64px; }
  .howto__title { font-size: 48px; line-height: 1.2; }
  .rewards-block__title { font-size: 40px; line-height: 44px; }
  .rewards-note__title { font-size: 28px; line-height: 36px; }
  .rewards-note__text,
  .reward-list__row dd { font-size: 18px; line-height: 30px; }
  .reward-list__row { padding: 20px 0; }
}

