@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');

:root {
  --cb-1: #ff8c42; 
  --cb-2: #cc5e34; 
  --cb-3: #f0a54b; 
  --cb-4: #d88d5a; 
  --cb-5: #607d99; 
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  direction: ltr;
  font-family: 'DM Mono', sans-serif !important;
  font-size: clamp(12px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 1.5;
}

body::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg-assets/bg-light-06911f9a60c9b2.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: brightness(0.2);
  z-index: -1;
}


h1,
h2,
h3,
h4,
h5,
p{
  padding: 0;
  margin: 0;
}

p, li{
  padding: 5px 0;
  line-height: 1.5;
}

li{
  margin: 0 8px;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img{
  display: block;
  max-width: 100%;
  max-height: 100%;
}

ul{
  margin: 0;
  padding: 0;
}

.container-box{
  width: auto;
  padding-right: 21px;
  padding-left: 21px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 480px) {
  .container-box{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .container-box{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container-box{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .container-box{
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px){
  .container-box{
    max-width: 1170px;
    }
}

@media (min-width: 1400px){
  .container-box{
    max-width: 1274px;
  }
}

.page-privacy{
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
  text-align: justify;
  width: 100%;
}

.title-politics{
  text-align: center;
  color: #fff;
  margin-bottom: 29px;
  font-size: clamp(22px, 4vw, 50px);
}

.page-privacy a{
  color: #fff;
}

.page-privacy a:hover{
  color: #fff;
  opacity: 0.5;
}

.header-container{
  padding: 19px 0;
}

.header {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #382933;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.brand-image img {
  max-height: 50px;
  object-fit: contain;
  width: 40px;
}

.brand-logo a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 19px;
  transition: color 0.3s ease;
}

.brand-title h2 {
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.primary-menu li {
  padding: 0;
  position: relative;
}

.menu-link {
  font-weight: bold;
  font-size: clamp(14px, 4vw, 14px);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  transition: 0.3s ease;
}

.menu-link::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 36px;
  width: 100%;
  transform: translateY(-50%) skewX(-17deg);
  background: var(--cb-2);
  z-index: -1;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition: .3s linear;
  box-shadow: 0px 1px 8.37px 0.63px rgba(0, 0, 0, 0.28);
}

.menu-link:hover::before{
  opacity: 1;
}

.menu-link-home{
  position: relative;
  color: #fff;
  z-index: 1;
}

.menu-link-home::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 36px;
  width: 100%;
  transform: translateY(-50%) skewX(-17deg);
  background: var(--cb-2);
  z-index: -1;
  right: 0;
  margin: 0 auto;
  opacity: 1;
  transition: .3s linear;
  box-shadow: 0px 1px 8.37px 0.63px rgba(0, 0, 0, 0.28);
}

.menu-link:hover {
  color: #fff;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.3s ease 0s forwards;
  transition: all 0.3s ease;
}

@keyframes slideIn {
  0% {
      margin-top: 30px;
      opacity: 0;
  }
  100% {
      margin-top: 0;
      opacity: 1;
  }
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  text-transform: uppercase;
  font-size: clamp(14px, 4vw, 14px);
  color: #5d5d5d;
  padding: 10px;
  display: block;
  transition: 0.3s ease;
}

.dropdown-menu a:hover {
  color: var(--cb-2);
}

.primary-menu li:hover .dropdown-menu {
  display: block;
}

.sticky-header {
  background-color: #382933;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: top 0.3s ease;
}

.sticky-header .header{
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
}

.header-content{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 20px 80px;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.header-content::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg-assets/bg-all-06911f9a60c9f0.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.4);
  z-index: -1;
}

.header-content-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 29px;
}

.header-content-text h2{
  text-transform: uppercase;
  color: var(--cb-2);
  font-size: clamp(22px, 4vw, 50px);
}

.header-content-text p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.main-button {
  background-color: #000;
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--cb-2);
  transition: all 1s;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid var(--cb-2);
}

