:root {
  --bg-color-1: #0d131c;
  --bg-color-2: #31343C;
  --action-color: #4069FC;
  --action-color-2: #74f131;
  --text-color: #ffffff;
  --text-color-2: #9ba0ae;
  --text-color-3: #9DA2AF;
  --main-color: #76d5fd;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg-color-1);
  color: var(--text-color);
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 82px;
  position: relative;
  overflow-x: hidden;
}

.main-gradient {
  position: fixed;
  width: 2375px;
  height: 2155px;
  left: -278px;
  top: 219px;
  background: radial-gradient(50% 50% at 50% 50%, #4069fc 0%, rgba(13, 19, 28, 0) 100%);
  opacity: 0.45;
  pointer-events: none;
}

.wrapper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 0 20px;
  }
}

.centered-content {
  display: flex;
  justify-content: center;
}

.main__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--action-color);
  color: var(--text-color);
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 60px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .main__button {
    padding: 12px 24px;
  }
}
.main__button:hover {
  opacity: 0.8;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
}

.affiliate_button {
  cursor: pointer;
}

.header {
  background-color: var(--bg-color-1);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .header__content {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header__content {
    gap: 16px;
  }
}
.header__logo {
  width: 204px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .header__logo {
    width: 80px;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 576px) {
  .header__buttons .main__button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .header__buttons .secondary__button {
    padding: 4px 8px;
    font-size: 12px;
  }
}

.heroBanner {
  position: relative;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .heroBanner {
    padding-top: 28px;
  }
}
.heroBanner__logo-mob {
  display: none;
}
@media screen and (max-width: 1024px) {
  .heroBanner__logo-mob {
    display: block;
    width: 100%;
    max-width: 74px;
    margin-bottom: 16px;
  }
}
.heroBanner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("../img/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .heroBanner__content {
    flex-direction: column;
    align-items: center;
    padding: 48px 63px 40px;
    background-image: url("../img/hero-banner_mob.png");
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__content {
    padding: 14px 24px 16px;
  }
}
.heroBanner__texts {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 22px;
  padding: 12px 16px 12px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__texts {
    align-items: center;
  }
}
.heroBanner__title {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  width: 100%;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .heroBanner__title {
    font-size: 42px;
    line-height: 54px;
  }
}
@media screen and (max-width: 1024px) {
  .heroBanner__title {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .heroBanner__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.heroBanner__subtitle-text {
  line-height: 120%;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .heroBanner__subtitle-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .heroBanner__subtitle-text {
    font-size: 12px;
    white-space: normal;
  }
}
.heroBanner__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.heroBanner__image {
  display: flex;
  width: 100%;
  max-width: 709px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
  border-radius: 30px;
}
.heroBanner__image img {
  width: 100%;
  height: auto;
  display: block;
}

.banner {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px 32px;
  border-radius: 16px;
  margin: 48px 0 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
  background: rgba(118, 213, 253, 0.1);
}
@media screen and (max-width: 768px) {
  .banner {
    margin: 20px 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .banner {
    padding: 6px 18px;
  }
}
.banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.banner__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 54px;
  text-align: center;
  color: var(--main-color);
}
.banner__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .banner__text {
    font-size: 12px;
    line-height: 16px;
  }
}

.bannerImage {
  width: 100%;
  margin-bottom: 40px;
}
.bannerImage__image {
  width: 100%;
  height: auto;
}

.bonus {
  display: flex;
  background-image: url("../img/bannerImage.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .bonus {
    flex-direction: column;
    background-image: url("../img/bannerImage_mob.png");
  }
}
.bonus__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  padding: 46px 48px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .bonus__content {
    gap: 16px;
    padding: 14px 16px;
  }
}
.bonus__title {
  font-size: 42px;
  line-height: 140%;
  font-weight: 500;
  max-width: 55%;
}
@media screen and (max-width: 768px) {
  .bonus__title {
    font-size: 16px;
  }
}

.games {
  margin: 16px 0 24px;
}
.games__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games__content {
    gap: 8px;
  }
}
.games__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin: 44px 0;
}
@media screen and (max-width: 1024px) {
  .games__title {
    font-size: 22px;
    line-height: 32px;
    margin: 24px 0;
  }
}
.games__slots, .games__games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games__slots, .games__games {
    gap: 8px;
  }
}
.games__slots-item, .games__games-item {
  width: calc(12.5% - 12.25px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .games__slots-item, .games__games-item {
    width: calc(25% - 6px);
  }
}
.games__slots-item::after, .games__games-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  background: rgba(40, 40, 40, 0.67);
  background-image: url("../img/play-button.svg");
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
.games__slots-item:hover::after, .games__games-item:hover::after {
  opacity: 1;
  background-size: 60px;
}
.games__slots-item img, .games__games-item img {
  width: 100%;
  height: auto;
  display: block;
}

.games2 {
  margin: 40px 0 24px;
}
.games2__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__content {
    gap: 8px;
  }
}
.games2__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin: 44px 0;
}
@media screen and (max-width: 1024px) {
  .games2__title {
    font-size: 22px;
    line-height: 32px;
    margin: 24px 0;
  }
}
.games2__subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.games2__subtitle img {
  width: 20px;
  height: 20px;
}
.games2__subtitle span {
  font-size: 18px;
  line-height: 24px;
}
.games2__subtitle-link {
  background: var(--bg-color-2);
  border-radius: 65.5px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color-2);
  text-decoration: none;
  margin-left: auto;
  transition: all 0.3s;
}
.games2__subtitle-link:hover {
  background: var(--bg-color-1);
  color: var(--action-color-2);
}
.games2__categories {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__categories {
    flex-direction: column-reverse;
  }
}
.games2__categories-items {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--text-color-2) var(--bg-color-2);
  scrollbar-gutter: stable;
}
@media screen and (max-width: 1024px) {
  .games2__categories-items {
    padding: 0 20px;
    margin: 0 -20px;
  }
}
.games2__categories-item {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-color-2);
  font-weight: 400;
}
.games2__categories-item:first-child {
  background: #0D0D0D;
  color: var(--action-color-2);
}
.games2__categories-item:hover {
  background: #0D0D0D;
  color: var(--action-color-2);
}
.games2__slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__slots {
    gap: 8px;
  }
}
.games2__slots-item {
  width: calc(12.5% - 12.25px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .games2__slots-item {
    width: calc(25% - 6px);
  }
}
.games2__slots-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  background: rgba(40, 40, 40, 0.67);
  background-image: url("../img/play-button.svg");
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
.games2__slots-item:hover::after {
  opacity: 1;
  background-size: 60px;
}
.games2__slots-item img {
  width: 100%;
  height: auto;
  display: block;
}
.games2__providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .games2__providers {
    gap: 8px;
  }
}
.games2__providers-item {
  width: calc(14.2% - 12.25px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .games2__providers-item {
    width: calc(25% - 6px);
  }
}
.games2__providers-item:hover {
  transform: scale(1.05);
}
.games2__providers-item img {
  width: 100%;
  height: auto;
  display: block;
}

.markupText {
  position: relative;
}
.markupText:not(.title),
.markupText p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}
.markupText .title,
.markupText .title-h2,
.markupText .title-h3,
.markupText .title-h4,
.markupText h1,
.markupText h2,
.markupText h3,
.markupText h4,
.markupText h5,
.markupText h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
}
.markupText .center-text {
  text-align: center;
}
.markupText .title-h2,
.markupText h2 {
  font-size: 24px;
}
.markupText .title-h3,
.markupText h3 {
  font-size: 20px;
}
.markupText .title-h4,
.markupText h4 {
  font-size: 18px;
}
.markupText ul,
.markupText ol {
  margin-left: 24px;
  margin-top: 12px;
  margin-bottom: 24px;
}
.markupText ul li,
.markupText ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.markupText .centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.markupText table {
  border-collapse: collapse;
  width: 100%;
  margin: 36px 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
.markupText table td,
.markupText table th {
  padding: 13px 20px;
  border: 1px solid #b9b9b9;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .markupText table td,
  .markupText table th {
    padding: 2px 4px;
    font-size: 12px;
    min-width: auto;
  }
}
.markupText table th {
  text-align: left;
  background-color: #04aa6d;
  color: white;
  background: rgba(242, 242, 245, 0.19);
}
.markupText table tr:nth-child(even) {
  background-color: rgba(242, 242, 245, 0.19);
}
.markupText table a {
  color: var(--main-color);
  text-decoration: underline;
}
.markupText__counter {
  max-width: 1042px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin: 74px 0 0px;
}
@media screen and (max-width: 1024px) {
  .markupText__counter {
    margin: 26px 0 18px;
  }
}
.markupText__counter-title {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid #76d5fd;
  border-radius: 15px 15px 0px 0px;
  font-size: 35px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .markupText__counter-title {
    font-size: 22px;
    border-radius: 10px 10px 0px 0px;
  }
}
@media screen and (max-width: 768px) {
  .markupText__counter-title {
    font-size: 14px;
  }
}
.markupText__counter-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  border: 1px solid #76d5fd;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .markupText__counter-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .markupText__counter-item {
    min-height: 64px;
    font-size: 12px;
  }
}
.markupText__counter-item:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.markupText__counter-item:last-child {
  border-radius: 0px 0px 27px 27px;
}
@media screen and (max-width: 1024px) {
  .markupText__counter-item:last-child {
    border-radius: 0px 0px 10px 10px;
  }
}
.markupText__counter-left, .markupText__counter-right {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 50%;
  padding: 10px;
  flex: 1;
}
.markupText__counter-right {
  border-left: 1px solid #76d5fd;
}

