@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');


*::-webkit-scrollbar {
    width: 10px;
    background-color: #5B5B5F;
  }
  
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000;
	border: 1px solid #ccc;
  }
  
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: #f9f9fd;
}

*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html, body {
    width: 100%;
    font-size: 100%;
    line-height: 1.4;
    font-size: 18px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color: #211100;
    font-family: "Montserrat", sans-serif;
    background: #F8F8F8;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;color: #fff;}
a:hover{text-decoration: none;}

header
ul li{list-style: none;}
img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #1c1c1c;
}

h1 {
    font-size: 50px;
    line-height: 1em;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
h1 {
  font-size: 44px;
  }}

  
h2 {
    font-size: 46px;
    font-family: "Jua", sans-serif;
}


@media (max-width: 768px) {
h2 {
    font-size: 40px;
  }}




p{
   font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
p{
  font-size: 14px;
  }}

.section-main h1, .section-main h2 {
    color: #2F2525;
    font-family: "Jua", sans-serif;
}

a.link__button {
    color: #8B0000;
    background-color: #FFCC00;
    padding: 14px 32px;
    max-width: 228px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    height: fit-content;
    border-radius: 5px;
}

.header {
    background: #1C1C1C;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.container {
  max-width: 1200px;
  padding: 0 12px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

/* header START */

.header__logo_img {
  max-width: 100px;
}

@media (max-width: 768px) {
.header__logo_img {
     max-width: 80px;
  }}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__content_left {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}


@media (max-width: 991px) {
  .header__content_left {
    margin-right: 55px;
    justify-content: space-around;
  }}



.menu__box {
    display: flex;
    align-items: center;
    gap: 40px;
  
}

.menu__box li a {
    font-size: 18px;
    font-weight: 500;
}

/* header END */

/* burger AMP START */

.menu__btn, .input__burger{
	display: none;
}

@media(max-width:992px){

#menu__toggle {
	opacity: 0;
  }

  .menu__btn {
display: flex
;
        align-items: center;
        position: absolute;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
}

  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
  background-color: #d12020;
  }
  .menu__btn > span::before {
	content: '';
	top: -8px;
  }
  .menu__btn > span::after {
	content: '';
	top: 8px;
}

.menu__box {
  z-index: 5;
  display: flex;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  text-align: center;
 
  background-color: #1C1C1C;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

  .menu__item {
	display: block;
	padding: 12px 24px;
	color: #333;
	 font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
  }
  .menu__item:hover {
	background-color: #CFD8DC;
  }
  #menu__toggle:checked ~ .menu__btn > span {
	transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
	top: 0;
	transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
	visibility: visible;
	left: 0;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
	transition-duration: .25s;
  }
  .menu__box {
	transition-duration: .25s;
  }
  .menu__item {
	transition-duration: .25s;
  }

  .header__button{
	margin-right: 60px;
  }
}

/* burger AMP END */




main {
    min-height: 500px;
    background-size: cover;
    padding: 60px 0;
}


footer {
  min-height: 20px;
}

.button_header {
  background: #fff4f1;
  color: #D02020;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 100px;
  box-shadow: none;
}

button {
    cursor: pointer;
    background: url(/wp-content/uploads/2025/06/Main-button.svg);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 100px;
    line-height: 1em;
    padding: 15px 40px;
    font-weight: 700;
    box-shadow: 0px 10px 40px 0px rgb(255 69 80 / 43%);
    transition: .3s;
    background-size: cover;
}


