/* header */

.nav-sts {
  display: none;
}

.header-sts {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--bg1);
}

.header-container-sts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  width: 375px;
  height: 76px;
}

.header-logo-link-sts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: var(--text-black);
  transition: all 0.3s ease-in-out;

  img {
    width: 40px;
    height: 40px;
  }
}

.menu-btn-sts {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.header-logo-link-sts:hover,
.menu-btn-sts:hover {
  transform: scale(1.1);
}

.menu-open-sts {
  padding-bottom: 4px;
}

.menu-svg-open-sts {
  width: 31px;
  height: 31px;
}

.nav-list-sts {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item-sts {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-sts {
  position: relative;
  font-family: var(--second-family);
  font-size: 18px;
  line-height: 133%;
  transition: all 0.3s ease-in-out;
}

.nav-item-sts::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--text-black);

  transition: all 0.3s ease-in-out;
}

.item-active-sts::after {
  width: 100%;
}

.gplay-link-sts {
  display: none;
  border-radius: 24px;
  padding: 10px 24px;
  width: 288px;
  height: 40px;
  background: var(--bg2);

  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--text-white);
  transition: all 0.3s ease;

  svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: transparent;
  }

  span {
    width: 100%;
  }
}

.gplay-link-sts:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .header-container-sts {
    padding: 0 64px;
    width: 1440px;
    height: 104px;
    justify-content: start;
  }

  .header-logo-link-sts {
    font-size: 18px;

    img {
      width: 60px;
      height: 60px;
    }
  }

  .nav-sts {
    display: block;
    padding-left: 319px;
    padding-right: 211px;
  }

  .menu-btn-sts {
    display: none;
  }

  .header-btn-link-sts {
    display: flex;
  }

  .gplay-link-sts {
    display: flex;
  }
}

/* modal  */

.modal-sts {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;

  background: var(--bg1);
  padding-top: 106px;
  width: 375px;
  height: 812px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-nav-list-sts {
  flex-direction: column;
  gap: 50px;
  margin-bottom: 77px;
}

.modal-gplay-link-sts {
  display: flex;
}

.menu-close-sts {
  position: absolute;
  top: 20px;
  right: 20px;

  svg {
    width: 34px;
    height: 34px;
    stroke: #000;
  }
}

/* hero  */

.hero-container-sts {
  padding: 96px 24px 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-wrap-sts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title-sts {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 133%;
}

.hero-text-sts {
  font-size: 14px;
  line-height: 129%;
}

.hero-gplay-link-sts {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 327px;
  height: 63px;

  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
}

.hero-pic-sts {
  width: 190px;
  height: 412px;
  border-radius: 24px;
}

@media screen and (min-width: 1440px) {
  .hero-container-sts {
    padding: 168px 64px 164px;
    flex-direction: row;
    gap: 64px;
  }

  .hero-wrap-sts {
    width: 892px;
    gap: 40px;
  }

  .hero-title-sts {
    font-size: 60px;
    line-height: 125%;
  }

  .hero-text-sts {
    font-size: 20px;
    line-height: 120%;
  }

  .hero-gplay-link-sts {
    width: 337px;
    font-size: 22px;
    line-height: 145%;
  }

  .hero-pic-sts {
    width: 356px;
    height: 772px;
  }
}

/* rooms */

#rooms {
  background: var(--bg2);
}

.rooms-title-sts {
  color: var(--text-white);
}

.rooms-text-sts {
  font-size: 14px;
  line-height: 129%;
  color: var(--text-white);
}

@media screen and (min-width: 1440px) {
  .rooms-text-sts {
    font-size: 20px;
    line-height: 120%;
  }
}

/* gameplay */

.gameplay-container-sts {
  padding: 50px 24px;
}

.gameplay-subtitle-sts {
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  margin-bottom: 20px;
}

.gameplay-list-sts {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow:
      0 1px 2px -1px rgba(0, 0, 0, 0.1),
      0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: var(--text-white);

    h4 {
      font-weight: 600;
      font-size: 20px;
      line-height: 150%;
    }

    p {
      line-height: 125%;
    }
  }
}

