/* header */

.nav-fcs {
  display: none;
}

.header-fcs {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 7;
  width: 100%;
  background: #1a1a2e;
}

.header-container-fcs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 53px;
  width: 375px;
  height: 68px;
}

.header-link-fcs {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;

  img {
    width: 28px;
    height: 28px;
  }

  p {
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.06em;
    color: #f0ede8;

    span {
      color: #c8ff00;
    }
  }
}

.header-link-fcs:hover {
  transform: scale(1.1);
}

.menu-btn-fcs {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  transition: all 0.3s ease;
}

.nav-item-fcs:hover,
.menu-btn-fcs:hover,
.gplay-link-fcs:hover {
  transform: scale(1.1);
}

.menu-svg-fcs {
  width: 100%;
  height: 100%;
}

.nav-list-fcs {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item-fcs {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-fcs {
  position: relative;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.12em;
  text-align: center;
  color: #f0ede8;
  transition: all 0.3s ease-in-out;
}

.nav-item-fcs::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #f0ede8;

  transition: all 0.3s ease-in-out;
}

.item-active-fcs::after {
  width: 100%;
}

.gplay-link-fcs {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 166px;
  height: 41px;
  background: #c8ff00;

  font-family: var(--second-family);
  font-weight: 700;
  font-size: 13px;
  line-height: 150%;
  color: #1a1a2e;

  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1440px) {
  .header-container-fcs {
    padding: 20px 112px;
    width: 1440px;
    justify-content: space-between;
    height: 81px;
  }

  .nav-fcs {
    display: flex;
  }

  .menu-btn-fcs {
    display: none;
  }

  .gplay-link-fcs {
    display: flex;
  }
}

/* modal  */

.modal-fcs {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;

  width: 375px;
  height: 812px;
  background: #1a1a2e;
  padding: 191px 68px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-close-fcs {
  position: absolute;
  top: 15px;
  right: 14px;
  width: 41px;
  height: 41px;
  fill: #c8ff00;
}

.menu-nav-list-fcs {
  flex-direction: column;
  gap: 50px;
  margin-bottom: 150px;
}

.menu-nav-item-fcs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-nav-link-fcs {
  font-size: 20px;
  line-height: 106%;
  letter-spacing: 0.08em;
}

.modal-gplay-link-fcs {
  display: flex;
}

/* hero  */

#home {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/images/hero-bg.png);
}

.hero-container-fcs {
  padding: 100px 0 80px;
  align-items: start;
}

.hero-text-wrap-fcs {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin-bottom: 70px;
}

.hero-title-fcs {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  color: #f0ede8;
  margin-bottom: 30px;

  span {
    color: #c8ff00;
  }
}

.hero-text-fcs {
  width: 280px;
  font-size: 14px;
  margin-bottom: 37.7px;
}

.hero-link-fcs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border-radius: 10px;
  width: 248px;
  height: 56px;
  background: #c8ff00;

  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.14em;
  color: #1a1a2e;

  transition: all 0.3s ease-in-out;

  svg {
    width: 20px;
    height: 20px;
  }
}

.hero-link-fcs:hover {
  transform: scale(1.1);
}

.hero-img-fcs {
  width: 374px;
  height: 352px;
}

@media screen and (min-width: 1440px) {
  .hero-container-fcs {
    flex-direction: row;
    justify-content: space-between;
    padding: 261.7px 112px 362px;
  }

  .hero-text-wrap-fcs {
    padding: 0;
    margin-bottom: 0;
  }

  .hero-title-fcs {
    font-size: 74px;
    line-height: 92%;
    margin-bottom: 50px;
  }

  .hero-text-fcs {
    width: 448px;
    font-size: 20px;
    line-height: 146%;
    margin-bottom: 30px;
  }

  .hero-img-fcs {
    width: 576px;
    height: 500px;
  }
}

/* how */

#how {
  background: #24243a;
}

.how-container-fcs {
  padding: 17px 44px;
}

.how-item-fcs {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 10px;
  padding: 32px 32px 14px;
  background: #1a1a2e;

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 237, 232, 0.04);
    background: #24243a;
    width: 222px;
    height: 176px;
    margin-bottom: 32px;

    img {
      width: 120px;
      height: 100px;
    }
  }

  h4 {
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 48px;
    color: #c8ff00;
    margin-bottom: 12px;
  }

  h3 {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 16px;
    color: #f0ede8;
    margin-bottom: 12px;
  }

  p {
    font-size: 14px;
  }
}

.how-item-fcs:nth-child(1) {
  padding-bottom: 32px;
}

.how-item-fcs:nth-child(2) {
  div {
    img {
      width: 140px;
    }
  }
}

