@font-face {
  font-family: 'Helvetica', sans-serif;
  src: url(../fonts/helvetica.woff2);
  font-style: none;
  font-weight: 400;
}

@font-face {
  font-family: 'Helvetica-Bold', sans-serif;
  src: url(../fonts/helvetica-bold.woff2);
  font-style: none;
  font-weight: 700;
}

html {
  box-sizing: border-box;
}

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

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

li {
  list-style: none;
}

img {
  max-width: 100%;
}

button {
  color: inherit;
  font-size: inherit;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Helvetica', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #5C5C5E;
  min-width: 320px;
  overflow-x: hidden;
}

:root {
  --top-title: 96px;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0px 10px;
}

.section__title {
  text-transform: uppercase;
  font-weight: 400;
}

.header {
  border-bottom: 1px solid #CACAD6;
}

.nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  height: 80px;
  position: relative;
}

.menu-btn {
  width: 26px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}

.menu-btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
}

.menu {
  display: flex;
  gap: 0 20px;
}

.menu__link {
  position: relative;
  transition: all .3s ease;
}

.menu__link::after {
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -4px;
  transition: all .3s ease;
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
}

.menu__link:hover::after {
  width: 100%;
  transition: width .3s ease;
}

.logo {
  justify-self: center;
  display: flex;
}