@media screen and (min-width: 1440px) {
  .gameplay-container-sts {
    padding: 100px 64px;
  }

  .gameplay-subtitle-sts {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 40px;
  }

  .gameplay-list-sts {
    width: 1176px;
    gap: 40px;

    li {
      padding: 24px 23px;

      h4 {
        font-weight: 500;
        font-size: 32px;
        line-height: 131%;
      }

      p {
        font-size: 24px;
      }
    }
  }
}

/* reviews */

.reviews-container-sts {
  padding: 0 24px 50px;
}

.reviews-list-sts {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow:
      0 1px 2px -1px rgba(0, 0, 0, 0.1),
      0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: var(--text-white);

    h3 {
      font-weight: 600;
      font-size: 20px;
      line-height: 150%;
      text-decoration: underline;
      text-decoration-skip-ink: none;
    }

    p {
      line-height: 125%;
    }
  }
}

@media screen and (min-width: 1440px) {
  .reviews-container-sts {
    padding: 0 64px 100px;
  }

  .reviews-list-sts {
    width: 1176px;
    gap: 40px;

    li {
      padding: 24px;

      h3 {
        font-weight: 500;
        font-size: 32px;
        line-height: 131%;
      }

      p {
        font-size: 24px;
      }
    }
  }
}

/* faq */

#faq {
  background: var(--bg2);
}

.faq-title-sts {
  color: var(--text-white);
}

.faq-list-sts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item-sts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.faq-question-wrap-sts {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question-sts {
  font-weight: 600;
  font-size: 16px;
  line-height: 113%;
  color: var(--text-white);
}

.faq-btn-sts {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-answer-sts {
  font-size: 14px;
  line-height: 129%;
  color: var(--text-white);
}

@media screen and (min-width: 1440px) {
  .faq-list-sts {
    gap: 16px;
  }

  .faq-item-sts {
    padding: 24px 32px;
  }

  .faq-question-sts {
    font-size: 20px;
    line-height: 160%;
  }

  .faq-answer-sts {
    font-size: 20px;
    line-height: 120%;
  }
}

/* footer */

#footer {
  background: var(--bg2);
  color: var(--text-white);
}

.footer-container-sts {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-wrap-upper-sts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  .footer-call-sts {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
  }

  .footer-gplay-link-sts {
    display: flex;
    background: var(--bg1);
    color: var(--text-black);

    svg {
      stroke: var(--text-black);
    }
  }
}

.footer-wrap-lower-sts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 30px;

  .footer-links-text-sts {
    font-family: var(--second-family);
    font-size: 14px;
    line-height: 129%;
    text-align: center;
  }

  .footer-email-text-sts {
    font-family: var(--second-family);
    font-size: 14px;
    line-height: 129%;
  }

  .footer-copyright-sts {
    font-family: var(--second-family);
    font-size: 14px;
    line-height: 129%;
  }
}

@media screen and (min-width: 1440px) {
  .footer-container-sts {
    padding: 50px 64px;
  }

  .footer-wrap-upper-sts {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;

    .footer-call-sts {
      width: 944px;
      font-weight: 500;
      line-height: 160%;
    }
  }

  .footer-wrap-lower-sts {
    padding: 0 86.5px;
    justify-content: space-between;
    width: 100%;

    .footer-links-text-sts {
      font-size: 18px;
      line-height: 133%;
      order: 3;
    }

    .footer-email-text-sts {
      font-size: 18px;
      line-height: 133%;
      order: 1;
    }

    .footer-copyright-sts {
      font-size: 18px;
      line-height: 133%;
      order: 2;
    }
  }
}

/* ********************* */

.hidden-sts {
  display: none;
}

.click-sts {
  transform: rotate(180deg);
}
