.main-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-desc {
  padding: 10px 0;
  backdrop-filter: blur(4px);
  background: rgba(3, 124, 60, 0.5);
  margin-bottom: 8px;

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    line-height: 120%;
    color: #fff;
  }
}

.header-nav {
  padding: 20px 0;
  backdrop-filter: blur(12px);
  background: #000;
}

.page-nav {
  display: none;
}

.menu-btn {
  display: block;
  margin-left: auto;

  svg {
    stroke: #fff;
    transition: stroke 0.3s ease;
  }
}

.menu-btn:hover,
.menu-btn:focus {
  svg {
    stroke: greenyellow;
  }
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.page-nav-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.page-nav-link:hover {
  color: greenyellow;
}

@media screen and (min-width: 1440px) {
  .menu-btn {
    display: none;
  }

  .page-nav {
    display: block;
  }

  .header-desc {
    margin: 0;

    p {
      font-size: 12px;
      text-align: center;
    }
  }
}

/* modal  */

.menu {
  position: fixed;
  top: 130px;
  left: 0;
  width: 100%;
  padding: 80px 0;
  z-index: 8;
  transform: translateY(-150%);
  transition: transform 1s ease;
  background: #222323e7;
  backdrop-filter: blur(5px);
}

.menu-nav-list {
  flex-direction: column;
  gap: 40px;
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  left: 50%;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 21px;
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.02),
    0 3px 3px 0 rgba(0, 0, 0, 0.02),
    0 7px 4px 0 rgba(0, 0, 0, 0.01);
  background: #fff;
  transform: translateX(-50%);

  transition: transform 0.4s ease;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  color: #0d1b03;
  margin-bottom: 20px;
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;

  display: block;
  width: fit-content;
  border-radius: 6px;
  padding: 10px 100px;
  background: linear-gradient(166deg, #6c0431 0%, #f00 100%);
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.popup-btn:hover {
  color: #000;
  box-shadow: 0 0 20px #000;
}

@media screen and (min-width: 1440px) {
  .page-popup {
    border-radius: 12px;
    padding: 21px 38px;
    width: 916px;
  }

  .popup-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 140px;
  }

  .popup-text {
    font-size: 13px;
    margin: 0;
  }

  .popup-btn {
    font-size: 16px;
    margin: 0;
    flex-shrink: 0;
  }
}

/* hero  */

.dashboard {
  padding-top: 163px;
  position: relative;
  overflow: hidden;
}

.hero-game1 {
  display: none;
}

.hero-game2 {
  display: none;
}

.hero-game3 {
  display: none;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 950;
  font-size: 48px;
  line-height: 108%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin-bottom: 64px;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product {
  border-radius: 12px;
  padding: 30px;
  padding-top: 54px;
  box-shadow: -13px 2px 66px -8px rgba(255, 202, 79, 0.5);
  background: linear-gradient(180deg, #db7407 0%, #e83838 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: box-shadow 0.4s ease;
}

.product:hover {
  box-shadow: 0 0 30px #000;

  .product-link {
    color: #000;
  }
}

.product-logo {
  border-radius: 12px;
  width: 128px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;

  position: relative;
}

.number {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  background: rgba(232, 186, 48, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  color: #e8ba30;
}

.product-bonus {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;

  img {
    width: 24px;
  }

  h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 24px;
    line-height: 133%;
    color: #fff;
  }

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #e8ba30;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
  }
}

.product-link {
  font-family: var(--font-family);
  font-weight: 950;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;

  display: block;
  width: fit-content;
  border-radius: 10px;
  padding: 12px 56px;
  box-shadow: 0 0 40px 0 rgba(140, 204, 51, 0.15);
  background: linear-gradient(166deg, #6c0431 0%, #f00 100%);
  transition: color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .product {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1440px) {
  .dashboard {
    padding-top: 130px;
  }

  .hero-game1 {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 210px;
    transform: translateX(-800px);
    transform-origin: center;
  }

  .hero-game2 {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 160px;
    transform: translateX(-700px);
    transform-origin: center;
    z-index: -1;
  }

  .hero-game3 {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 150px;
    transform: translateX(650px);
    transform-origin: center;
    z-index: -1;
  }

  .hero-title {
    font-size: 52px;
    margin-bottom: 64px;
  }

  .products-list {
    width: 1164px;
    margin: 0 auto;
  }

  .product {
    border-radius: 12px;
    padding: 50px;
    gap: 50px;
  }

  .product-logo {
    flex-shrink: 0;
  }

  .product-bonus {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .product-link {
    flex-shrink: 0;
  }
}

/* best  */

#best {
  background-color: #00000021;
}

.best-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 40px;
  line-height: 115%;
  text-align: center;
  color: #000;
  margin-bottom: 28px;
}

.best-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 156%;
  text-align: center;
  color: #fff;
}

.best-wrapper {
  width: 100%;
  height: 418px;

  background-image: url(../img/best.webp);
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 1440px) {
  .best-title {
    font-size: 44px;
  }

  .best-text {
    font-size: 20px;
    text-align: start;
  }
}

/* faq  */

#faq {
  background-color: #00000021;
  position: relative;
  overflow: hidden;
}

.game-faq {
  display: none;
}

.faq-section-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 48px;
  line-height: 108%;
  text-align: center;
  color: #000;
  margin-bottom: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  width: 100%;
  border: 1px solid rgba(13, 120, 72, 0.5);
  border-radius: 12px;
  padding: 18px 16px;
  background: linear-gradient(180deg, #e8ba30 0%, #ff5f00 100%);
  cursor: pointer;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background-color 0.4s ease;
}

.faq-item:hover {
  border-color: #000;
  .faq-btn {
    svg {
      stroke: #000;
    }
  }
}

.faq-item-click {
  box-shadow: 0 0 25px #000;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.4s ease;

  svg {
    fill: none;
    stroke: #fff;
    transition: stroke 0.4s ease;
  }
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
}

.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #52840c;
}