.main-button:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid var(--cb-2);
  box-shadow: 4px 5px 17px -4px var(--cb-2);
}

.main-button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--cb-2);
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1s;
}

.main-button:hover::before {
  width: 250%;
}

.header-content-img{
  flex: 1;
}

.header-content-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 30vh;
}

.back-to-top {
  position: fixed;
  bottom: 29px;
  right: 29px;
  display: none;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s ease;
}

.back-to-top svg {
  transition: 0.3s ease;
  width: 45px;
  height: 45px;
  fill: var(--cb-2);
}

.back-to-top svg:hover {
  opacity: 0.5;
}

.step-game{
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 80px 0;
}

.step-game h2{
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.step-game h2 span{
  display: flex;
  align-items: center;
}

.step-game h2 span svg{
  width: 40px;
  height: 40px;
  border-left: 4px solid var(--cb-2);
  fill: var(--cb-2);
}

.step-game-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.step-game-card{
  transition: 0.5s ease;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #382933;
  padding: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.step-game-img{
  flex: 1;
}

.step-game-img img{
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
}

.step-game-card:hover .step-game-img img{
  transform: scale(1.1);
}

.step-game-text{
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.step-game-text span{
  font-weight: bold;
  color: var(--cb-2);
  font-size: clamp(18px, 4vw, 30px);
}

.step-game-text p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.rating{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #382933;
  border-radius: 20px;
  padding: 45px;
  margin: 80px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.rating-card{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  text-align: center;
}

.rating-card:nth-child(2){
  border-left: 0.1px solid #fff;
  border-right: 0.1px solid #fff;
  padding-left: 9px;
  padding-right: 9px;
}

.rating-card h1{
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

.rating-card h5{
  font-weight: normal;
  opacity: 0.8;
  color: var(--cb-2);
  font-size: clamp(16px, 4vw, 18px);
}

.menu-game-one{
  display: block;
}

.menu-game{
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 80px 0;
}

.menu-game h2{
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.menu-game h2 span{
  display: flex;
  align-items: center;
}

.menu-game h2 span svg{
  width: 40px;
  height: 40px;
  border-left: 4px solid var(--cb-2);
  fill: var(--cb-2);
}

.menu-game-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.menu-game-card{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  transition: 0.8s ease;
  position: relative;
  overflow: hidden;
}

.menu-game-img{
  width: 100%;
  position: relative;
}

.menu-game-img img{
  transition: 0.8s ease;
  width: 100%;
  height: 391px;
  object-fit: cover;
}

.menu-game-title{
  transition: 0.8s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  backdrop-filter: brightness(0.2);
  --webkit-backdrop-filter: brightness(0.2);
}

.menu-game-card:hover .menu-game-title{
  transform: translateY(100%);
}

.menu-game-card:hover .menu-game-img img{
  filter: brightness(0.5);
}

.menu-game-title a h5{
  text-transform: uppercase;
  transition: 0.3s ease;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.menu-game-title a h5:hover{
  opacity: 0.5;
}

.menu-game-desc{
  padding: 10px;
  transition: 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
}

.menu-game-card:hover .menu-game-desc{
  opacity: 1;
}

.menu-game-desc p{
  display: -webkit-box;      
  -webkit-box-orient: vertical; 
  overflow: hidden;         
  text-overflow: ellipsis;   
  -webkit-line-clamp: 3;   
  line-clamp: 3;  
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-size: clamp(16px, 4vw, 18px);
}

.menu-game-two{
  display: none;
}

.menu-game-box-two{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.menu-game-card-two{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  overflow: hidden;
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
}

.menu-game-img-two{
  overflow: hidden;
  border-top-right-radius: 19px;
  width: 100%;
  object-fit: cover;
}

.menu-game-img-two img{
  object-fit: cover;
  transition: 0.5s ease;
  width: 100%;
  height: 209px;
}

.menu-game-card-two:hover .menu-game-img-two img{
  transform: scale(1.1);
}

.menu-game-title-two{
  border-top: 3px solid var(--cb-2);
  flex: 1;
  border-bottom-left-radius: 19px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #382933;
  padding: 19px;
}

.menu-game-title-two a h5{
  transition: 0.3s ease;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.menu-game-title-two a h5:hover{
  opacity: 0.5;
}

.menu-game-title-two p{
  display: -webkit-box;      
  -webkit-box-orient: vertical; 
  overflow: hidden;         
  text-overflow: ellipsis;   
  -webkit-line-clamp: 3;   
  line-clamp: 3;  
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 16px);
}

.gambla-benefit{
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 80px 0;
}

.gambla-benefit h2{
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.gambla-benefit h2 span{
  display: flex;
  align-items: center;
}

.gambla-benefit h2 span svg{
  width: 40px;
  height: 40px;
  border-left: 4px solid var(--cb-2);
  fill: var(--cb-2);
}

.gambla-benefit-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.gambla-benefit-card{
  display: flex;
  flex-direction: column;
}

.gambla-benefit-card img{
  border-top-right-radius: 19px;
  width: 100%;
  height: 209px;
  object-fit: cover;
}

.gambla-benefit-card h5{
  border-bottom-left-radius: 19px;
  flex: 1;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  font-weight: normal;
  height: 100%;
  background-color: #382933;
  padding: 19px;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.about-us{
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 80px 0;
}

.about-us h2{
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.about-us h2 span{
  display: flex;
  align-items: center;
}

.about-us h2 span svg{
  width: 40px;
  height: 40px;
  border-left: 4px solid var(--cb-2);
  fill: var(--cb-2);
}

.about-us-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.about-us-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 45px;
}

.about-us-p{
  font-weight: normal;
  color: #fff;  
  font-size: clamp(16px, 4vw, 18px);
  padding: 0;
}

.video-preview-wrapper {
  flex: 1;
  position: relative;
}

.video-preview-wrapper video {
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  border: 4px solid var(--cb-2);
  filter: brightness(0.6);
  display: block;
  width: 100%;
  object-fit: cover;
  height: auto;
  max-height: 60vh;
}

.play-button {
  transition: 1s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button svg {
  animation: zoomInOut 3s ease-in-out infinite;
  transition: 1s ease;
  width: 80px;
  height: 80px;
  fill: var(--cb-2);
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  overflow: auto;
}

.video-popup video {
  width: 80%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.gallery{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 80px 0;
}

.gallery-box-one{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}

.gallery-box-two{
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.gallery-img{
  flex: 1;
  width: 100%;
}

.gallery-img img{
  transition: 0.5s ease;
  width: 100%;
  height: 391px;
  object-fit: cover;
}

.gallery-img img:hover{
  filter: brightness(0.5);
}

.gallery-img:first-child{
  flex: 2;
}

.wrapper-block{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  padding: 80px 0;
}

.table-lider{
  height: 100%;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  flex: 1;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: flex;
  flex-direction: column;
}

.table-lider h2{
  align-items: center;
  border-top-right-radius: 19px;
  background-color: #060606;
  padding: 19px;
  display: flex;
  gap: 9px;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.table-lider h2 span{
  display: flex;
  align-items: center;
}

.table-lider h2 span svg{
  width: 40px;
  height: 40px;
  border-left: 4px solid var(--cb-2);
  fill: var(--cb-2);
}

.table-lider-box{
  border-bottom-left-radius: 19px;
  border-top: 3px solid var(--cb-2);
  display: flex;
  flex-direction: column;
}

.table-lider-card{
  overflow: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #282938;
  padding: 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 45px;
}

.table-lider-card:nth-child(2), .table-lider-card:nth-child(4){
  background-color: #2c2e3d;
}

.table-lider-card img{
  object-fit: contain;
  width: 80px;
  height: 80px;
}

.table-lider-card h5{
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.dev-gembla{
  height: 100%;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  flex: 1;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: flex;
  flex-direction: column;
}

.dev-gembla h2{
  align-items: center;
  border-top-right-radius: 19px;
  background-color: #060606;
  padding: 19px;
  display: flex;
  gap: 9px;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.dev-gembla h2 span{
  display: flex;
  align-items: center;
}

.dev-gembla h2 span svg{
  width: 40px;
  height: 40px;
  border-left: 4px solid var(--cb-2);
  fill: var(--cb-2);
}

.dev-gembla-box{
  border-bottom-left-radius: 19px;
  border-top: 3px solid var(--cb-2);
  display: flex;
  flex-direction: column;
}

.dev-gembla-card{
  overflow: auto;
  background-color: #282938;
  padding: 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 45px;
}

.dev-gembla-card span{
  font-weight: bold;
  color: var(--cb-2);
  font-size: clamp(18px, 4vw, 22px);
}

.dev-gembla-card:nth-child(2), .dev-gembla-card:nth-child(4){
  background-color: #2c2e3d;
}

.dev-gembla-card img{
  border-radius: 50%;
  object-fit: cover;
  width: 80px;
  height: 80px;
}

.dev-gembla-card h5{
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.form-block{
  width: 70%;
  margin: 0 auto;
  padding: 80px 0;  
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.form-block h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.osn-form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-container label{
  font-weight: bold;
  color: #a1a1a1;
}

.input-container .input-control--holderpart, .input-container .textarea-control--holderpart {
  outline: none;
  margin: 8px 0;
}

.input-container .input-control--holderpart {
  border: 1.5px solid #2d333c;
  background: #252a32;
  color: #a1a1a1;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-control--holderpart {
  border: 1.5px solid #2d333c;
  background: #252a32;
  color: #a1a1a1;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 45px;
  max-height: 120px;
}

.input-container .input-control--holderpart::placeholder, .input-container .textarea-control--holderpart::placeholder{
  font-weight: bold;
  color: #a1a1a1;
}

.check{
  transition: 0.3s ease;
  color: #fff;
}

.check:hover{
  opacity: 0.5;
  color: #fff;
}

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 15px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.form-button{
  margin: 0 auto;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.footer-lay{
  background-color: #382933;
}

.footer{
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.logo-footer-mobile{
  display: none;
  margin: 0 auto;
}

.logo-footer-mobile a{
  color: #fff; 
  display: flex; 
  flex-direction: row;
  align-items: center; 
  gap: 10px;
  transition: 0.3s ease;
}

.logo-footer-mobile a:hover{
  opacity: 0.5;
}

.logo-footer{
  margin: 0 auto;
}

.logoImg-footer img{
  max-height: 50px;
  object-fit: contain;
  width: 40px;
}

.logo-footer a{
  color: #fff; 
  display: flex; 
  flex-direction: row;
  align-items: center; 
  gap: 10px;
  transition: 0.3s ease;
}

.logo-footer a:hover{
  opacity: 0.5;
}

.logoTitle-footer h2{
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 22px);
  margin: 0;
}

.privacy{
  padding-bottom: 29px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.privacy ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: row;
  gap: 19px;
}

.privacy ul li {
  margin: 0;
}

.privacy ul li:nth-child(2), .privacy ul li:nth-child(4){
  padding-right: 19px;
  border-right: 3px solid rgba(255, 255, 255, 0.2);
  padding-left: 19px;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.privacy ul li a {
  font-size: clamp(16px, 4vw, 18px);
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.privacy ul li a:hover{
  color: #fff;
  opacity: 0.5;
}

.disclaimer{
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  background-color: #971616;
  gap: 29px;
  border: 3px solid var(--cb-2);
  display: flex;
  flex-direction: column;
  padding: 29px;
}

.disclaimer h2{
  align-items: center;
  text-transform: uppercase;
  display: flex;
  gap: 9px;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.disclaimer h2 span{
  display: flex;
  align-items: center;
}

.disclaimer h2 span svg{
  width: 40px;
  height: 40px;
  border-left: 4px solid var(--cb-2);
  fill: var(--cb-2);
}

.disclaimer p{
  padding: 0;
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
  opacity: 0.8;
}

.footer-bottom-lay{
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #060606;
  padding: 19px 0;
}

.footer-bottom{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 29px;
}

.footer-bottom p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.footer-bottom img{
  max-width: 50px;
}

.art-content{
  padding: 45px 0;
  display: flex;
  flex-direction: column;
  gap: 45px;
  position: relative;
}

.art-content h1{
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

.art-block{
  display: flex;
  flex-direction: row;
  gap: 45px;
  position: relative;
}

.art-block-img{
  position: relative;
  flex: 1;
}

.art-block-img img{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  width: 100%;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  position: sticky;
  top: 126px;
}

.art-block-content {
  color: #fff;
  flex: 1;
  font-size: clamp(16px, 4vw, 18px);
}

.art-block-content ul {
  list-style: inside;
}

.playing-block{
  padding: 45px 0;
  width: 100%;
  height: 100vh;
}

.playing-block iframe{
  border: none;
  width: 100%;
  height: 100%;
}

.feedback {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 80px 0;
}

.feedback h2 {
  text-align: center;
  color: #fff;  
  font-size: clamp(22px, 4vw, 50px);
}

.feedback-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.feedback-slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.feedback-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 1s;
}

.feedback-card-content {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 45px;
}

.feedback-card-avatar {
  flex: 1;
}

.feedback-card-avatar img {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  width: 100%;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  height: 265px;
  object-fit: cover;
}

.feedback-card-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.feedback-card-text h1 {
  font-size: clamp(18px, 4vw, 22px);
  color: var(--cb-2);
  margin: 0;
}

.feedback-card-text p {
  padding: 0;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
  margin: 0;
  opacity: 0.7;
}

.feedback-card.active {
  opacity: 1;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.bullet {
  border: 1px solid transparent;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #fff; 
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.bullet.active {
  border: 1px solid #fff;
  background-color: var(--cb-2); 
}

.contacts-box{
  padding: 45px 0;
  display: flex;
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 19px;
}

.cont-card{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 19px;
  background-color: var(--cb-2);
  padding: 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.cont-card svg{
  width: 30px;
  height: 30px;
  fill: #fff;
}

.cont-card a{
  flex: 1;
}

.cont-card a h5{
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

.cont-card a h5:hover{
  opacity: 0.5;
}

.cont-card h5{
  flex: 1;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

.kontact-form{  
  padding: 45px 0;
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.kontact-form h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;  
  font-size: clamp(22px, 4vw, 50px);
  margin-bottom: 29px;
}

.input-kontact-form .inputs-kontact, .input-kontact-form .textarea-kontact{
  margin: 8px 0;
}

.input-position{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.input-kontact-form .inputs-kontact {
  width: 100%;
  border: 1.5px solid #2d333c;
  background: #252a32;
  color: #a1a1a1;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border: 1.5px solid #2d333c;
  background: #252a32;
  color: #a1a1a1;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 45px;
  max-height: 120px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  font-weight: bold;
  color: #a1a1a1;
}

.kontact-form button{
  margin: 0 auto;
}

.burger-menu {
  display: none;
}

#toggle-menu {
  opacity: 0;
}

.toggle-btn {
  z-index: 12;
  display: flex;
  align-items: center;
  position: relative;
  top: -10px;
  right: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.toggle-btn > span,
.toggle-btn > span::before,
.toggle-btn > span::after {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.toggle-btn > span::before {
  content: '';
  top: -10px;
}

.toggle-btn > span::after {
  content: '';
  top: 8px;
}

.menu-container {
  overflow: auto;
  display: block;
  position: absolute;
  visibility: hidden;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 80px 0;
  z-index: 11;
  list-style: none;
  text-align: center;
  background-color: #382933;
}

.menu-links {
  text-transform: uppercase;
  text-align: start;
  display: block;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
}

.menu-link-highlight {
  color: #fff !important;
  background-color:  var(--cb-2) !important;
}

.dropdown-items {
  padding: 0 10px;
  margin: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.dropdown-link {
  text-align: start;
  display: block;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

#dropdown-toggle.active + #dropdown {
  max-height: 500px; 
}

.menu-links:hover {
  color: #fff;
  background-color:  var(--cb-2);
}

#toggle-menu:checked ~ .toggle-btn > span {
  top: 0;
  transform: rotate(45deg);
}

#toggle-menu:checked ~ .toggle-btn > span::before {
  top: 0;
  transform: rotate(0);
}

#toggle-menu:checked ~ .toggle-btn > span::after {
  top: -2px;
  transform: rotate(90deg);
}

#toggle-menu:checked ~ .menu-container {
  visibility: visible;
  right: 0;
}

.responsible-block{
  display: none;
}

@media (max-width: 1199px){
  
}

@media (max-width: 991px) {
  .art-block-img img {
    height: 450px;
    width: 100%;
    object-fit: contain;
  }
  .burger-menu{
    display: block;
  }

  .main-nav{
    display: none;
  }
  
  .header-content{
    text-align: center;
    flex-direction: column-reverse;
  }

  .header-content-text{
    align-items: stretch;
  }

  .step-game-card{
    flex-direction: column;
  }

  .menu-game-box-two{
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-game-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .gambla-benefit-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-box{
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .wrapper-block{
    flex-direction: column-reverse;
  }

  .form-block{
    width: 100%;
  }

  .logo-footer{
    display: none;
  }

  .logo-footer-mobile{
    display: block;
  }

  .responsible-block{
    display: block;
  }

  .privacy ul li:nth-child(2), .privacy ul li:nth-child(4) {
    padding-right: 0;
    border-right: none;
    padding-left: 0;
    border-left: none;
  }

  .kontact-form{
    width: 100%;
  }
  
  .art-block{
    flex-direction: column;
  }

  .feedback-card-text{
    flex: 1;
  }
}

@media (max-width: 767px) {
  .playing-block{
    height: 100vh;
  }

  .header-content{
    padding: 80px 19px;
  }

  .feedback-card-content{
    flex-direction: column;
  }

  .feedback-card-text{
    align-items: center;
    text-align: center;
  }

  .contacts-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }

  .step-game-card{
    flex-direction: row;
  }

  .step-game-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .rating{
    grid-template-columns: repeat(1, 1fr); 
  }

  .rating-card:nth-child(2){
    border-top: 0.1px solid #fff;
    border-bottom: 0.1px solid #fff;
    border-left: none;
    border-right: none;
    padding-top: 45px;
    padding-bottom: 45px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-game-box-two{
    grid-template-columns: repeat(1, 1fr);
  }

  .menu-game-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .gambla-benefit-box{
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-box-one{
    flex-direction: column;
  }

  .gallery-box-two{
    display: none;
  }
}

@media (max-width: 576px){
  .art-block-img img {
    height: auto;
  }
  .step-game-card{
    flex-direction: column;
  }

  .header{
    padding: 20px 9px;
  }

  .dev-gembla-card{
    gap: 10px;
  }

  .table-lider-card{
    gap: 10px;
  }

  .table-lider-card img{
    width: 50px;
    height: 50px;
  }

  .dev-gembla-card img{
    width: 50px;
    height: 50px;
  }
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.footer-logos a img {
  height: 50px;
  width: 100%;
  object-fit: contain;
  display: block;
}