.gameDescription {
  margin-top: 100px;
  padding-bottom: 200px;
  /* background-image: url(../img/gameDescription/bg.png); */
  /*background-size: cover; !* Растягивает фон по всей ширине *!*/
}

.gameDescription__list_container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 100px;
}

.gameDescription__item_container {
  display: flex;
  justify-content: space-between;
  /* gap: 200px; */
  align-items: center;
}

.gameDescription__descr_container_title {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

.gameDescription_content_title {
  margin-bottom: 0px !important;
  top: 0px !important;
  font-size: 34px;
}

.gameDescription__item_container:nth-child(odd) {
  flex-direction: row;
}

.gameDescription__item_container:nth-child(even) {
  flex-direction: row-reverse;
}

.gameDescription__descr_container {
  padding-top: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  /* Полупрозрачный фон */
  border-radius: 16px;
  /* Закругленные углы */
  /* Граница */
  border: 1px solid rgba(255, 255, 255, 0.18);
  /* Полупрозрачный бордер */
  /* Тень для бордера (если нужно добавить эффект свечения) */
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
  height: 100%;
  width: 738px;
}

.gameDescription__descr_h3 {
  font-family: "Work Sans 800";
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ffc700;
  margin-bottom: 50px;
  /* max-width: 300px !important; */
}

.collections_descr_li {
  font-size: 20px;
}

.gameDescription__descr_h4 {
  /* max-width: 300px; */
}

.gameDescription__descr_list {
  padding-left: 45px;
  margin-top: 30px;
}

.gameDescription__descr_p {}

.gameDescription_img {
  /* border-radius: 10px; */
}

/* MOBILE ////////////////////////////////////////////////////////////////////////// */
.gameDescription__item_container {
  display: flex;
}


.gameDescription__item_container2 {
  display: none;
  flex-direction: column;
  justify-content: space-start;
  gap: 50px;
}

.gameDescription__descr_container2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.gameDescription__descr_h3_mobile {
  /* font-family: "Work Sans 800";
  font-size: 48px; */
  line-height: 100%;
  text-transform: uppercase;
  color: #ffc700;
  margin-bottom: 20px;
}

.gameDescription__list_container2 {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.gameDescription_img_bg_1 {
  position: absolute;
  top: 250px;
  left: 82px;
  z-index: -1;
}

/* info-section */

.info-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px 70px;

  /* Градиентный фон */
  background: linear-gradient(90deg, #55007A 0%, #6D008D 100%);
  border-radius: 16px;

  /* Полупрозрачная обводка */
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;

  gap: 50px;
  margin-top: 50px;

  text-overflow: hidden;
}

.info-content {
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.info-content h2 {
  font-size: 32px;
  font-family: "Work Sans 700";
  color: #ffc700;
  font-weight: bold;
  line-height: 100%;
}

.info-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.info-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 20px;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  width: 300px;
}

.info-btn img {
  width: 24px;
  height: 24px;
}

.info-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Футбольный мяч */
.info-ball {
  position: absolute;
  right: -10px;
  width: 67px;
  z-index: 0;
}

.info-bg {
  position: absolute;
  right: 0;
  z-index: 0;
  left: 0;
}

@media screen and (max-width: 1440px) {
  .gameDescription {
    margin-top: 100px;
  }

  @media screen and (max-width: 1100px) {
    .gameDescription__item_container {
      /* display: none; */
    }

    .gameDescription__list_container {
      /* display: none; */
      gap: 50px;
      margin-top: 50px;
    }

    .gameDescription__item_container2 {
      display: flex;
      margin-top: 50px;
    }

    .gameDescription {
      margin-top: 100px;
    }

    /* .gameDescription_img {
      display: none;
    } */

    .gameDescription__descr_container {
      padding: 20px;
    }

    .gameDescription__descr_list {
      padding-left: 20px;
    }

    .gameDescription_content_title {
      font-size: 20px;
      text-align: left;
    }

    .gameDescription__descr_container_title img {
      width: 50px;
    }


    .info-section {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 20px 20px;
    }

    .info-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .info-ball {
      bottom: 40px;
    }
  }

  @media screen and (max-width: 767px) {
    .gameDescription {
      margin-top: 500px;
    }

    .gameDescription__item_container2 {
      display: flex;
      margin-top: 0px;
      gap: 20px;
    }

    .info-content {
      text-align: center;
    }

    .info-ball {
      display: none;
    }
  }

  @media screen and (max-width: 479px) {
    .gameDescription {
      margin-top: 500px;
    }

    .collections_title {
      line-height: 34px !important;
    }

    .info-btn {
      width: 200px;
    }
  }

  @media screen and (max-width: 319px) {
    .gameDescription {
      margin-top: 500px;
    }
  }