.nav {
  display: none;
}

.header {
  position: fixed;
  z-index: 9;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(180deg, #510100 0%, #b70200 100%);
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
  color: #ffa800;
  text-shadow: 0 0 10px #ff0200;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.menu-svg {
  stroke: white;
  fill: white;
}

@media screen and (min-width: 1432px) {
  .header {
    padding: 20px;
  }

  .nav-list {
    gap: 36px;
  }

  .nav {
    display: block;
  }

  .menu-open {
    display: none;
  }
}

/* modal  */

.modal {
  position: fixed;
  top: 66px;
  left: 0;
  z-index: 8;
  width: 100%;
  padding: 32px;
  background: url(./images/icon/innerfire_wild\ 3.png),
    linear-gradient(360deg, #a40a00 0%, #140000 100%);

  background-position: right center;
  background-repeat: no-repeat;
}

.menu-nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  left: 50%;
  width: 95%;
  transform: translateX(-50%);
  padding: 20px;

  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.18);
  background: #ca0000;

  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;

  transition: transform 0.4s ease;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #e3e1eb;

  border: 2px solid #e3e1eb;
  border-radius: 6px;
  padding: 12px 50px;

  transition: color 0.3s ease, background-color 0.3s ease;
}

.popup-btn:hover {
  color: #10182f;
  background: #e3e1eb;
}

.popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

@media screen and (min-width: 1432px) {
  .popup {
    display: flex;
    padding: 22px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .popup-text {
    max-width: 65%;
    margin: 0;
  }

  .popup-btn {
  }
  .popup-wrap {
    gap: 20px;
  }
}

/* home  */

.hero {
  background-image: url(./images/bg.jpg);
  background-size: cover;
  background-position: center;
  padding-top: 68px;
  padding-bottom: 80px;
  position: relative;
}

.hero-number {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 123px;
}

.hero-bell {
  position: absolute;
  top: 50px;
  right: 0;
  width: 87px;
}

.hero-wild {
  position: absolute;
  top: 50px;
  left: 0;
  width: 90px;
}

.hero-cherry {
  position: absolute;
  bottom: 200px;
  right: 0;
  width: 96px;
}

.hero-logo {
  width: 298px;
  margin: 0 auto;
  margin-bottom: 13px;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 46px;
  line-height: 113%;
  color: #fff;
  margin-bottom: 20px;
}

.hero-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}

.hero-link {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 335px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.hero-link:hover {
  transform: scale(0.96);
}

@media screen and (min-width: 1432px) {
  .hero {
    padding-top: 132px;
    padding-bottom: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 43px;
  }
  .hero-wild {
    top: 50px;
    left: 55%;
    width: auto;
  }

  .hero-bell {
    width: auto;
  }

  .hero-cherry {
    bottom: 0;
    right: 50px;
    width: auto;
  }
  .hero-number {
    bottom: 0;
    left: 45%;
    width: auto;
  }

  .hero-logo {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .hero-title {
    font-size: 58px;
    margin-bottom: 36px;
  }

  .hero-text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .hero-link {
    width: 419px;
  }
}

/* master */

.master-list {
  display: flex;
  flex-direction: column;
  gap: 28px;

  li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #fff;
  }
}

.master-img {
  width: 375px;
  margin: 0 auto;
  opacity: 0.7;
}

@media screen and (min-width: 1432px) {
  #master {
    padding-right: 0;

    .section-title {
      margin: 0;
    }
  }

  .master-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .master-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .master-list {
    gap: 36px;

    li {
      font-size: 24px;
    }
  }
}

/* prise */

#prise {
  position: relative;
}

.free1 {
  position: absolute;
  width: 87px;
  left: 0;
  top: 50%;
}

.free2 {
  position: absolute;
  width: 116px;
  right: 0;
  top: 59%;
}

.prise-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
  margin-bottom: 24px;
}

.banner {
  margin: 0 auto;
  margin-bottom: 24px;
}

.prise-wrap {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #fff;

  ul {
    padding-left: 20px;
    list-style: disc;
  }
}

@media screen and (min-width: 1432px) {
  .prise-text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .free1 {
    width: 248px;
    left: 0;
    top: 30%;
  }

  .free2 {
    width: auto;
    right: 0;
    top: 50%;
  }

  .banner {
    margin-bottom: 40px;
  }
  .prise-wrap {
    font-size: 20px;
  }
}

/* crown */

#crown {
  padding-bottom: 0;
}

.crown-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}

.crown-img {
  margin: 0 auto;
  width: 300px;
}

@media screen and (min-width: 1432px) {
  #crown {
    .section-title {
      margin: 0;
    }
  }
  .crown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
  }

  .crown-text {
    font-size: 28px;
    margin: 0;
  }
  .crown-img {
    margin: 0;
    width: auto;
    flex-shrink: 0;
  }
}

/* ignite */

.ignite-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 64px;

  li {
    width: 226px;
    min-height: 224px;
    border-radius: 22px;
    background: radial-gradient(
      103.24% 46.39% at 49.86% 49.88%,
      rgb(65, 1, 1) 0%,
      rgb(255, 39, 12) 100%
    );

    padding: 15px;
    padding-top: 0;
  }

  img {
    margin: 0 auto;
    transform: translateY(-20px);
  }

  p {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #fff;
  }
}

