.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 7px 0 84px;
  display: flex;
  align-items: flex-start;
  min-height: 880px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 713px;
  flex: 1 1 auto;
  padding-top: 98px;
  padding-right: 30px;
  padding-bottom: 60px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
}

.hero__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}

.hero__character {
  width: 537px;
  flex-shrink: 0;
  align-self: flex-start;
  height: auto;
  pointer-events: none;
}

.ticker {
  background: var(--gradient);
  height: 77px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker__track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: ticker-scroll 25s linear infinite;
  white-space: nowrap;
  padding-left: 20px;
  will-change: transform;
}

.ticker__track span {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.legacy {
  padding: 60px 0 60px;
}

.legacy__inner {
  max-width: 989px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.legacy__heading {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.17;
  color: var(--white);
  text-align: center;
  font-weight: 400;
  width: 100%;
}

.legacy__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.legacy__image {
  width: 777px;
  max-width: 100%;
  height: 436px;
  object-fit: cover;
  border-radius: 30px;
  flex-shrink: 0;
}

.champions {
  position: relative;
  background-color: var(--white-07);
  overflow: hidden;
  padding: 60px 0;
}

.champions__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.champions__inner {
  position: relative;
  z-index: 1;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.champions__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.champions__paragraph {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 874px;
  flex: 1 1 0;
}

.champions__heading {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.17;
  color: var(--white);
  font-weight: 400;
}

.champions__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  max-width: 874px;
}

.champions__character {
  width: 296px;
  height: 544px;
  object-fit: cover;
  flex-shrink: 0;
}

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

.champions__game-card {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.champions__game-thumb {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.champions__game-card:hover .champions__game-thumb {
  transform: scale(1.08);
}

.champions__game-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 24px;
}

.champions__game-card:hover .champions__game-overlay {
  opacity: 1;
}

.champions__game-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #1a1528;
  text-align: center;
  padding: 0 14px;
  line-height: 1.3;
}

.impact {
  padding: 60px 0;
}

.impact__inner {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.impact__top {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.impact__heading {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.17;
  color: var(--white);
  font-weight: 400;
  width: 543px;
  flex-shrink: 0;
}

.impact__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  max-width: 629px;
}

.impact__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}

.impact__stats {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white);
}

.impact__stat-value {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.4;
}

.impact__banner {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.action {
  padding: 0 84px 60px;
}

.action__inner {
  background: var(--gradient);
  border-radius: 50px;
  overflow: hidden;
  height: 624px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  position: relative;
}

.action__character {
  width: 390px;
  height: 564px;
  object-fit: cover;
  flex-shrink: 0;
}

.action__paragraph {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--white);
  max-width: 687px;
  flex: 1;
}

.action__heading {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.17;
  color: var(--white);
  font-weight: 400;
}

.action__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}

.action__contact {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--white);
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .hero__title {
    font-size: 110px;
  }

  .hero__character {
    width: 420px;
  }

  .champions__paragraph {
    max-width: 580px;
  }

  .champions__heading {
    font-size: 80px;
  }

  .impact__heading {
    font-size: 80px;
    width: 440px;
  }

  .action__heading {
    font-size: 80px;
  }
}

@media (max-width: 992px) {
  .hero__title {
    font-size: 80px;
  }

  .hero__character {
    width: 320px;
  }

  .champions__character {
    width: 220px;
    height: 400px;
  }

  .action__heading {
    font-size: 60px;
  }

  .action__character {
    width: 240px;
    height: 350px;
  }

  .impact__heading {
    font-size: 70px;
    width: 380px;
  }

  .action__inner {
    height: auto;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  
  .hero {
    min-height: auto;
  }

  .hero__container {
    padding: 0 15px;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .hero__text {
    padding-top: 0;
    max-width: 100%;
    width: 100%;
    gap: 30px;
    padding-right: 0;
    padding-bottom: 20px;
  }

  .hero__title {
    font-size: 56px;
    line-height: 1;
  }

  .hero__character {
    width: 247px;
    height: auto;
    align-self: flex-end;
  }

  
  .legacy__inner {
    max-width: 360px;
    padding: 0 15px;
  }

  .legacy__heading {
    font-size: 50px;
  }

  .legacy__image {
    width: 100%;
    height: 186px;
  }

  
  .champions__inner {
    padding: 0 15px;
    max-width: 360px;
  }

  .champions__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .champions__heading {
    font-size: 50px;
  }

  .champions__character {
    width: 296px;
    height: 400px;
  }

  .champions__games {
    flex-wrap: wrap;
    gap: 15px;
  }

  .champions__game-card {
    width: 157px;
    height: 157px;
  }

  .champions__game-thumb {
    width: 157px;
    height: 157px;
  }

  
  .impact__inner {
    padding: 0 15px;
    max-width: 360px;
  }

  .impact__top {
    flex-direction: column;
    gap: 30px;
  }

  .impact__heading {
    font-size: 50px;
    width: 100%;
  }

  .impact__content {
    max-width: 100%;
  }

  .impact__banner {
    height: 420px;
  }

  
  .action {
    padding: 0 15px 60px;
  }

  .action__inner {
    flex-direction: column;
    height: auto;
    padding: 30px 30px 40px;
    border-radius: 50px;
    align-items: flex-start;
    max-width: 330px;
    margin: 0 auto;
  }

  .action__character {
    width: 189px;
    height: 272px;
  }

  .action__heading {
    font-size: 50px;
  }

  .action__paragraph {
    max-width: 100%;
  }
}