@media screen and (min-width: 1440px) {
  .how-container-fcs {
    padding: 27px 112px;
  }

  .how-list-fcs {
    display: flex;
    gap: 24px;
  }

  .how-item-fcs {
    padding: 32px;
    background: #1a1a2e;
    width: 389px;
    height: 444px;

    div {
      width: 323px;
    }

    h3 {
      font-size: 20px;
      line-height: 150%;
    }

    p {
      font-size: 16px;
    }
  }
}

/* features */

.features-container-fcs {
  padding: 50px 17px;
}

.features-list-fcs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-item-fcs {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 10px;
  padding: 9px 12px;
  width: 341px;
  height: 143px;
  background: #2e2e42;

  .features-item-img-fcs {
    width: 107px;
    height: 96px;
  }

  .features-text-wrap-fcs {
    display: flex;
    flex-direction: column;
    gap: 12px;

    h3 {
      font-family: var(--second-family);
      font-weight: 900;
      font-size: 16px;
      color: #f0ede8;
    }

    p {
      font-size: 13px;
    }
  }
}

@media screen and (min-width: 1440px) {
  .features-container-fcs {
    padding: 70px 112px 100px;
  }

  .features-list-fcs {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px 24px;
  }

  .features-item-fcs {
    align-items: start;
    gap: 32px;
    padding: 32px;
    width: 596px;
    height: 210px;

    .features-item-img-fcs {
      width: 160px;
      height: 144px;
    }

    .features-text-wrap-fcs {
      h3 {
        font-size: 22px;
        line-height: 150%;
      }

      p {
        font-size: 16px;
        line-height: 153%;
      }
    }
  }
}

/* about */

.about-container-fcs {
  padding: 10px 52.5px;
}

.about-text-fcs {
  font-size: 14px;
}

@media screen and (min-width: 1440px) {
  .about-container-fcs {
    padding: 23.5px 436px;
  }

  .about-text-fcs {
    font-size: 16px;
    line-height: 150%;
  }
}

/* faq */

.faq-container-fcs {
  padding: 60px 30px 59px;
}

.faq-list-fcs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item-fcs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 17.5px 32px;
  border: 1px solid rgba(240, 237, 232, 0.06);
  border-radius: 10px;
  background: #2e2e42;
}

.faq-question-wrap-fcs {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question-fcs {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 14px;
  color: #f0ede8;
}

.faq-btn-fcs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.faq-answer-fcs {
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 255, 0, 0.35);
}

.faq-item-active-fcs {
  border: 1px solid rgba(200, 255, 0, 0.35);

  .faq-question-fcs {
    color: #c8ff00;
  }
}

@media screen and (min-width: 1440px) {
  .faq-container-fcs {
    padding: 100px 368px;
  }

  .faq-item-fcs {
    padding: 24px 32px;
  }

  .faq-question-fcs {
    font-size: 17px;
    line-height: 150%;
  }

  .faq-answer-fcs {
    font-size: 16px;
    line-height: 175%;
  }
}

/* play */

#play {
  background: #24243a;
}

.play-container-fcs {
  padding: 43px 43.5px 53px;
  background-image: url(/images/play-bg-mob.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.play-title-fcs {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  color: #f0ede8;

  span {
    color: #c8ff00;
  }
}

.play-gplay-link-fcs {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  width: 236px;
  height: 50px;
  background: #c8ff00;

  font-family: var(--second-family);
  font-weight: 800;
  font-size: 12px;
  line-height: 131%;
  letter-spacing: 0.12em;
  color: #1a1a2e;
  transition: all 0.3s ease;
}

.play-gplay-link-fcs:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  #play {
    background: #24243a;
  }

  .play-container-fcs {
    padding: 129px 272px;
    background-image: url(/images/play-bg-desk.png);
  }

  .play-title-fcs {
    line-height: 112%;
    font-size: 64px;
  }

  .play-gplay-link-fcs {
    width: 518px;
    height: 58px;

    font-size: 20px;
    line-height: 83%;
    letter-spacing: 0.08em;
  }
}

/* footer */

#footer {
  position: relative;
  padding-top: 50px;
}

#footer::before {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(240, 237, 232, 0.06);
}

.footer-container-fcs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
}

.footer-links-list-fcs {
  display: flex;
  gap: 44px;
}

.footer-links-item-fcs {
  position: relative;
  transition: all 0.3s ease;

  a {
    font-size: 14px;
    line-height: 143%;
  }
}

.footer-item-privacy-fcs::after {
  position: absolute;
  right: -24px;
  top: 0;
  content: "|";
  opacity: 0.3;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #6c6c82;
}

.footer-text-fcs {
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  #footer {
    padding-top: 100px;
  }

  #footer::before {
    top: 100px;
  }

  .footer-container-fcs {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 112px;
  }
}

/* ********************* */

.hidden-fcs {
  display: none;
}

.click-fcs {
  transform: rotate(180deg);
}