@media screen and (min-width: 1440px) {
  .faq-section-title {
    font-size: 52px;
    margin-bottom: 64px;
  }

  .game-faq {
    display: block;
    position: absolute;
    top: 200px;
    left: 50%;
    width: 290px;
    transform: translateX(-850px);
    transform-origin: center;
    z-index: -1;
  }

  .faq-list {
    width: 965px;
    margin: 0 auto;
  }

  .faq-item {
    border-radius: 12px;
    padding: 18px 28px;
  }

  .faq-text {
    font-size: 18px;
  }
}

/* disclaimer  */

#disclaimer {
  position: relative;
  overflow: hidden;
}

.disc-game1 {
  display: none;
}

.disc-game2 {
  display: none;
}

.disclaimer-content {
  border: 1px solid #ff5f00;
  border-radius: 14px;
  padding: 28px 16px;
  background: rgba(255, 95, 0, 0.5);

  h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 32px;
    line-height: 125%;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #fff;
    margin-bottom: 28px;
  }

  a {
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  a:hover {
    color: greenyellow;
  }
}

.pay {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .pay {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 1440px) {
  #disclaimer {
    padding: 151px 0;
  }

  .disc-game1 {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 140px;
    transform: translateX(650px);
    transform-origin: center;
    z-index: -1;
  }

  .disc-game2 {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 170px;
    transform: translateX(-700px);
    transform-origin: center;
    z-index: -1;
    filter: blur(5px);
  }

  .disclaimer-content {
    border-radius: 14px;
    padding: 28px 31px;
    width: 1197px;
    margin: 0 auto;

    h2 {
      font-size: 32px;
      text-align: start;
    }

    p {
      font-size: 18px;
      text-align: start;
    }
  }
}

/* footer */

.footer {
  padding: 40px 0px;
  background: #000;
}

.container-1 {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #fff;
}

.footer-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    text-align: center;
    color: #fff;
  }
}

.footer-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;

  a {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    line-height: 133%;
    color: #fff;
    transition: color 0.4s ease;
  }

  span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    line-height: 133%;
    color: #fff;
    display: block;
    transform: rotate(90deg);
  }

  a:hover {
    color: greenyellow;
  }
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  text-align: center;
  color: #fff;
  margin-top: 32px;
}

@media screen and (min-width: 1440px) {
  .footer {
    padding: 64px 0;
  }

  .footer-desc {
    gap: 15px;

    p {
      font-size: 12px;
    }
  }

  .footer-list {
    flex-direction: row;
    justify-content: center;
    gap: 24px;

    a {
      font-size: 14px;
    }

    span {
      font-size: 14px;
      transform: rotate(0);
    }
  }
}

/* ********************* */

@keyframes pulseScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(0);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
