.hero {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  overflow: visible;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-size: 110px;
  white-space: nowrap;
  text-align: left;
  margin-bottom: -180px;
  animation: fade-up 0.8s ease 0.1s both;
}

.hero-grid {
  position: relative;
  display: flex;
  gap: 66px;
  align-items: flex-end;
  margin-top: 100px;
}

.hero-center {
  position: relative;
  z-index: 2;
  animation: float-y 6s ease-in-out infinite;
}

.hero-col-left {
  animation: fade-up 0.8s ease 0.25s both;
}

.hero-col-right {
  animation: fade-up 0.8s ease 0.4s both;
}

.hero-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 296px;
  flex-shrink: 0;
}

.hero-col-left p {
  width: 284px;
}

.hero-decoration {
  height: 256px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-decoration img {
  position: absolute;
  height: 173.33%;
  left: -21.4%;
  top: -36.67%;
  width: 132.51%;
  max-width: none;
}

.hero-center {
  width: 488px;
  height: 558px;
  flex-shrink: 0;
}

.hero-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 285px;
  flex-shrink: 0;
  align-items: flex-start;
}

.minds-section {
  margin-top: 80px;
}

.minds-title {
  font-size: 80px;
  margin-bottom: 30px;
}

.minds-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.minds-left-block {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  flex-shrink: 0;
}

.minds-party {
  width: 198px;
  height: 246px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.minds-party img {
  position: absolute;
  height: 126.13%;
  left: -29%;
  top: -13.59%;
  width: 156.71%;
  max-width: none;
}

.minds-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 488px;
  flex-shrink: 0;
}

.minds-text p + p {
  margin-top: 14px;
}

.minds-image {
  width: 454px;
  height: 353px;
  border-radius: 30px;
  flex-shrink: 0;
  overflow: hidden;
}

.minds-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-games-section {
  margin-top: 80px;
  background: var(--gradient-purple);
  padding: 55px 185px;
  color: var(--color-white);
}

.top-games-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.top-games-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 80px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  color: var(--color-white);
}

.top-games-desc {
  font-size: 14px;
  text-align: center;
  width: 100%;
  color: var(--color-white);
}

.top-games-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

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

.game-tile {
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.game-tile:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.game-tile:hover img {
  transform: scale(1.08);
}

.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(90, 0, 217, 0.35);
}

.minds-image img,
.gateway-image img {
  transition: transform 0.7s ease;
}

.minds-image:hover img,
.gateway-image:hover img {
  transform: scale(1.06);
}

.review-stars img {
  transition: transform 0.3s ease;
}

.review-card:hover .review-stars img {
  transform: scale(1.15) rotate(8deg);
}

.game-small {
  width: 120px;
  height: 120px;
}

.game-big {
  width: 260px;
  height: 260px;
}

.reviews-section {
  margin-top: 80px;
}

.reviews-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.reviews-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 790px;
  flex-shrink: 0;
  align-items: flex-start;
}

.reviews-title {
  font-size: 80px;
  width: 100%;
}

.reviews-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.reviews-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.review-card {
  background: var(--gradient-purple);
  border-radius: 24px;
  padding: 20px;
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--color-white);
  overflow: hidden;
}

.review-stars {
  display: flex;
  gap: 1px;
  align-items: center;
  height: 15px;
}

.review-stars img {
  width: 14px;
  height: 14px;
  display: block;
}

.review-author {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
}

.reviews-right {
  width: 380px;
  height: 591px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.reviews-right img {
  position: absolute;
  height: 116.1%;
  left: -43.34%;
  top: -7.98%;
  width: 180.59%;
  max-width: none;
}

.gateway-section {
  margin-top: 80px;
  margin-bottom: 60px;
}

.gateway-title {
  font-size: 80px;
  margin-bottom: 30px;
  width: 100%;
}

.gateway-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.gateway-image {
  width: 454px;
  height: 353px;
  border-radius: 30px;
  flex-shrink: 0;
  overflow: hidden;
}

.gateway-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gateway-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 716px;
  flex-shrink: 0;
  align-items: flex-start;
}

.contact-card {
  background: var(--gradient-purple);
  border-radius: 24px;
  padding: 20px;
  width: 100%;
  color: var(--color-white);
  overflow: hidden;
}

.contact-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 80px;
    margin-bottom: -120px;
  }

  .hero-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .minds-title,
  .gateway-title,
  .reviews-title,
  .top-games-title {
    font-size: 60px;
  }

  .minds-grid,
  .gateway-grid,
  .reviews-grid {
    flex-direction: column;
    align-items: center;
  }

  .minds-left-block {
    flex-direction: column;
    align-items: center;
  }

  .top-games-section {
    padding: 55px 30px;
  }
}

@media (max-width: 1023px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 50px;
    width: 100%;
    white-space: normal;
    word-break: break-word;
    text-align: left;
    margin-bottom: -40px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
  }

  .hero-col-left,
  .hero-col-right {
    width: 100%;
    align-items: flex-start;
  }

  .hero-col-left p {
    width: 100%;
  }

  .hero-decoration {
    width: 100%;
    max-width: 330px;
    height: 256px;
  }

  .hero-center {
    width: 100%;
    max-width: 330px;
    height: 377px;
  }

  .minds-section,
  .reviews-section,
  .gateway-section {
    margin-top: 50px;
  }

  .minds-title,
  .gateway-title,
  .reviews-title {
    font-size: 40px;
  }

  .minds-grid {
    gap: 30px;
  }

  .minds-left-block {
    width: 100%;
    align-items: flex-start;
    gap: 30px;
  }

  .minds-party {
    width: 132px;
    height: 164px;
  }

  .minds-text {
    width: 100%;
  }

  .minds-image,
  .gateway-image {
    width: 100%;
    max-width: 330px;
    height: 257px;
  }

  .top-games-section {
    padding: 55px 15px;
    margin-top: 50px;
  }

  .top-games-title {
    font-size: 40px;
  }

  .top-games-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .games-pair {
    flex-direction: row;
    gap: 20px;
  }

  .reviews-left {
    width: 100%;
  }

  .reviews-row {
    flex-direction: column;
    gap: 20px;
  }

  .review-card {
    width: 100%;
    max-width: 330px;
  }

  .reviews-right {
    width: 235px;
    height: 365px;
  }

  .gateway-grid {
    flex-direction: column-reverse;
  }

  .gateway-text {
    width: 100%;
  }

  .contact-card p {
    font-size: 16px;
  }

  .btn {
    padding: 22px 40px;
  }
}

@media (max-width: 374px) {
  .hero-title {
    font-size: 40px;
  }

  .minds-title,
  .gateway-title,
  .reviews-title,
  .top-games-title {
    font-size: 34px;
  }
}
