* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: unset;
}

@font-face {
  font-family: "FuturaPTCondBoldOblique";
  src: url("../assets/fonts/futura-pt-cond-bold-oblique.otf");
  font-weight: 700;
}
@font-face {
  font-family: "FuturaPTCondExtraBold";
  src: url("../assets/fonts/FuturaPTCondExtraBold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "FuturaPTCondExtraBoldOblique";
  src: url("../assets/fonts/futura_pt_cond_extra_bold_oblique.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "RobotoRegular";
  src: url("../assets/fonts/roboto-regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "RobotoBold";
  src: url("../assets/fonts/roboto-bold.ttf");
  font-weight: 700;
}

:root {
  --c-dark-1: #0b0a10;
  --c-dark-2: #13131b;
  --c-dark-3: #13131b6f;
  --c-red-1: #e11b1c;
  --c-grey-1: #b2b2b2;
  --c-white: #fff;
  --c-iron: #fffff0;
  --c-black: #0e1012;

  --g-yellow: linear-gradient(to top, #ecc440 0%, #fffa8a 50%, #ecc440 100%);
  --g-yellow-text: -webkit-linear-gradient(
    #ecc440 0%,
    #fffa8a 50%,
    #ecc440 100%
  );

  --f-futura-extra-bold: "FuturaPTCondExtraBold";
  --f-futura-extra-bold-obl: "FuturaPTCondExtraBoldOblique";
  --f-futura-bold-obl: "FuturaPTCondBoldOblique";
  --f-roboto-regular: "RobotoRegular";
  --f-roboto-bold: "RobotoBold";
}

body {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: var(--c-dark-2);
}

.text-gradient-config {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flex-r {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline {
  font-size: 1.8rem;
  /* font-size: 32px; */
  text-transform: uppercase;
  color: var(--c-iron);
  font-family: var(--f-futura-extra-bold-obl);
}
.headline-sub {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--c-iron);
  font-family: var(--f-futura-extra-bold-obl);
  height: 60px;
}

.btn,
.btn-reversed {
  padding: 7px 14px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 18px;
  font-family: var(--f-futura-extra-bold);
  font-size: 18px;
  cursor: pointer;
}

.btn:hover,
.btn-reversed:hover {
  transform: scale(0.97);
}

ul li,
ol li {
  color: var(--c-iron);
  font-family: var(--f-roboto-regular);
}

ol {
  margin-left: 15px;
}

.block ul,
.block ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn {
  background: var(--c-white);
  color: var(--c-black);
}
.btn:hover {
  background: var(--c-red-1);
  color: var(--c-white);
}

.btn-reversed {
  background: var(--c-red-1);
}

.btn-reversed:hover {
  background: var(--c-white);
  color: var(--c-black) !important;
}

.cup {
  cursor: pointer;
}

.pl {
  padding-left: 1.5vw;
}

/* HEADER  */

header {
  max-width: 100vw;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 22;
  height: 60px;
  background-color: var(--c-dark-1);
  justify-content: space-between;
  padding: 0px 30px;
}

nav {
  position: fixed;
  /* top: 60px; */
  right: -70vw;
  top: 0;
  background: var(--c-dark-1);
  padding: 18px 28px 18px 18px;
  width: 70vw;
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
  max-height: 100dvh;
  z-index: 22;
  color: var(--c-black);
  opacity: 0;
  transition: all 0.3s ease;
}

nav.open {
  right: 0;
  opacity: 1;
  overflow: auto;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 22;
  cursor: pointer;
}

.nav-bg {
  position: fixed;
  width: 100vw;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--c-dark-3);
  height: 100vh;
  z-index: 18;
  display: none;
}

.nav-bg.open {
  display: block;
}

.header-logo {
  /* height: 1.5vw; */
  min-width: 180px;
  max-width: calc(13.8vw - 38px);
  top: 18px;
  object-fit: contain;
  cursor: pointer;
}

.header-left {
  gap: 2vw;
  height: 100%;
}

.header-left-item {
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  height: 100%;
  text-wrap: wrap;
}

.header-left-item a {
  color: var(--c-white);
  text-decoration: none;
  font-family: var(--f-futura-extra-bold);
}
.header-left-item img {
  filter: invert(0);
}

.header-left-item:nth-child(5) img {
  height: 30px;
  object-fit: contain;
  filter: invert(0);
}

nav .header-left-item {
  height: 50px;
  display: flex;
  color: var(--c-white);
}

nav .header-left-item img {
  filter: invert(1);
}

#close-dropdown {
  filter: invert(1);
  z-index: 22;
}

nav .header-left-item a,
nav .header-left-item p {
  width: fit-content;
  text-decoration: none;
  color: var(--c-white);
  font-family: var(--f-futura-extra-bold);
}

nav .header-left-item:nth-child(5) img {
  height: 30px;
  object-fit: contain;
  filter: invert(0);
}

.nav-dropdown {
  max-height: 85dvh;
  height: fit-content;
  overflow: auto;
  position: absolute;
  top: 60px;
  display: none;
  left: -20px;
  flex-direction: column;
  min-width: max-content;

  background-color: var(--c-dark-1);
  z-index: 15;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  scrollbar-color: var(--c-dark-2) var(--c-dark-1);
}

.nav-dropdown::-webkit-scrollbar-track {
  background: var(--c-dark-1);
}

.scrollable::-webkit-scrollbar-thumb {
  background: var(--c-dark-2);
}

.nav-dropdown-item {
  text-transform: none;
  padding: 12px 20px;
  /* font-family: var(--f-futura-extra-bold); */
  color: var(--c-iron);
}

.nav-dropdown-item:hover {
  color: var(--c-red-1);
}

.nav-title {
  justify-content: space-between;
  width: 100%;
}
.nav-title-lang .active {
  color: var(--c-red-1);
}

.nav-title img {
  height: 20px;
  width: 20px;
  filter: invert(0);
  object-fit: contain;
}

#nav-bonus {
  filter: invert(0);
  height: 30px;
}

.header-right-lang {
  margin-left: 10px;
}
.header-right-lang img {
  display: none;
  height: 24px;
  cursor: pointer;
  width: 30px;
}

.header-right-lang a {
  display: block;
  font-family: var(--f-futura-extra-bold);
  font-size: 20px;
  cursor: pointer;
  color: var(--c-white);
}

.header-right-lang a:hover {
  color: var(--c-red-1);
}

.header-right-lang a.active {
  color: var(--c-red-1);
}

.header-right-lang a.active:hover {
  color: var(--c-white);
}

#reg-btn {
  color: var(--c-white);
}

.content-wrapper {
  margin-top: 60px;
  max-width: 100vw;
  width: 100%;
  padding: 0 15vw 20px 15vw;
  position: relative;
  align-items: start;
  height: 100%;
}

p b,
h3 b,
h3,
h4 b,
h4 {
  font-family: "RobotoBold";
  color: var(--c-iron);
}

p.center,
h3.center {
  text-align: center;
}

/* BANNER */

.banner {
  margin-top: 20px;
  position: relative;
  width: 70vw;
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}

.banner-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.banner-bg-mob {
  display: none;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translate(0%, -50%);
  font-family: var(--f-futura-bold-obl);
  text-transform: uppercase;
}

.banner-content h1 {
  color: var(--c-iron);
  font-size: 2.7vw;
}

.banner-content p:nth-child(2) {
  font-size: 1.9vw;
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content p:nth-child(2) span {
  font-size: 7.4vw;
  line-height: 6.5vw;
  font-family: var(--f-futura-extra-bold-obl);
}

.banner-content p:nth-child(3) {
  font-size: 2.7vw;
  font-family: var(--f-futura-extra-bold-obl);
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-btn {
  margin-top: 15px;
  /* min-height: 45px; */
  height: 4vw;
  font-family: var(--f-futura-extra-bold-obl);
  font-size: 1.8vw;
  text-transform: uppercase;
  background: var(--g-yellow);
  padding: 2vh 2.8vw;
  white-space: nowrap;
  border-radius: 28px;
}

.banner-btn:hover {
  background: var(--c-iron);
}
.screen {
  width: 100%;
  height: auto;
  display: block;
}

.screen-5 {
  max-height: 350px;
}

.screen-6 {
  max-height: 500px;
}

.screen-7 {
  max-height: 350px;
}

.screen-8 {
  max-height: 350px;
}
.screen-9 {
  max-width: 400px;
  align-self: center;
}

.screen-11,
.screen-12,
.screen-14,
.screen-15 {
  width: 100%;
  height: auto;
  align-self: center;
}

.screen-16 {
  max-height: 250px;
  margin-right: 20px;
}

.screen-12 {
  max-height: 400px;
}

.screen-13 {
  max-height: 400px;
}

.support-contacts {
  display: flex;
  gap: 10vw;
}

.support-links {
  display: flex;
  gap: 5vw;
}
.support-links a {
  font-family: "Roboto";
}

.block {
  margin: 50px 0px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.block-content {
  display: flex;
}

.block-content div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.first-block {
  margin: 0;
  margin-top: 20px;
  flex-direction: row;
  align-items: flex-start;
}

.first-block-left {
  display: flex;
  gap: 28px;
  flex-direction: column;
}

.second-block {
  margin-top: 40px;
  margin-bottom: 20px;
  gap: 10px;
}
.col-1 {
  max-width: 100vw;
  width: 65%;
  margin-right: 60px;
}
.col-2 {
  margin-top: 30px;
  height: 100%;
  width: auto;
  max-width: 300px;
}
.col-2-content {
  top: 70px;
  position: sticky;
}
.mob-col-2 {
  display: none;
  width: 100%;
}

.block p {
  font-family: var(--f-roboto-regular);
  color: var(--c-iron);
}
.block a {
  text-decoration: underline;
  color: var(--c-red-1);
}
.block p span {
  font-family: var(--f-roboto-bold);
}

.offer-wrapper {
  position: relative;
}

.offer {
  position: absolute;
  top: 20px;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.offer h3 {
  font-family: var(--f-futura-bold-obl);
  color: var(--c-iron);
  font-size: 32px;
  line-height: 25px;
}
.offer h2 {
  font-family: var(--f-futura-extra-bold-obl);
  color: var(--c-red-1);
  font-size: 66px;
  line-height: 56px;
}
.offer p {
  font-family: var(--f-futura-bold-obl);
  color: var(--c-iron);
  font-size: 14px;
  margin-bottom: 5px;
}

.offer .btn-reversed {
  margin-top: 2px;
  text-transform: uppercase;
  color: var(--c-iron);
}

.faq-item {
  cursor: pointer;
  width: 100%;
  padding: 9px 18px 18px 18px;
  background-color: var(--c-iron);
  border-radius: 11px;
  height: 40px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.faq-item h3 {
  color: var(--c-dark-1);
  font-family: var(--f-roboto-bold);
  font-size: 17px;
  line-height: 25px;
}
.faq-item-text {
  margin-top: 10px;
  color: var(--c-dark-1);
  font-family: var(--f-roboto-regular);
  font-size: 15px;
}

.faq-item img {
  filter: invert(1);
  position: absolute;
  top: 13px;
  right: 10px;
  height: 8px;
  width: 13px;
}

.faq-item:hover {
  height: auto;
  transition: all 0.3s ease;
}

.faq-item:hover.faq-item img {
  transform: rotate(180deg);
}
.faq-item:hover.faq-item h3 {
}

.rating {
  margin-top: 5vh;
  background-color: var(--c-dark-1);
  padding: 26px 16px;
  border-radius: 11px;
}
.rating-row {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--c-grey-1);
}
.rating-row-first {
  margin-bottom: 20px;
  border-bottom: 0px solid black;
}
.rating-row h2 {
  text-transform: uppercase;
  color: var(--c-iron);
  font-size: 22px;
  font-family: var(--f-futura-extra-bold-obl);
}
.rating-row h2 span {
  color: var(--c-red-1);
}
.rating-row p {
  padding-bottom: 10px;
  color: var(--c-grey-1);
  font-size: 16px;
  font-family: var(--f-roboto-regular);
}
.rating-row p span {
  color: var(--c-iron);
}
.inline-item {
  display: inline;
}
/* FOOTER */

.footer {
  width: 100%;
}
.footer-1 {
  width: 100%;
  padding: 32px 15vw;
  flex-direction: row;
  background-color: var(--c-dark-1);
  gap: 30px;
  align-items: flex-start;
}
.footer-1-row-1 {
  align-items: flex-start;
  flex-direction: column;
}

.footer-1-contacts {
  display: flex;
  margin-left: 20px;
  flex-direction: column;
}

.footer-1-row-1 a,
.footer-1-row-1 p {
  text-decoration: none;
  white-space: nowrap;
  color: var(--c-iron);

  font-family: var(--f-futura-extra-bold);
  font-size: 18px;
}
.footer-1-row-1 a {
  cursor: pointer;
}
.footer-1-row-1 a:hover {
  color: var(--c-red-1);
}

.footer-1-row-2 {
  flex-direction: column;
  color: var(--c-iron);

  margin-bottom: 20px;
  font-family: var(--f-futura-extra-bold);
}

.footer-1-row-3 {
  gap: 3.385vw;
  color: var(--c-iron);
  font-size: 14px;
  font-family: var(--f-roboto-regular);
}

.footer-1-row-3 p span {
  cursor: pointer;
  color: var(--c-red-1);
}

.footer-1-row-3 p span:hover {
  background: var(--c-iron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-1-row-4 {
  gap: 8px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
}

.footer-1-row-4 div {
  height: 34px;
  cursor: pointer;
  width: 34px;
  border-radius: 11px;
  background-color: var(--c-dark-2);
  transition: all 0.3s ease;
}

.footer-1-row-4 div:hover {
  transform: translateY(-5px);
}

.footer-1-row-4 div img {
  height: 20px;
  object-fit: contain;
}

.footer-2 {
  padding: 23px 0px;
}
.footer-2:hover {
  cursor: pointer;
}

.footer-3 {
  width: 100%;
  font-family: var(--f-roboto-regular);
  font-size: 12px;
  color: var(--c-iron);
  background-color: var(--c-dark-1);
  padding: 35px 0px;
}

.payments {
  display: block;
  max-width: 693px;
  width: 100%;
}

.payments-mob {
  display: none;
  max-width: 368px;
  width: 100%;
}

.splide__pagination__page.is-active {
  background: var(--c-red-1) !important;
}
.splide__pagination__page {
  background: var(--c-iron) !important;
}

/* MEDIA */

@media (max-width: 1200px) {
  .content-wrapper {
    padding: 0 10vw 20px 10vw;
  }
  .col-1 {
    margin-right: 30px;
  }
}
@media (max-width: 1000px) {
  .content-wrapper {
    padding: 0 8vw 20px 8vw;
  }
  .header-left-item img {
    filter: invert(0);
    /* display: none; */
  }
  nav .header-left-item img {
    filter: invert(0);
  }

  .footer-1-row-1 {
    width: auto;
  }
  .payments {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .block p {
    font-size: 14px;
  }
  .pl {
    padding-left: 4vw;
  }
  header {
    padding: 0px 6vw;
  }
  .scroll-top {
    right: 6vw;
  }
  .header-left-item {
    display: none;
  }

  .header-right-lang p {
    display: none;
  }
  .header-right-lang img {
    display: block;
  }
  .content-wrapper {
    padding: 0 6vw 20px 6vw;
  }
  .col-1 {
    width: auto;
    margin-right: 0px;
  }
  .banner {
    width: 90vw;
    margin-bottom: 20px;
  }
  .banner-bg {
    display: none;
  }
  .banner-bg-mob {
    display: block;
  }
  .banner-content h1 {
    font-size: 7vw;
  }
  .banner-btn {
    font-size: 4.7vw;
    height: 9vw;
    padding: 2vh 7vw;
    /* height: 6vh; */
  }

  .banner-content p:nth-child(2) {
    font-size: 5vw;
    gap: 0;
  }
  .banner-content p:nth-child(2) span {
    font-size: 18vw;
    line-height: 14vw;
  }
  .banner-content p:nth-child(3) {
    font-size: 7vw;
  }
  .games {
    gap: 3.2vw;
  }

  .game {
    width: 42.4vw;
    height: auto;
    overflow: hidden;
    border-radius: 11px;
    position: relative;
  }

  .screen-5 {
    max-height: unset;
    width: 90vw;
  }

  .screen-6 {
    max-height: unset;
    width: 90%;
    align-self: center;
  }

  .screen-7,
  .screen-8,
  .screen-11,
  .screen-12,
  .screen-13,
  .screen-14,
  .screen-15,
  .screen-16 {
    max-height: unset;
    width: 50vw;
    align-self: center;
  }
  .screen-16 {
    margin-right: 0;
  }

  .support-contacts {
    flex-direction: column;
  }

  .support-links {
  }

  .block {
    margin: 25px 0px;
  }
  .block-content {
    flex-direction: column;
  }
  .footer-1 {
    flex-direction: column;
    padding: 32px 6vw;
  }
  .footer-1-row-1 {
    flex-wrap: wrap;
    gap: 2vw;
    align-items: flex-start;
    justify-content: center;
  }
  .footer-1-row-1 p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-1-row-3 {
    flex-direction: column;
  }

  .payments {
    display: none;
  }
  .payments-mob {
    display: block;
  }
  .col-2 {
    display: none;
  }
  .splide__slide {
    display: flex;
    justify-content: center;
  }
  .footer-1-contacts {
    margin: 0;
  }
  .mob-col-2 {
    display: flex;
    flex-direction: column;
  }
  .offer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .offer-wrapper img {
    width: 100%;
  }
  .headline-sub {
    font-size: 0.9rem;
    height: 40px;
  }
}
@media (max-width: 450px) {
  .header-logo {
    width: 100%;
    min-width: auto;
    max-width: max-content;
  }
  .btn,
  .btn-reversed {
    font-size: 14px;
    padding: 6px 10px;
  }
  .screen-7,
  .screen-8,
  .screen-11,
  .screen-12,
  .screen-13,
  .screen-14,
  .screen-15,
  .screen-16 {
    max-height: unset;
    width: 80vw;
    align-self: center;
  }
}

@media (max-width: 435px) {
  .headline-sub {
    height: 60px;
  }
}
