* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --color-text: rgb(255, 255, 255);
  --bg-main: #3e0f36;
  --bg-top: #35082b;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background-color: var(--bg-main);
  font-size: 1.6rem;
  position: relative;
}

header {
  background-color: #3e0f36;
  padding: 1.5rem;
  position: fixed;
  background-color: var(--bg-main);
  width: 100%;
  z-index: 11;
}
.header__wall {
  height: 7.9rem;
}

header div,
.intro__content,
.about,
.games,
footer {
  width: 114rem;
  margin: 0 auto;
}

header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

nav {
}

nav a {
  text-decoration: none;
  padding: 0 1.6rem 0 0;
  font-size: 1.8rem;
}
nav a:last-child {
  padding-right: 0;
}

a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: bold;
}

nav a:hover {
  background: linear-gradient(114.26deg, #e4a91b 13.41%, #f88021 87.24%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.menu {
  justify-content: flex-end;
}
.menu__icon {
  display: none;
  width: 3.8rem;
  height: 3.8rem;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.menu__show {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  background-color: var(--bg-main);
  width: 100%;
  height: 80vh;
}

.menu__show__main {
  display: block;
  padding: 1rem 0.8rem;
  background-color: var(--bg-top);
  border-radius: 0.5rem;
}

.menu__show__main > a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: var(--color-text);
  transition: all 0.3s ease-out;
  border: 0.1rem solid #8a5f31;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}
.menu__show__main > a:last-child {
  margin-bottom: 0;
}

/* */

main {
  position: relative;
}

.intro {
  background-color: var(--bg-top);
  padding: 9rem 0;
}

.intro__content > h1 {
  font-size: 55px;
  line-height: 70px;
  margin-bottom: 5px;
  width: 60%;
}

.intro__content > p {
  font-size: 1.8rem;
  padding: 0.5rem 0 0;
  margin: 0 0 3.5rem;
}

.intro__content__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.intro__content__playBtn {
  padding: 1rem 3rem;
  padding: 1rem 3rem 1.2rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  display: inline-block;
  color: var(--black-theme) !important;
  text-transform: capitalize;
  transition: all 0.3s;
  text-align: center;
  background: linear-gradient(114.26deg, #fff4da 13.41%, #e4914e 87.24%);
  border-radius: 2.2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: rgb(53, 11, 45) !important;
  margin: 0 1rem 0 0;
}

.intro__content__playBtn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(114.26deg, #e4a91b 13.41%, #f88021 87.24%);
  height: 100%;
  width: 0px;
  transition: all 0.4s;
}

.intro__content__playBtn:hover::before {
  width: 100%;
}

.intro__content__playBtn:hover {
  color: var(--color-text) !important;
}

/* */

.about {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 9rem 0 0;
  font-size: 1.8rem;
}

.about__content {
  padding: 0 1.5rem 0 0;
  width: 55%;
}

.about__content > h2,
.games > h2 {
  font-size: 5.7rem;
  margin: 0 0 1.2rem;
}
.about__content > h2 > span,
.games > h2 > span,
.nav__home {
  background: linear-gradient(114.26deg, #e4a91b 13.41%, #f88021 87.24%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.about__content > p {
  line-height: 3rem;
  font-weight: 400;
  font-size: 1.8rem;
  padding: 0;
  color: var(--color-text);
}

.about__content > p:nth-child(2) {
  margin: 0 0 1rem;
}

.about__content > a,
.game__info__btn,
.intro__content__supportBtn {
  padding: 1rem 3rem;
  padding: 1rem 3rem 1.2rem;
  line-height: 2.3rem;
  font-weight: 600;
  display: inline-block;
  color: var(--black-theme) !important;
  text-transform: capitalize;
  transition: all 0.3s;
  text-align: center;
  background: linear-gradient(114.26deg, #e4a91b 13.41%, #f88021 87.24%);
  border-radius: 2.2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 3.5rem 0 0;
  color: var(--color-text);
}

.about__content > a::before,
.game__info__btn::before,
.intro__content__supportBtn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(114.26deg, #fff4da 13.41%, #e4914e 87.24%);
  height: 100%;
  width: 0px;
  transition: all 0.4s;
}

.about__content > a:hover::before,
.game__info__btn:hover::before,
.intro__content__supportBtn:hover::before {
  width: 100%;
}

.about__content > a:hover,
.game__info__btn:hover {
  color: rgb(53, 11, 45) !important;
}

.about__video__intro {
  position: fixed;
  top: 7.9rem;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  display: none;
}
.about__video__intro > iframe {
  width: 70%;
  height: 80%;
}

.intro__content__supportBtn {
  margin: 0;
}

.about__video {
  width: 45%;
}

.about__video__right {
  width: 100%;
  position: relative;
}

.about__video__right > img {
  width: 100%;
}

.about__video__right__playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}

.games {
  font-size: 1.8rem;
  padding: 10rem 0 0;
}

.games > h2 {
  text-align: center;
}

.games > p {
  text-align: center;
  width: 60%;
  margin: 0 auto;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 400;
}

.games__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 6rem 0 0;
  width: 100%;
}
.game {
  padding: 0.8rem 0.5rem 0;
  width: 33.33%;
  /* min-width: 31rem; */
}

.game__container {
  position: relative;
  border-radius: 2rem;
  transition: all ease-out 0.3s;
  border: 0.1rem solid transparent;
}

.game__avatar {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: contain;
}
.game__info {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  cursor: pointer;
  padding: 0 0 4rem;
  font-size: 1.8rem;
}

.game__info__name {
  font-weight: bold;
  font-size: 3.2rem;
  margin: 0 0 0.8rem;
}
.game__info__price {
  margin: 0 0 2.5rem;
}

.game__container:hover {
  border: 0.1rem solid #e4a91b;
}

.game__container:hover .game__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.4);
}

.game__info__price {
  color: #e4a91b;
  font-weight: bold;
}

/* */

footer {
}

.footer__top {
  padding: 12rem 0;
  display: flex;
}
.footer__top > div {
  width: 33.33%;
}

.footer__top__item > a {
  font-weight: normal;
  display: block;
  padding: 0 0 1rem 0;
}

.footer__top__item > div {
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0 1.8rem;
}

.footer__bottom {
  border-top: 1px solid rgb(130, 45, 112);
  padding: 3rem 0;
  font-size: 1.8rem;
}

.footer__img__one {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 18rem;
  opacity: 0.2;
}
.footer__img__two {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 18rem;
  opacity: 0.2;
}
.footer__top__about__logo {
  margin: 0 0 1.6rem;
}

.footer__top__about__desc {
  width: 60%;
  font-size: 1.8rem;
  line-height: 30px;
}

.footer__bottom__copyright > span {
  color: #e4a91b;
}

@media screen and (max-width: 1200px) {
  header div,
  .intro__content,
  .about,
  .games,
  footer {
    width: 96rem;
  }
  nav a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 990px) {
  header div,
  .intro__content,
  .about,
  .games,
  footer {
    width: 72rem;
  }
  .game {
    width: 50%;
  }

  .about > div {
    width: 100%;
  }
  .about > div:nth-child(1) {
    margin: 0 0 3.5rem 0;
  }
  .intro__content > h1 {
    width: 100%;
    font-size: 4.5rem;
    line-height: 6rem;
  }

  .footer__top__about__desc {
    width: 85%;
    font-size: 1.6rem;
  }
  .about__content {
    padding-right: 0;
  }
  .about__video__intro > iframe {
    width: 100%;
    height: 80%;
  }
}

@media screen and (max-width: 768px) {
  header div,
  .intro__content,
  .about,
  .games,
  footer {
    width: 54rem;
  }
  .game {
    width: 50%;
  }

  .about > div {
    width: 100%;
  }
  .about > div:nth-child(1) {
    margin: 0 0 3.5rem 0;
  }

  .about__content > h2,
  .games > h2 {
    font-size: 4rem;
  }

  .games > p {
    margin: 0;
    width: 100%;
  }
  .intro__content > p {
    font-size: 1.5rem;
  }

  .footer__top {
    flex-wrap: wrap;
  }

  .footer__top > div:nth-child(1),
  .footer__top > div:nth-child(2) {
    width: 50%;
  }

  .footer__top > div:nth-child(3) {
    width: 100%;
    margin: 4.8rem 0 0;
  }
}

@media screen and (max-width: 576px) {
  header div,
  .intro__content,
  .about,
  .games,
  footer {
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  header {
    padding-right: 0;
    padding-left: 0;
  }
  .game {
    width: 100%;
  }

  .about > div {
    width: 100%;
  }
  .about > div:nth-child(1) {
    margin-bottom: 3.5rem;
  }
  .intro__content > h1 {
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .intro__content > p {
    font-size: 1.6rem;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__top > div {
    width: 100% !important;
    margin: 0 0 4.8rem;
  }
  .footer__bottom__copyright {
    text-align: center;
  }
  .footer__top__about__desc {
    width: 100% !important;
  }

  .footer__top > div:nth-child(3) {
    width: 100%;
    margin: 0;
  }
  .menu__icon {
    display: block;
  }
  nav {
    display: none;
  }
  .menu__icon__close {
    display: none;
  }
}

@media screen and (max-width: 365px) {
  .intro__content__playBtn {
    margin-bottom: 1rem;
  }
}