@media screen and (min-width: 1432px) {
  .ignite-list {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    margin-top: 84px;
  }
}

/* spins */

.spins-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #ffd400;
  margin-bottom: 24px;
}

.spins-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;

  li {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
  }
}

.spins-img {
  width: 314px;
  margin: 0 auto;
}

@media screen and (min-width: 1432px) {
  #spins {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 46px;

    .section-title {
      text-align: start;
    }
  }

  .spins-img {
    width: 376px;
    margin: 0;
    flex-shrink: 0;
  }

  .spins-list {
    gap: 40px;

    li {
      max-width: 400px;
      font-size: 24px;
    }
  }

  .item2 {
    transform: translateX(100px);
  }

  .item3 {
    transform: translateX(200px);
  }
}

/* meet */
#meet {
  position: relative;
}

.meet-cherry {
  position: absolute;
  bottom: 300px;
  right: 20px;
  width: 100px;
  opacity: 0.4;
}

.meet-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
  }
}

.meet-img {
  width: 335px;
  margin: 0 auto;
}

@media screen and (min-width: 1432px) {
  #meet {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .meet-cherry {
    bottom: auto;
    top: 11px;
    right: 10px;
    width: 206px;
    opacity: 0.4;
  }

  .meet-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .meet-list {
    gap: 24px;

    p {
      font-size: 20px;
    }
  }
}

/* mobile */

#mobile {
  position: relative;
  padding-bottom: 0;
}

.mobile-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
  margin-bottom: 32px;
}

.mobile-img {
  width: 329px;
  margin: 0 auto;
}
.bar {
  position: absolute;
  top: 150px;
  right: 0;
  width: 104px;
}

@media screen and (min-width: 1432px) {
  #mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 42px;

    .section-title {
      text-align: start;
    }
  }

  .mobile-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .bar {
    width: auto;
    top: 0;
  }
}

/* see */

.see-item {
  width: 335px;
  max-width: 100%;
}

.swiper-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 32px;
}

.see-list {
  display: none;
}

@media screen and (min-width: 1432px) {
  .see-swiper {
    display: none;
  }

  .swiper-btn-wrap {
    display: none;
  }

  .see-list {
    width: 994px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;

    div {
      width: calc((100% - 80px) / 2);
    }
  }
}

/* blueprint */

.blueprint-wrap {
  position: relative;
}

.blueprint-cherry {
  width: 137px;
  position: absolute;
  top: 0;
  right: 0;
}

.blueprint-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;

  li {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
  }
}

.technick-img {
  width: 335px;
  margin: 0 auto;
}

@media screen and (min-width: 1432px) {
  .blueprint-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
  }

  .blueprint-cherry {
    top: -150px;
    right: -50px;
    width: 300px;
  }

  .technick-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .blueprint-list {
    li {
      font-size: 20px;
    }
  }
}

/* demo */

.iframe-wrap {
  position: relative;
  width: 335px;
  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;
}

@media screen and (min-width: 768px) {
  .iframe-wrap {
    width: 500px;
    height: 290px;
  }
}

@media screen and (min-width: 1200px) {
  .iframe-wrap {
    min-width: 837px;
    height: 490px;
  }
}

.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;
  z-index: 20;
  .menu-svg {
    fill: #fff;
    stroke: #fff;
  }
}

.close-button-frame:hover {
  .menu-svg {
    fill: red;
    stroke: red;
  }
}

#gameIframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* faq */

#faq {
  background-image: url(./images/FAQ.jpg);
  background-size: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  padding: 24px 16px;
  background: #fff;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: rotate(45deg);

  svg {
    stroke: #212b36;
  }
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #212b36;
}

.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #212b36;
  padding-left: 16px;
  margin-top: 20px;
  box-shadow: inset 3px 0 0 0 #ff1f00;
}

@media screen and (min-width: 1422px) {
  .faq-list {
    width: 900px;
    margin: 0 auto;
  }
  .faq-item {
    padding: 24px 20px;
  }

  .faq-title {
    font-size: 20px;
  }
}

/* contact */

.mail {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #ffd400;
  margin-bottom: 24px;
}

.contact-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-cherry {
  width: 255px;
  margin: 0 auto;
}

@media screen and (min-width: 1432px) {
  #contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 50px;
  }

  .contact-cherry {
    width: 358px;
    margin: 0;
    flex-shrink: 0;
  }

  .mail {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-text {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: start;
  }

  .social-list {
    justify-content: flex-start;
  }
}

/* disclaimer */

#disclaimer {
  h4 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 28px;
    line-height: 114%;
    color: #fff;
    margin-bottom: 28px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
  }
}

@media screen and (min-width: 1432px) {
  #disclaimer {
    h4 {
      font-size: 36px;
      margin-bottom: 28px;
    }

    p {
      font-size: 24px;
    }
  }
}

/* footer */

.footer {
  padding: 28px 15px;
  background: #230103;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #fff;
  text-align: center;
  margin-top: 32px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.link:hover {
  text-decoration: underline;
}

@media screen and (min-width: 1432px) {
  .footer {
    padding: 46px 116px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-wrap {
    margin: 0;
  }

  .footer-link {
    font-size: 16px;
  }

  .footer-text {
    font-size: 14px;
    margin: 0;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.click {
  transform: rotate(180deg);
}

.popup-click {
  transform: translateY(120%) translateX(-50%);
}
