* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: "Inika", serif;
}

button,
input {
  outline: none;
  border: none;
  background-color: transparent;
}

button {
  cursor: pointer;
  font-family: "Inika", serif;
}

textarea {
  font-family: "Inika", serif;
  outline: none;
}

input {
  font-family: "Inika", serif;
}

ul {
  list-style: none;
}

body {
  font-family: "Inika", serif;
  background-color: #1A2222;
}

a {
  font-family: "Inika", serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --gradient-color: linear-gradient(92deg, #1A2222 17%, #7F7D57 119.98%);
  --title-font: "New Rocker", system-ui;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;

  @media(max-width: 1450px) {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.btn-filled__kGP9ssD2 {
  border-radius: 50px;
  border: 2px solid #1A2222;
  background: linear-gradient(90deg, #6C877E 0%, #D1FF88 100%);
  box-shadow: 0 4px 4px 0 rgba(102, 175, 0, 0.25);
  padding: 8px 19px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: #0B2A22;
  text-transform: uppercase;
}

.btn-simple__kGP9ssD2 {
  color: #FFF8C8;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  border-radius: 50px;
  border: 2px solid #FFF8C8;
  box-shadow: 0 4px 4px 0 rgba(102, 175, 0, 0.25);
  padding: 8px 19px;
  text-transform: uppercase;
}

header {
  background: var(--gradient-color);

  & .nav-menu__inner-kGP9ssD2 {
    padding: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 0;


    & .nav-logo__kGP9ssD2 {
      width: 144px;
      height: 62px;

      & img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }

    & .nav-buttons__kGP9ssD2 {
      display: flex;
      gap: 5px;

      @media(max-width: 992px) {
        display: none;
      }
    }

    & .mob-menu__kGP9ssD2 {
      display: none;

      @media(max-width: 992px) {
        position: absolute;
        left: -100%;
        top: 136px;
        width: 100%;
        height: 50vh;
        background: #000;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: all .3s ease-in;
      }
      & .mob-menu__list-kGP9ssD2 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        & li {
          display: flex;
          justify-content: center;
        }
        & a {
          display: flex;
          justify-content: center;
          align-items: center;
          max-width: fit-content;
        }

      }

      &.active {
        transition: all .3s ease-in;
        left: 0;
      }
    }

    & .burger-kGP9ssD2 {
      display: none;

      @media(max-width: 992px) {
        display: block;
      }
    }
  }
}

main {
  position: relative;
}

.page-image__kGP9ssD2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 726px;

  & img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  font-family: var(--title-font);

  @media(max-width: 992px) {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
  }
}

h2 {
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  font-family: var(--title-font);
  color: #fff;

  @media(max-width: 992px) {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  font: var(--title-font);

  @media(Max-width: 992px) {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
}

h4 {}

h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

.section {
  margin-bottom: 70px;
}

.mainscreen-kGP9ssD2 {
  & .container {
    width: 100%;
    height: 100%;
  }

  & .mainscreen-inner__kGP9ssD2 {
    height: 100%;

    & .mainscreen-inner__top-kGP9ssD2 {
      position: relative;
      height: 100%;
      padding-top: 7.5rem;

      & .mainscreen-inner__info-kGP9ssD2 {
        max-width: 608px;

        @media(max-width: 992px) {
          max-width: 100%;
        }

        & h1 {
          color: #FFF;
          margin-bottom: 16px;

          @media(max-width: 992px) {
            text-align: center;
          }

        }

        & .mainscreen-description__kGP9ssD2 {
          color: #fff;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          margin-bottom: 24px;

          @media(max-width: 992px) {
            text-align: center;
          }
        }

        & .btn-filled__kGP9ssD2 {
          display: flex;
          justify-content: center;
          align-items: center;
          max-width: 608px;
          width: 100%;

          @media(max-width: 992px) {
            margin-left: auto;
            margin-right: auto;
            max-width: 100%;
          }
        }
      }

      & .mainscreen-inner__image-kGP9ssD2 {
        position: absolute;
        right: 0;
        top: 5%;

        @media(max-width: 1100px) {
          display: none;
        }


        & img {
          object-fit: contain;
          width: 100%;
          height: 100%;
        }
      }
    }

    & .mainscreen-inner__bottom-kGP9ssD2 {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      position: relative;
      z-index: 3;
      margin-top: 72px;

      @media(max-width: 992px) {
        flex-direction: column;
        gap: 5px;
        margin-top: 44px;
      }

      & span {
        padding: 10px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.10);
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 22px;
        color: #fff;
      }
    }
  }
}

.games-kGP9ssD2 {
  margin-top: 32px;
  position: relative;
  z-index: 2;

  @media(max-width: 992px) {
    margin-top: 24px;
  }

  & .games-inner__kGP9ssD2 {
    & h2 {
      text-align: center;
      margin-bottom: 24px;
    }

    & .games-description__kGP9ssD2 {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      text-align: center;
      color: #fff;
      max-width: 1240px;
      margin-left: auto;
      margin-right: auto;
    }

    & .games-items__kGP9ssD2 {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;

      @media(max-width: 1300px) {
        overflow-x: auto;
      }

      & .games-item__kGP9ssD2 {
        border-radius: 50px;
        background: #262d2d;
        padding: 20px;

        @media(max-width: 1300px) {
          min-width: 281px;
        }

        @media(max-width: 992px) {
          padding: 10px;
          padding-bottom: 26px;
        }


        & .games-item__image-kGP9ssD2 {
          border-radius: 50px;
          border: 1px solid #FFF8C8;
          width: 100%;
          height: 240px;
          margin-bottom: 10px;
          overflow: hidden;

          @media(max-width: 992px) {
            height: 182px;
            border-radius: 30px;
          }

          & img {
            object-fit: cover;
            width: 100%;
            height: 100%;
          }
        }

        & .games-item__name-kGP9ssD2 {
          font-size: 22px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          color: #fff;
          font-family: var(--title-font);
          height: 56px;
          margin-bottom: 16px;
          text-align: center;
        }

        & .games-item__description-kGP9ssD2 {
          text-align: center;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          height: 221px;
          color: #9F9F9F;
          margin-bottom: 16px;
          max-width: 250px;
          margin-left: auto;
          margin-right: auto;

          @media(max-width: 992px) {
            height: 192px;
          }

        }

        & .btn-filled__kGP9ssD2 {
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
        }
      }
    }
  }
}

.empty-kGP9ssD2 {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;

  & .demo-kGP9ssD2 {
    display: none;
    width: 100%;
    height: 100%;
    border: 0;

    &.active {
      display: block;
    }
  }

  & .empty-bg__kGP9ssD2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    & img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  & h2 {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
  }

  & .empty-frame__kGP9ssD2 {
    max-width: 884px;
    width: 100%;
    height: 602px;
    border-radius: 50px;
    background: #1A2222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    position: relative;

    @media(max-width: 992px) {
      height: 300px;
    }

  }
}

.reels-kGP9ssD2 {
  & h2 {
    margin-bottom: 40px;
    text-align: center;
  }

  & .reels-inner__kGP9ssD2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    @media(max-width: 992px) {
      flex-direction: column-reverse;
    }

    & .reels-info__kGP9ssD2 {
      max-width: 607px;
      width: 100%;

      & .reels-info__text-kGP9ssD2 {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        color: #9F9F9F;
        margin-bottom: 16px;
        text-align: justify;
      }

      & .reels-list__wrap-kGP9ssD2 {
        border-radius: 30px;
        background: #161D1D;
        padding: 24px;

        & h3 {
          margin-bottom: 16px;
        }

        & .reels-list__items-kGP9ssD2 {
          display: flex;
          flex-direction: column;
          gap: 16px;


          & .reels-list__item-kGP9ssD2 {
            display: flex;
            align-items: center;
            gap: 8px;

            & .reels-list__item-icon__kGP9ssD2 {
              width: 60px;
              height: 60px;
              min-width: 60px;

              & img {
                object-fit: contain;
                width: 100%;
                height: 100%;
              }
            }

            & .reels-list__item-info__kGP9ssD2 {
              & h5 {
                margin-bottom: 8px;
              }

              & .reels-list__item-info__text-kGP9ssD2 {
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 22px;
                color: #9F9F9F;
                text-align: justify;
              }
            }
          }
        }
      }
    }

    & .reels-image__kGP9ssD2 {
      max-width: 609px;
      width: 100%;
      height: 504px;
      border-radius: 30px;
      overflow: hidden;

      @media(max-width: 992px) {
        max-width: 100%;
        height: 200px;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }
  }

}

.cats-kGP9ssD2 {
  & h2 {
    margin-bottom: 24px;
    text-align: center;
  }

  & .cats-items__kGP9ssD2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;

    @media(max-width: 992px) {
      grid-template-columns: repeat(1, 1fr);
    }

    & .cats-item__kGP9ssD2 {
      border-radius: 30px;
      border: 1px solid #FFF8C8;
      background: #252C27;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;

      & .cats-item__image-kGP9ssD2 {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;

        & img {
          object-fit: contain;
          width: 100%;
          height: 100%;
        }
      }

      & h5 {
        height: 60px;
        margin-bottom: 8px;
        text-align: center;
      }

      & .cats-item__description-kGP9ssD2 {
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        color: #9F9F9F;
        max-width: 193px;
      }
    }
  }
}

.form-section__kGP9ssD2 {


  & .form-section__inner-kGP9ssD2 {
    position: relative;
    padding: 24px;

    & .form-section__inner-image-kGP9ssD2 {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border-radius: 22px;
      overflow: hidden;

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }

    & h2 {
      margin-bottom: 10px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    & .form-section__description-kGP9ssD2 {
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #9F9F9F;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    & .form-kGP9ssD2 {
      max-width: 720px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;

      & .form-section__input-kGP9ssD2 {
        border-radius: 14px;
        background: #E4E4E4;
        padding: 24px;
        display: block;
        width: 100%;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 8px;
      }

      & textarea {
        display: block;
        width: 100%;
        height: 93px;
        padding: 16px 24px;
        border-radius: 14px;
        margin-bottom: 20px;
        background: #E4E4E4;
      }

      & .btn-filled {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
      }
    }
  }


}

.success-message__kGP9ssD2 {
  margin-top: 15px;
  text-align: center;
  color: #c8f487
}

.disclaimer-kGP9ssD2 {
  & .disclaimer-inner__kGP9ssD2 {
    border-radius: 50px;
    background: #161D1D;
    padding: 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;

    & .disclaimer-icon__kGP9ssD2 {
      margin-bottom: 20px;
      width: 90px;
      height: 40px;



      & img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }

    & h3 {
      text-align: center;
      margin-bottom: 10px;
    }

    & .disclaimer-text__kGP9ssD2 {
      color: #9F9F9F;
      text-align: center;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;

    }
  }
}

footer {
  padding-top: 24px;
  padding-bottom: 40px;
  background: var(--gradient-color);

  & .footer-logos__kGP9ssD2 {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 24px;
    justify-content: center;

    @media(max-width: 992px) {
      flex-direction: column;
      gap: 8px;
      margin-bottom: 48px;
    }

    & .footer-logo__kGP9ssD2 {
      & img {}
    }
  }

  & .footer-info__items-kGP9ssD2 {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;

    @media(max-width: 992px) {
      flex-direction: column;
    }

    & .footer-info__item-kGP9ssD2 {
      max-width: 362px;
      width: 100%;

      & .footer-info__item-title__kGP9ssD2 {
        color: #FFF8C8;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 24px;
      }

      & .footer-info__item-subtitle__kGP9ssD2 {
        color: #FFF8C8;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
      }
    }
  }

  & .footer-links-kGP9ssD2 {
    display: flex;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;

    @media(max-width: 992px) {
      flex-direction: column;
    }

    & .footer-link__kGP9ssD2 {
      & a {
        color: #FFF8C8;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
      }
    }
  }
}

.text-page-kGP9ssD2 {
  position: relative;
  margin-top: 40px;
  padding-bottom: 40px;

  & h1 {
    color: #fff;
    margin-bottom: 20px;
  }

  & p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
  }
}

.overlay-kGP9ssD2 {
  background-color: #0009;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: none;
}

.overlay-kGP9ssD2.active {
  display: block;
}

.modal-kGP9ssD2 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 51;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;

  & .modal-inner__kGP9ssD2 {
    max-width: 600px;
    width: 100%;
    border-radius: 35px;
    background: linear-gradient(0deg, #1A2222 38.14%, #7F7D57 125%);
    padding: 64px;

    @media(max-width: 700px) {
      width: 98%;
    }

    & .modal-title__kGP9ssD2 {
      font-size: 34px;
      font-style: normal;
      font-weight: 700;
      line-height: 38px;
      text-align: center;
      color: #fff;
      margin-bottom: 12px;
    }

    & .modal-subtitle__kGP9ssD2 {
      font-size: 16px;
      line-height: 140%;
      margin-bottom: 32px;
      text-align: center;
      color: #fff;
    }

    & .age-buttons__kGP9ssD2 {
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    & .form-kGP9ssD2 {
      & input {
        background: #E4E4E4;
        padding: 24px;
        display: block;
        width: 100%;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 12px;
      }

      & .btn-filled__kGP9ssD2 {
        max-width: 100%;
        width: 100%;
      }
    }

    & .modal-bottom__kGP9ssD2 {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;

      & span {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 22px;
        color: #fff;
      }

      & a {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 22px;
        background: linear-gradient(90deg, #6C877E 0%, #D1FF88 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
    }
  }
}

.modal-kGP9ssD2.active {
  display: flex;
}