.footer {
  position: relative;
}
.footer__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 42px;
  padding-bottom: 20px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    gap: 10px;
  }
}
.footer__banner {
  width: 100%;
  margin-bottom: 12px;
}
.footer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  flex: 1;
  color: var(--text-color-2);
}
.footer a {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  transition: all 0.3s;
}
.footer a:hover {
  opacity: 0.8;
}

.Matrix-primary-button {
  height: 62px;
  width: 175px;
  background: linear-gradient(267.94deg, #00F0FF 0%, #6100FF 100%);
  box-shadow: 0px 0px 40px rgba(62, 137, 253, 0.3);
  border-radius: 4px;
  transform: matrix(1, 0, -0.17, 0.98, 0, 0);
  border: none;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: all 0.3s;
}
.Matrix-primary-button span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  transform: matrix(1, 0, -0.17, 0.98, 0, 0);
}
.Matrix-primary-button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .Matrix-primary-button {
    height: 50px;
    width: 140px;
  }
  .Matrix-primary-button span {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .Matrix-primary-button {
    height: 40px;
    width: 120px;
  }
  .Matrix-primary-button span {
    font-size: 12px;
    line-height: 18px;
  }
}

.Matrix-secondary-button {
  box-sizing: border-box;
  height: 65px;
  width: 175px;
  background: #18040D;
  border: 2px solid #4069FC;
  border-radius: 4px;
  transform: matrix(1, 0, -0.17, 0.98, 0, 0);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.Matrix-secondary-button span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  transform: matrix(1, 0, -0.17, 0.98, 0, 0);
}
.Matrix-secondary-button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .Matrix-secondary-button {
    height: 50px;
    width: 140px;
  }
  .Matrix-secondary-button span {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .Matrix-secondary-button {
    height: 40px;
    width: 120px;
  }
  .Matrix-secondary-button span {
    font-size: 12px;
    line-height: 18px;
  }
}

.features-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .features-block {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 178px;
  transition: all 0.3s;
  border: 1px solid var(--action-color);
  background: #0D131C;
  box-shadow: 0px 0px 3.20467px 0.640933px #4069FC;
  border-radius: 6px;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .feature-item {
    gap: 4px;
    padding: 12px;
  }
}
.feature-item:hover {
  background: rgba(14, 30, 65, 0.7);
}
.feature-item__icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .feature-item__icon {
    width: 36px;
    height: 36px;
  }
}
.feature-item__title {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-item__title {
    font-size: 12px;
  }
}
.feature-item__text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9ba0ae;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-item__text {
    font-size: 10px;
  }
}/*# sourceMappingURL=styles.css.map */