.basket {
  position: relative;
  justify-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.basket span {
  display: none;
}

.basket:hover {
  border-radius: 100%;
  background-color: #f6f4f5;
  transition: all .3s ease;
}

.basket--on span {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #000000;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -5px;
  bottom: 0;
}

.top {
  min-height: calc(100vh - 81px);
  background: url(../images/top-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.title {
  padding-top: calc((50vh - 81px) - ((var(--top-title) / 2) + var(--top-title)));
  font-size: var(--top-title);
  margin-bottom: 10px;
  line-height: var(--top-title);
  font-weight: 400;
}

.subtitle {
  font-size: 36px;
  margin-bottom: 5px;
  line-height: 41px;
}

.top__text {
  font-size: 13px;
  margin-bottom: 50px;
  line-height: 15px;
}

.btn__wrapper {
  display: flex;
  align-items: center;
}

.buy-btn__text {
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  width: 300px;
  height: 60px;
  color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
  outline: none;
}

.buy-btn__price {
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
  outline: none;
  width: 300px;
  height: 60px;
  border: 1px solid transparent;
  border-image: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  border-image-slice: 1;
  background: rgba(232, 230, 231, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
  color: #5C5C5E;
  font-weight: 700;
}

.buy-btn__price:before,
.buy-btn__text:before {
  height: 0%;
  width: 2px;
}

.buy-btn__price:after,
.buy-btn__text:after {
  width: 0%;
  height: 2px;
}

.buy-btn__price:hover:before,
.buy-btn__text:hover:before {
  height: 100%;
}

.buy-btn__price:hover:after,
.buy-btn__text:hover:after {
  width: 100%;
}

.buy-btn__price:hover {
  background: transparent;
  border: none;
}

.buy-btn__text:hover {
  background: rgba(232, 230, 231, 0.05);
  border: none;
  color: #BC10D8;
  font-weight: 700;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.buy-btn__price:before,
.buy-btn__price:after,
.buy-btn__text:before,
.buy-btn__text:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #BC10D8;
  transition: all 0.4s ease;
}

.buy-btn__price span,
.buy-btn__text span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-btn__price span:hover,
.buy-btn__text span:hover {
  color: #BC10D8;
  font-weight: 700;
}

.buy-btn__price span:before,
.buy-btn__text span::before,
.buy-btn__text span::after,
.buy-btn__price span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #BC10D8;
  transition: all 0.4s ease;
}

.buy-btn__price span:before,
.buy-btn__text span:before {
  width: 2px;
  height: 0%;
}

.buy-btn__price span:after,
.buy-btn__text span::after {
  height: 2px;
  width: 0%;
}

.buy-btn__price span:hover:before,
.buy-btn__text span:hover:before {
  height: 100%;
}

.buy-btn__price span:hover:after,
.buy-btn__text span:hover:after {
  width: 100%;
}

.buy__text {
  padding-top: 6px;
  font-size: 13px;
}

.features {
  padding: 100px 0px;
}

.features__titles {
  display: flex;
}

.features__title {
  flex-basis: 300px;
  padding-right: 20px;
}

.features__text {
  max-width: 330px;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 2px;
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2em;
}

.tabs {
  display: grid;
  grid-template-columns: 300px auto;
}

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

.tabs__btn-item {
  margin-bottom: 20px;
  font-weight: 700;
  transform: translateX(0px);
  transition: transform .4s ease;
}

.tabs__btn-item--active {
  color: #070707;
}

.tabs__btn-item:hover {
  color: #070707;
  transform: translateX(10px);
  transition: transform .4s ease;
}

.tabs__content {
  position: relative;
  min-height: 300px;
}

.tabs__content-item {
  position: absolute;
  top: 0;
  grid-template-columns: auto 280px;
  grid-template-rows: auto 150px;
  gap: 40px;
  background-color: #fff;
  display: grid;
  opacity: 0;
  transform: perspective(500px) translateZ(-300px);
  transition: opacity 0.3s ease, transform 0.6s ease;
  z-index: 0;
}

.tabs__content-item--active {
  position: relative;
  display: grid;
  transform: perspective(500px) translateZ(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
  z-index: 1;
}

.tabs__content-img {
  grid-row: 1/-1;
  align-self: stretch;
  object-fit: cover;
}

.tabs-content__box h3 {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 400;
}

.video {
  width: 280px;
  height: 150px;
  background-image: url(../images/video.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  padding: 9px 10px;
  grid-column: 2/3;
}

.video-btn {
  margin-left: 22px;
}

.video span {
  font-size: 13px;
  color: #f6f4f5;
}

.game {
  margin-bottom: 100px;
}

.game__title {
  display: inline-block;
  margin-bottom: 50px;
}

.game__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.game__descr {
  padding-right: 10px;
}

.game__descr-title {
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.game__descr-text {
  margin-bottom: 24px;
}

.game__item-img {
  margin-bottom: 10px;
}

.game__item-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.game__item-text {
  margin-bottom: 30px;
}

.game__item-link,
.game__link {
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-top: auto;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  display: block;
  outline: none;
}

.game__link {
  width: 220px;
}

.game__item,
.game__link {
  position: relative;
  transition: all 0.4s ease;
  display: block;
  outline: none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-image: linear-gradient(rgb(188, 16, 216) 0%, rgba(80, 0, 250, 0.93) 100%) 1 / 1 / 0 stretch;
}

.game__item:before,
.game__link::before {
  height: 0%;
  width: 2px;
}

.game__item:after,
.game__link::after {
  width: 0%;
  height: 2px;
}

.game__item:hover:before,
.game__link:hover::before {
  height: 100%;
}

.game__item:hover:after,
.game__link:hover::after {
  width: 100%;
  
}

.game__item:hover,
.game__link:hover {
  border: 1px solid transparent;
}

.game__item:before,
.game__item:after,
.game__link::before,
.game__link::after {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  background: rgb(188, 16, 216);
  transition: all 0.4s ease 0s;
}

.game__item-wrapper,
.game__link span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 18px;
  display: flex;
  flex-direction: column;
  border: none;
}

.game__item-wrapper:before,
.game__item-wrapper:after,
.game__link span::after,
.game__link span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #BC10D8;
  transition: all 0.4s ease;
}

.game__item-wrapper:before,
.game__link span::before {
  width: 2px;
  height: 0%;
}

.game__item-wrapper:after,
.game__link span::after {
  height: 2px;
  width: 0%;
}

.game__item-wrapper:hover:before,
.game__link span:hover::before {
  height: 100%;
}

.game__item-wrapper:hover:after,
.game__link span:hover::after {
  width: 100%;
}


.buy {
  margin-bottom: 110px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.buy__img {
  margin-bottom: 30px;
}

.buy .btn__wrapper {
  margin: 0 auto 4px;
  justify-content: center;
}

.buy__bg {
  font-weight: 700;
  font-size: 400px;
  line-height: 400px;
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.1;
  position: absolute;
  z-index: -1;
  animation: line-text 10s linear 1s infinite;
}

@keyframes line-text {
  from {
    transform: translateX(100vw);
    transform-origin: left center;
  }

  to {
    transform: translateX(-100%);
    transform-origin: right center;
  }
}

.equipment {
  margin-bottom: 100px;
}

.features__title {
  margin-bottom: 50px;
}

.equipment__box {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px 30px;
}

.equipment__box-item:nth-child(1) {
  grid-row: 1/-1;
}

.equipment__box-title {
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 41px;
}

.equipment__box-text {
  line-height: 1;
}

.promo {
  margin-bottom: 100px;
}

.promo__inner {
  background-image: url(../images/Metaverse.jpg);
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  position: relative;
}

.promo__btn {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.accessories {
  margin-bottom: 100px;
}

.accessories__title {
  margin-bottom: 30px;
}

.accessories__text {
  font-size: 36px;
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 30px;
}

.accessories__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.accessories__item {
  border: 1px solid transparent;
  border-image: linear-gradient(180deg, #bc10d8 0%, rgba(80, 0, 250, 0.93) 100%);
  border-image-slice: 1;
  padding: 20px;
  display: grid;
  min-height: 540px;
}

.accessories__item-title {
  color: #070707;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
  min-height: 67px;
  min-height: 2lh;
}

.accessories__item-text {
  margin-bottom: 42px;
}

.accessories__item-price {
  color: #070707;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 20px;
}

.accessories__item-btn {
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accessories__item-btn span {
  padding: 10px 20px;
}

.contacts {
  margin-bottom: 100px;
}

.contacts__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  border-right: 1px solid #CACAD6;
  padding-right: 18px;
}

.contacts__email {
  margin-top: auto;
  margin-left: auto;
  transition: all .3s ease;
}

.contacts__email:hover {
  color: #BC10D8;
  transition: all .3s ease;
}

.contacts__title {
  color: #070707;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 28px;
}

.form {
  position: relative;
}

.contacts__input {
  width: 100%;
  max-width: 600px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 18px;
  border: none;
  border-bottom: 1px solid #CACAD6;
  padding: 22px 50px 22px 0px;
  color: #CACAD6;
}

.contacts__input:focus {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(0deg, #bc10d8 0%, rgba(80, 0, 250, 0.93) 100%);
  border-image-slice: 1;
  outline: none;
}

.contacts__input::placeholder {
  color: #CACAD6;
  font-size: 13px;
  line-height: 15px;
}

.contacts__btn {
  position: absolute;
  right: 0;
  background: #CACAD6;
  color: #5C5C5E;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all .4s ease;
}

.contacts__btn:hover {
  background: linear-gradient(180deg, #BC10D8 0%, rgba(80, 0, 250, 0.93) 100%);
  color: #fff;
  transition: all .4s ease;
}

.contacts__text {
  font-size: 13px;
  line-height: 15px;
}

.footer {
  border: 1px solid #CACAD6;
  margin-bottom: 50px
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer__social-item:nth-child(1) a {
  -webkit-mask-image: url(../images/youtube.svg);
  mask-image: url(../images/youtube.svg);
}

.footer__social-item:nth-child(2) a {
  -webkit-mask-image: url(../images/fb.svg);
  mask-image: url(../images/fb.svg);
}

.footer__social-item:nth-child(3) a {
  -webkit-mask-image: url(../images/inst.svg);
  mask-image: url(../images/inst.svg);
}

.footer__social-item a {
  display: block;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  background-color: #797777;
  -webkit-mask-size: 100%;
}

.footer__social-item a:hover {
  background-image: linear-gradient(180deg, #bc10d8 0%, rgba(80, 0, 250, 0.93) 100%);
  transition: all .3s ease;
}

@media (max-width:1140px) {
  .footer .menu {
    display: none;
  }

  .footer .nav {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width:992px) {
  .tabs {
    display: block;
  }

  .tabs__btn {
    display: block;
    column-count: 2;
    margin-bottom: 10px;
  }

  .tabs__btn-item {
    display: block;
    margin: 10px 0px;
  }

  .game__inner,
  .accessories__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

}

@media (max-width: 820px) {
  .menu-btn {
    display: flex;
    position: relative;
    z-index: 100;
  }

  .menu {
    transform: translateX(-110%);
    transition: transform .5s;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 320px;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
    color: #fff;
  }

  .menu__link {
    font-size: 22px;
    display: inline-block;
    margin: 10px 0px;
    position: relative;
  }

  .menu--active {
    transform: translateX(-3%);
    transition: transform .5s;
  }
}

@media (max-width:768px) {
  :root {
    --top-title: 66px;
  }

  .subtitle {
    font-size: 24px;
  }

  .btn__wrapper {
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
  }

  .buy {
    margin-bottom: 50px;
  }

  .top {
    text-align: center;
  }

  .section__title {
    display: block;
    margin-bottom: 10px;
  }

  .features__title,
  .equipment__box-title,
  .accessories__text {
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .equipment__box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1;
    gap: 20px 30px;
    align-items: end;
    justify-items: end;
  }


  .equipment__box-item:nth-child(1) {
    order: 1;
  }

  .equipment__box-item:nth-child(2) {
    order: 1;
  }

  .accessories__item {
    padding: 10px;
  }

  .accessories__item-title {
    margin-bottom: 0;
  }

  .title {
    padding-top: calc((40vh - 81px) - ((var(--top-title) / 2) + var(--top-title)));
  }

  .game__item-wrapper {
    padding: 10px 10px 18px;
  }
  
  .game__item-wrapper img {
    width: 100%;
  }
  .game__link {
    width: 100%;
  }
}

@media (max-width:568px) {
  :root {
    --top-title: 66px;
  }

  .subtitle {
    font-size: 24px;
  }

  .tabs__content-item {
    display: block;
  }

  .tabs__btn {
    column-count: 1;
  }

  .video {
    margin-top: 20px;
    width: auto;
    height: 250px;
  }

  .features {
    padding: 50px 0px;
  }

  .buy__img {
    width: 100%;
    max-width: 200px;
  }

  .buy__bg {
    font-size: 250px;
    line-height: 1;
  }

  .accessories__item-text {
    margin-bottom: 0;
    line-height: 1.2rem;
  }

  .accessories__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .accessories__item {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .accessories__item-img {
    margin: 0 auto;
  }

  .contacts__inner {
    display: flex;
    flex-direction: column;
  }

  .contacts__email {
    margin-top: 20px;
  }

  .nav {
    grid-template-columns: 1fr 2fr 1fr;
  }

  .footer .nav {
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 20px 0px;
  }

  .footer .logo {
    width: 200px;
    margin-top: 20px;
  }

  .footer__social {
    order: -1;
    gap: 30px;
  }

  .features__titles {
    display: block;
  }

  .game__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .equipment__box-item:nth-child(3) {
    grid-column: 1;
    grid-row: 1;
  }

  .equipment__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1;
    gap: 20px 30px;
    align-items: end;
    justify-items: end;
  }

}

@media (max-width:420px) {
  :root {
    --top-title: 48px;
  }

  .subtitle {
    font-size: 20px;
  }

  .features__text,
  .game__descr-title {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .buy-btn__price {
    flex-direction: column;
    margin: 0 auto;
  }

  .top {
    text-align: center;
  }

  .menu {
    width: 110%;
  }

  .game__link {
    width: 100%;
  }

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

  .equipment__box-img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }

  .equipment__box-item {
    width: 100%;
  }
}