button:hover { 
  background: linear-gradient(211deg, #ff416c, #ff4b2b);
  transition: .3s;
}





.header_nav {
  display: flex;
  align-items: center;
  gap: 50px;
}


.footer_wrapper {
    background: url(/wp-content/uploads/2025/06/Frame-888-scaled.webp);
    padding: 60px 0;
    background-size: cover;
}


.wrapper-main {

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wrapper-header_main {
  display: flex;
  gap: 30px;
}


@media (max-width: 768px) {
  .wrapper-header_main {
    flex-wrap: wrap;
    justify-content: center;
  }}





.wrap_head_img {
  width: 90px;
}



.box-main_info {
    flex: 1 1 auto;
    background: #fff;
    padding: 40px 40px 0;
    border-radius: 20px;
    box-shadow: 0px 0px 12px rgb(74 74 74 / 14%);
    position: relative;
}


.box-main_info:before {
    content: "";
    width: 70px;
    height: 98px;
    display: block;
    background: url(/wp-content/uploads/2025/06/22f5984e-3079-44cb-9dbe-277f07f638e6-1.png);
    background-size: contain;
    position: absolute;
    top: 0;
    right: 40px;
}

.wrap_header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 10px;
}


@media (max-width: 1024px) {
  .wrap_header {
    flex-wrap: wrap;
  }}


.box_elem_header {
  display: flex;
  gap: 14px;
}

.wrapper-main img {
  border-radius: 20px;
}

@media (max-width: 991px) {
 .wrap_header {
  flex-wrap: wrap;
  justify-content: center;
  }}

.images-main-info img {
    max-width: 450px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table_info {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr 4fr 4fr;
  grid-gap: 20px;
  grid-auto-rows: 1fr;
}


@media (max-width: 1024px) {
	.table_info {
    grid-template-columns: 4fr 4fr 4fr 4fr;
  }}


  @media (max-width: 900px) {
    .table_info {
      grid-template-columns: 4fr 4fr 4fr;
    }}


@media (max-width: 576px) {
	.table_info {
		grid-template-columns: 1fr 1fr;
	}}


  .box_info p:nth-child(2) {
    font-weight: 600;
    font-size: 16px;
    margin-top: 6px;
}


.images-main-info {
    width: 100%;
}


.banners-providers {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr 4fr;
  grid-gap: 20px;
  grid-auto-rows: 1fr;
}


@media (max-width: 768px) {
  .banners-providers {
		grid-template-columns: 4fr 4fr;
	}}



.title-section {
    margin-bottom: 30px;
    font-family: "Jua", sans-serif;
}

img.logo-demo {
  width: 275px;
}


.demo-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 680px;
  align-items: center;
  padding: 70px 16px;
  background: linear-gradient(45deg, #000000a3, #00000085), url(/wp-content/uploads/2025/06/demo-Double-fortune.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  margin: 50px 0;
  gap: 30px;
}

.section-demo
button.link__button:hover {
  padding: 16px 90px;
  transition: .3s;
}


.content h2,
.content h3 {
  color: #2F2525;
}




table {
    border-radius: 20px;
    min-width: 800px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

thead {
    background: #1C1C1C;
    color: #fff;
}


th {
    text-align: center;
    padding: 20px 0;
}

td {
    text-align: center;
}


tr {
  position: relative;
}



tbody tr:nth-child(odd) {
  background: #EFEFEF;
}

section {
  margin-bottom: 80px;
}

.bonus_elem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-bonus {
  background: linear-gradient(45deg, #fceff3, #fbf2ed);
  padding: 20px;
  border-radius: 20px;
}

h3 {
  font-size: 20px;
  margin-bottom: 0.6em;
  margin-top: 0.6em;
}

.box-advantages {
  background: linear-gradient(45deg, #fceff3, #fbf2ed);
  padding: 20px;
  border-radius: 20px;
}


.advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-advantages {
  background: linear-gradient(45deg, #fceff3, #fbf2ed);
  padding: 20px;
  border-radius: 20px;
  padding-left: 70px;
  position: relative;
}

.box-advantages:before {
  content: "";
  width: 34px;
  height: 34px;
  background: url(/wp-content/uploads/2025/06/plus-circle.svg);
  position: absolute;
  display: block;
  left: 20px;
  top: 20px;
}


.block-rtp {
  display: flex;
  gap: 25px;
}

@media (max-width: 768px) {
  .block-rtp {
    flex-wrap: wrap;
  }}

.elem-rtp {
background: linear-gradient(45deg, #fceff3, #fbf2ed);
padding: 20px;
border-radius: 20px;
position: relative;
width: 100%;
}

.elem-rtp h3 {
  font-size: 48px;
  background: linear-gradient(179deg, #ff896d, #b51212);
  background-clip: text;
  -webkit-text-fill-color: #0000;
  margin: 0 0 20px;
}


.expert-review-faq--style-style-3 .expert-review-faq-item {
  position: relative;
  margin-bottom: 5px;
  background: #fff;
  border-radius: 12px;
}

.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item__answer {
  color: #3a3a3a !important;
  font-size: 16px;
}

.expert-review-faq--style-style-3 .expert-review-faq-item__question {
  font-weight: 400;
  position: relative;
  padding: 20px 70px;
  background: #fff !important;
  border-radius: 4px;
}


.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:before {
  background-color: inherit !important;
  background: url(/wp-content/uploads/2025/06/Group-87.svg);
  width: 30px;
  height: 30px;
  object-fit: contain;
  left: 23px;
  top: 21px;
}

.expert-review-faq--style-style-3 .expert-review-faq-item__question {
  font-weight: 500 !important;
  position: relative;
  padding: 20px 70px !important;
  background: rgba(0,0,0,.03);
  border-radius: 4px;
  font-size: 22px;
}

.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item:after, .expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item:before {
      background: #E42A29 !important;
}


.expert-review-faq--color-blue-1.expert-review-faq--style-style-3 .expert-review-faq-item__question:hover {
  color: #3a3a3a !important;
}

.wrap-foo {
  display: flex;
  gap: 50px;
}

@media (max-width: 768px) {
  .wrap-foo {
    flex-wrap: wrap;
  }}

.descl {
  color: #fff;
  max-width: 500px;
  font-size: 16px;
}

.footer_logo .header__logo_img {
  width: 210px;
  max-width: 210px;
}


.title_nav {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}


.nav_foo li a {
color: #fff;
  font-weight: 600;
}

.wrapper_footer_partners {
  background: #F5F0F0;
}


.footer_partners {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .footer_partners {
    flex-wrap: wrap;
  }}

.footer_partners img {
  object-fit: contain;
  max-width: 25%;
}

@media (max-width: 768px) {
  .footer_partners img {
    max-width: 45%;
  }}


.section-faq {
  padding: 0 12px;
}

.table_wrapper {
    overflow: auto;
    border-radius: 20px;
    box-shadow: 0px 0px 12px rgb(74 74 74 / 14%);
}



::-webkit-scrollbar {
  width: 3px; 
  height: 4px;
}


::-webkit-scrollbar-thumb {
  background-color: #3a3a3a;
  border-radius: 4px; 
}

::-webkit-scrollbar-track {
  background: #D9D9D9; 
  border-radius: 4px; 
}


ol, ul {
    padding-left: 40px;
}


.nav_foo {
  padding-left: 0;
}

.demo-games {
  height: 650px;
}


/* iframe */


    .iframe-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    }


.iframe-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}


.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000f7, #00000085), url(/wp-content/uploads/2025/06/470211778_606830591800780_8948770360741894404_n.webp);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    border-radius: 8px;
    transition: opacity 0.3s;
    background-size: contain;
}



    .iframe-overlay button:hover {
      background: #45a049;
    }

    .iframe-overlay.hidden {
      opacity: 0;
      pointer-events: none; 
    }


/* iframe END */


.wrap_button {
    margin: 40px 0;
}

.raiting {
    display: flex;
    gap: 12px;
}

.grade span {
  font-weight: 700;
  font-size: 20px;
}

.stars {
    display: flex;
    gap: 5px;
}



@media (max-width: 768px) {
  header button {
    padding: 15px;
    font-size: 14px;
  }}



.box-main_info button {
  display: block;
  margin: 0 auto;
}


.block-information_wrap {
    display: flex;
    gap: 20px;
}


@media (max-width: 768px) {
.block-information_wrap {
  flex-wrap: wrap;
  }}


.images-information-block {
  max-width: 380px;
  width: 100%;
}

.images-information-block img {
  border-radius: 20px;
}

.table-information-block {
    flex: 1 1 auto;
}


.info-cart-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}


@media (max-width: 768px) {
.info-cart-wrap {
    grid-template-columns: 1fr;
  }}





.info-cart-elem {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 12px rgb(74 74 74 / 14%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.max-w-elem {
  grid-column: span 3;
}

@media (max-width: 768px) {
.max-w-elem {
  grid-column: span 1;
  }}




.info-cart-title-elem {
    font-size: 16px;
}

.info-cart-descr-elem {
    font-size: 16px;
    font-weight: 700;
}


.wrapper-information {
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 12px rgb(74 74 74 / 14%);
}


@media (max-width: 768px) {
.wrapper-information,
.box-main_info {
    padding: 20px;
  }}


img.screenshots {
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}


.raiting-element {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 12px rgb(74 74 74 / 14%);
}



@media (max-width: 768px) {
.raiting-element {
    flex-wrap: wrap;
    justify-content: center;
  }}




img.logo-providers {
    width: 200px;
    border-radius: 10px;
}

.raitinf-descr {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.stars-raiting-box .raiting {
    flex-direction: row-reverse;
    justify-content: end;
}

.stars-raiting-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-raiting {
    font-size: 22px;
    font-weight: 700;
}



.link__btn {
  cursor: pointer;
    background: url(/wp-content/uploads/2025/06/Main-button.svg);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 100px;
    line-height: 1em;
    padding: 15px 40px;
    font-weight: 700;
    box-shadow: 0px 10px 40px 0px rgb(255 69 80 / 43%);
    transition: .3s;
    background-size: cover;
}



.stars-raiting-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 280px;
}

span.grade {
    min-width: 51px;
    display: flex;
    align-items: center;
}


.descr-raiting {
    max-width: 550px;
}

.raiting-block {
    gap: 16px;
    display: flex;
    flex-direction: column;
}


.faq-wrap {
    display: flex;
    gap: 20px;
}

img.faq-img {
    border-radius: 20px;
}

.faq-images {
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
.faq-images {
   display: none;
  }}


.review-el-header {
  display: flex;
  gap: 12px;
}

.rev-rating {
    display: flex;
}

.rev-rating img {
  width: 28px;
}

.review-element {
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 12px rgb(74 74 74 / 14%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-name {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/wp-content/uploads/2025/06/Main-button.svg);
    border-radius: 100px;
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}

.wrap-headl {
  display: flex;
  gap: 16px;
}

.rev-date {
    color: #1C1C1C;
    font-size: 14px;
    opacity: .5;
}


.review-el-header {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.rev-name-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rev-name {
    font-weight: 700;
}


.owl-item {
  padding: 12px 6px;
}