.nav {
  display: none;
}

.header {
  position: fixed;
  z-index: 9;
  width: 100%;
  padding: 30px 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.nav-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.menu-svg {
  stroke: #e74beb;
}

@media screen and (min-width: 1440px) {
  .header {
    padding: 24px 0;
    justify-content: center;
  }

  .nav {
    display: block;
  }

  .nav-link {
    color: #240aa6;
  }

  .menu-open {
    display: none;
  }
}

/* modal  */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  padding: 85px;
  padding-right: 15px;
  padding-top: 130px;
  background: #240aa6;
  transform: translateY(-100%);
  transition: transform 1s ease;
}

.menu-nav-list {
  flex-direction: column;
  align-items: flex-start;
}

/* popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 50%;
  width: 95%;
  padding: 54px 38px;
  padding-bottom: 120px;
  background-color: #000;
  background-image: linear-gradient(
    180deg,
    #e74beb 0%,
    rgba(255, 255, 255, 0) 100%
  );

  transform: translateX(-50%);
  transition: transform 1s ease;
}

.popup-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 61%;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 51px;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: #240aa6;
  margin-bottom: 24px;
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  display: block;

  width: 269px;
  border-radius: 8px;
  background: #00ff80;
  padding: 22px;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.popup-btn:hover {
  transform: scale(1.05);
}

.popup-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 1440px) {
  .popup {
    padding: 56px;
  }

  .popup-title {
    margin-bottom: 24px;
  }

  .popup-text {
    max-width: 810px;
    margin: 0 auto;
    margin-bottom: 24px;
  }

  .popup-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
  }
}

/* hero  */

.hero {
  padding-top: 420px;
  position: relative;
  overflow: hidden;
}

.hero-logo {
  width: 628px;
  max-width: max-content;
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-45%);
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: justify;
  color: #240aa6;
  margin-bottom: 46px;
}

.hero-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;

  display: block;
  border: 3px solid #87614c;
  border-radius: 50px;
  width: 354px;
  max-width: 100%;
  padding: 26px 20px;
  background: linear-gradient(90deg, #e74beb 0%, #e5a118 100%);
  transition: transform 0.3s ease;
}

.hero-link:hover {
  transform: scale(1.04);
}

@media screen and (min-width: 1440px) {
  .hero {
    padding-top: 187px;
    padding-bottom: 98px;
  }

  .hero-logo {
    max-width: 100%;
    width: 1100px;
    top: auto;
    left: 0;
    bottom: 0;
    transform: translateX(0);
  }

  .text-home-wrapper {
    width: 572px;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 20px;
    margin-bottom: 37px;
  }
}

/* overview */

.overview-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  color: #240aa6;
}

.border {
  width: 100%;
}

/* feature */

.feature-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  color: #240aa6;
}

/* bonus */

.bonus-sub-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #240aa6;
  margin-bottom: 20px;
}

.bonus-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #240aa6;
  margin-bottom: 44px;
}

.budda {
  width: 325px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.bonus-item-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
}

.bonus-item-flex2 {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.bonus-item {
  max-width: 209px;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #e74beb;
    margin-bottom: 24px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #240aa6;
  }
}

.bonus-item2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  color: #240aa6;
}

@media screen and (min-width: 1440px) {
  .bonus-item-flex2 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .bonus-item2 {
    max-width: 429px;
  }

  .bonus-wrapper {
    position: relative;
  }

  .budda {
    width: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

/* retriggering */

.retriggering-swiper {
  width: 209px;
  margin: 0 auto;
}

.retriggering-item {
  width: 209px;

  img {
    margin: 0 auto;
    margin-bottom: 18px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #e74beb;
    margin-bottom: 24px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #240aa6;
  }
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #00ff80;
}

@media screen and (min-width: 768px) {
  .retriggering-swiper {
    width: 608px;
  }
}

@media screen and (min-width: 1440px) {
  .retriggering-swiper {
    width: 1007px;
  }

  .pagination {
    display: none;
  }
}

/* demo */

.iframe-wrap {
  position: relative;
  width: 350px;
  max-width: 100%;
  height: 203px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 60px;
}

.close-button-frame {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-40px) translateX(10px);
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  background-color: transparent;

  .menu-svg {
    fill: #5820a4;
    stroke: #5820a4;
  }
}

.close-button-frame:hover {
  .menu-svg {
    fill: #ff3131;
    stroke: #ff3131;
  }
}

#gameIframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (min-width: 768px) {
  .iframe-wrap {
    width: 500px;
    height: 290px;
  }
}
@media screen and (min-width: 1200px) {
  .iframe-wrap {
    min-width: 700px;
    height: 407px;
  }
}

/* disclaimer */

.disclaimer-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #00ff80;
  text-transform: uppercase;
}

/* footer */

.footer {
  padding: 40px 0;
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #e5a118;

  a {
    display: block;
    color: #e74beb;
  }

  a:hover {
    text-decoration: underline;
  }
}

.community-list {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 49px 0;

  li {
    width: 48px;
  }
}

.footer-wrap {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #240aa6;
  margin-bottom: 49px;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}

/* scroll */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  border: 1px solid #e74beb;
  background-color: #fff;
  color: #e74beb;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  z-index: 7;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ********************* */

.hidden {
  display: none;
}

.menu-close {
  transform: translateY(0);
}

.click {
  transform: rotate(90deg);
}

.popup-click {
  transform: translateY(120%) translateX(-50%);
}
