@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root{
 --bg-1:#290000;
 --bg-2:#011F26;
 --bg-3:#38184C;
 --bg-4:#071a39;
 --bg-5:#151F30;

 --clb-1:#438697;
 --clb-2:#00b3ff;
 --clb-3:#6a7ad1;
 --clb-4:#005cb3;
 --clb-5:#6b7597;
 --gb-game-1: rgba(67, 134, 151,0.7);
 --gb-game-2: rgba(0, 179, 255,0.7);
 --gb-game-3: rgba(106, 122, 209,0.7);
 --gb-game-4: rgba(78, 108, 146, 0.7);
 --gb-game-5: rgba(22, 30, 61, 0.7);


--margin25:26px 0px;
--sec-padd:44px 0px;
--border-r:24px;
  --white:white;
  --black:black;
  --gap-25-30: 30px;
  --gap-30-40:37px;

}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
  
}


ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body{
  overflow-x: hidden;
  line-height: 1.2;
  direction: ltr;
  font-family: 'IBM Plex Sans Condensed', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
}
ul,li{
  padding: 0px;
  margin: 0px;
  list-style: none;
}
p,li{
  padding: 5px 0px;
}
a{text-decoration: none;
  transition: all 0.2s ease;
}

img{
  width: 100%;
  display: block;
}

.container-12vlls6{
  position: relative;
  width: 100%; 
  max-width: 1240px; 
  margin: 0 auto;
  padding: 0 19px;
  box-sizing: border-box;
  z-index: 1;
}

#vlb2game1{
  display: flex;
}


.title-12vlls6 {
  font-size:clamp(21px,4vw,46px);
  color: var(--white); 
  text-align: center; 
  font-weight:400; 
}
.title-container-12vlls6 {
  margin: var(--margin25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-before-12vlls6,
.icon-after-12vlls6 {
  width: 30px;
  object-fit: cover; 
  margin: 0 10px;
  
}
.rotating-12vlls6 {
  animation: rotate-12vlls6 9s linear infinite; 

}

@keyframes rotate-12vlls6 {
  from {
      transform: rotate(0deg); 
  }
  to {
      transform: rotate(360deg); 
  }
}

.title-black-12vlls6{
  color: var(--black);
}



.container-header-12vlls6{
  width: 100%;
  position: absolute;
  margin: 0 auto;

}

header{
 position: relative;
 z-index: 999;
width: 100%;
}
  .navbar {
    border-radius: var(--border-r);
    background-color: var(--bg-4);
    margin-top: 32px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 28px 51px;
    color: var(--black);
    flex-direction: row-reverse;
}
@media (max-width:575px) {
  .navbar {
    padding: 19px;
  }

}
@media (max-width:991px) {
  .navbar{
    justify-content: space-between;
  }
}

.logo-thumb-12vlls6{
  
  display: flex;
  align-items: center;
  gap: 14px;
  color:var(--white);
  font-weight: 800;
  font-size:clamp(18px,4vw,21px);
}
.logo-thumb-12vlls6:hover{
  color: var(--clb-4);
}
.logo-img-12vlls6{
  width: 45px;
}
.logo-img-12vlls6 img{
width: 100%;
height: 100%;
object-fit: cover;
}


.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    text-decoration: none;
    color: var(--white);
    font-size:clamp(18px,4vw,22px);
    font-weight: 400;
    display: flex;
    gap: 6px;
}
.nav-list a svg{
  transition: all 0.2s ease;
  fill: var(--white);
}
.nav-list a:hover{
  color: var(--clb-4);
}
.nav-list a:hover svg{
  fill: var(--clb-4);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}



@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
      z-index: 12;
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 110px;
        left: 0;
        background-color: var(--white);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
        visibility: hidden;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        margin: 20px 0;
        text-align: center;
    }
}
.menu-toggle {
  cursor: pointer;
  display: none; 
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.2s ease-in-out;
  background-color: var(--white);
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-list {
  list-style-type: none;
  display: flex; 
  justify-content: space-around;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s; 
}

.nav-list.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; 
}

.nav-list.open {
  display: block;
}



@media (max-width: 991px) {
  .menu-toggle {
      display: block; 
  }

  .nav-list {
      display: none; 
      flex-direction: column;
      text-align: center;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
  }

  .nav-list.active {
    background: var(--bg-4);
      display: flex; 
      align-items: center;
      transition: transform 0.5s ease, opacity 0.5s ease;
  }



}
.button-hero-12vlls6{
  margin: var(--margin25);
  display: flex;
  justify-content: center;
}
.hero-12vlls6 {
  position: relative;
  background-image: url('picgallery/background/bg-dark-068a5af49c5b23.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-12vlls6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gb-game-4);
  z-index: 1;
}
.hero-content-12vlls6 {
  padding: 150px 15px;
  position: relative;
  z-index: 2;
}

.box-content-12vlls6{
  position: relative;
z-index: 1 ;
}


.welcome-message-12vlls6 {
  direction: initial;
  text-align: center;
  display: inline-block;
  margin: var(--margin25);
}

.welcome-text-12vlls6 {
  font-size:clamp(15px,4vw,61px);
  font-weight: 400;
  color:var(--bg-4);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-12vlls6 2s ease-out forwards, typing-12vlls6 4s steps(30) 1s forwards, removeBorder-12vlls6 0.5s ease-out 5s forwards;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--bg-4);
  width: 0;
  display: inline-block;
}

@keyframes typing-12vlls6 {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes fadeInUp-12vlls6 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes removeBorder-12vlls6 {
  from { border-right: 2px solid var(--bg-4); }
  to { border-right: none; }
}

.thumb-hero-content-12vlls6{
  direction: initial;
  display: flex;
  gap: var(--gap-25-30);
  justify-content: center;

}

@media (max-width:767px) {
  .box-hero-content-12vlls6{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width:768px) {
  .box-hero-content-12vlls6 {
    flex: 1;
    display: flex;
        flex-direction: column;
        align-items: center;
  }
}
.box-hero-right-content-12vlls6 {
  flex: 1;
  position: relative;
}
@media (max-width:767px) {
  .box-hero-right-content-12vlls6 {
    display: none;
  }
}
.box-decor-contect-12vlls6{
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--bg-4);
  width: 300px;
  clip-path: path("M0 16C0 7.16345 7.16345 0 16 0H240.059C246.424 0 252.529 2.52856 257.029 7.02944L276 26L292.971 42.9706C297.471 47.4714 300 53.5759 300 59.9411V310C300 318.837 292.837 326 284 326H60.5002C54.3971 326 48.5233 323.675 44.0737 319.498L26.5 303L6.56896 281.941C2.35071 277.484 0 271.58 0 265.444V16Z");
  height: 350px;
}
  .img-decor-content-12vlls6{
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: all 0.2s ease;
  }
  .box-hero-right-content-12vlls6:hover .img-decor-content-12vlls6{
        bottom: 35px;
  }
.img-decor-content-12vlls6 img{
  width: 20vh;
  height: 100%;
  object-fit: contain;
  
}
@media (min-width:768px) and (max-width:991px) {
  .img-decor-content-12vlls6 img{
    width: 15vh;
  }
}
.img-box-content-12vlls6 {
  width: 300px;
  height: 350px;
}
.img-box-content-12vlls6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: path("M0 16C0 7.16345 7.16345 0 16 0H240.059C246.424 0 252.529 2.52856 257.029 7.02944L276 26L292.971 42.9706C297.471 47.4714 300 53.5759 300 59.9411V310C300 318.837 292.837 326 284 326H60.5002C54.3971 326 48.5233 323.675 44.0737 319.498L26.5 303L6.56896 281.941C2.35071 277.484 0 271.58 0 265.444V16Z");
}
.thumb-stat-12vlls6{
  display: flex;
  align-items: center;
}
@media(max-width:575px) {
  .thumb-stat-12vlls6{
    flex-direction: column;
} 
}
@media(min-width:576px) {
  .thumb-stat-12vlls6{
    gap: var(--gap-30-40);
} 
  
}
.box-stat-12vlls6{
  padding: 0px 19px;
  text-align: end;
}
@media (max-width:575px) {
  .box-stat-12vlls6{
   
    text-align: center;
}}

@media (max-width:575px) {
  .border-stat-12vlls6{
    border-bottom: 2px solid var(--bg-4);
    border-top: 2px solid var(--bg-4);
  }
}
@media (min-width:576px) {
  .border-stat-12vlls6{
    border-left: 2px solid var(--bg-4);
    border-right: 2px solid var(--bg-4);
  }
}
.counter{
  font-size:clamp(21px,4vw,28px) ;
  font-weight: 400;
}

.section-about-12vlls6 {
  background-color: var(--bg-4);
  padding: var(--sec-padd);
}

.thumb-about-12vlls6 {
  padding-top:43px ;
  display: flex;
  gap: var(--gap-25-30);
  align-items: center;
  flex-direction: row-reverse;
}
@media (max-width:767px) {
  .thumb-about-12vlls6 {
    flex-direction: column;
  }
}
.box-left-about-12vlls6 {
  flex: 1;
}
.box-content-about-12vlls6{
  background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  border: 2px solid #fff3;
}
.box-items-about-12vlls6{
  margin-top: 48px;
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.txt-about-12vlls6{
  text-align: center;
  color: var(--white);
  margin: 14px 0px;

}
.box-img-about-12vlls6 {
  height: 335px;
}
.box-img-about-12vlls6 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-right-about-12vlls6 {
  flex: 1;
}
.txt-about-12vlls6{
  color: var(--white);
  text-align: center;
}
.thumb-steps-12vlls6{
  display: flex;
  gap: var(--gap-25-30);
  flex-direction: column;
}
.box-steps-12vlls6{
  padding: 19px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.box-steps-12vlls6 p{
  font-size: clamp(16px,4vw,18px);

}
.box-steps-12vlls6::before,
.box-steps-12vlls6::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.9s ease;
  z-index: -1;
}

.box-steps-12vlls6::before {
  border: 2px solid #fff3;
  background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  opacity: 1;
}

.box-steps-12vlls6::after {
  border: 2px solid #fff3;
  background-image: linear-gradient(0deg, var(--clb-4) 15.26%, #f000);
  opacity: 0;
}

.box-steps-12vlls6:hover::before {
  opacity: 0;
}

.box-steps-12vlls6:hover::after {
  opacity: 1;
}
.btn-about-12vlls6{
  display: flex;
  justify-content: center;
margin: var(--margin25);}

.section-games1-12vlls6{
  padding: var(--sec-padd);
}
.thumb-games1-12vlls6{
display: flex;
gap: var(--gap-25-30);
flex-wrap: wrap;
}
.box-games1-12vlls6 {
  width: 100%;

}
@media (min-width:768px) and (max-width:1023px) {
  .box-games1-12vlls6 {
    width: calc(50% - 30px);

  }
}
@media (min-width:1024px) {
  .box-games1-12vlls6 {
    width: calc(33.33% - 30px);

  }
}
.box-img-games1-12vlls6 {
  display: block;
  height: 384px;
}
.box-img-games1-12vlls6 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-games1-12vlls6 {
  padding: 14px 0;
  display: block;
  text-align: center;
  color: var(--black);
  font-weight: 800;
  font-size: clamp(18px,4vw,26px);
}
.title-games1-12vlls6:hover {
  color: var(--clb-4);
}
.box-online-games1-12vlls6 {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.svg-box-games1-12vlls6 svg{
  fill: var(--clb-4);
}
.txt-box-games1-12vlls6 {
  color: var(--black);
}
.txt-box-games1-12vlls6:hover {
  color: var(--clb-4);
}
.txt-content-games1-12vlls6{
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  max-height: 3em;
}

.section-games2-12vlls6{
  padding: var(--sec-padd);
  position: relative;
  width: 100%;

  background-image: url('picgallery/background/bg-dark-068a5af49c5b23.jpg'); 
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.section-games2-12vlls6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gb-game-4);
  z-index: 1; 
}
.thumb-games2-12vlls6{
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-30-40);
}
.card-12vlls6 {
  border-radius: var(--border-r);
  position: relative;
  height: 384px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}
.box-games2-12vlls6{
  width: 100%;
}

@media (min-width:768px) and (max-width:1023px) {
  .box-games2-12vlls6 {
    width: calc(50% - 40px);
  }
}
@media (min-width:1024px) {
  .box-games2-12vlls6 {
    width: calc(33.33% - 40px);
  }
}
.card-img-12vlls6 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-12vlls6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gb-game-4);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
    flex-direction: column;
    padding: 19px;
    z-index: 2;
}

.card-12vlls6:hover .overlay-12vlls6 {
  transform: translateY(0);
}

.overlay-title-12vlls6 {
  color: white;
  font-size:  26px;
  font-weight: 800;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  text-align: center;

}

.card-12vlls6:hover .overlay-title-12vlls6 {
  opacity: 1;
  transform: translateX(0);
}

.content-12vlls6 {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0px 19px;
  z-index: 1;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  opacity: 1;
}

.games-2-title-12vlls6 {
  color: var(--white);
  font-size:  26px;
  font-weight: 800;
  margin: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
  text-align: center;
}

.card-12vlls6:hover .content-12vlls6{
  opacity: 0;
}

.section-gallery-12vlls6{
  padding: var(--sec-padd);
  background-color: var(--bg-4);
}
.gallery-container-12vlls6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 10px; 
  padding: 14px;
}

.gallery-container-12vlls6 img {
  width: 100%;
  height: 269px;
  display: block;
  object-fit: cover; 
  transition: transform 0.2s ease; 
}

.gallery-container-12vlls6 img:hover {
  transform: scale(1.05); 
}

@media (max-width: 1200px) {
  .gallery-container-12vlls6 img:nth-child(odd){
    display: none;
  }
  .gallery-container-12vlls6 {
    grid-template-columns: repeat(2, 1fr); 
  }
}



@media (max-width: 600px) {
  .gallery-container-12vlls6 {
    grid-template-columns: repeat(1, 1fr);
  }
}


.section-form-12vlls6{
  padding: var(--sec-padd);
  background-color: var(--bg-4);
}
.contact-container-12vlls6 {
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.10);
  display: flex;
  justify-content: space-between;
  padding:44px;
  max-width: 1200px;
  margin: 0 auto;
  background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  border: 2px solid #fff3;
}
@media (max-width:575px) {
  .contact-container-12vlls6 {
    padding: 19px;
  }
}
.contact-form-12vlls6 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-form-12vlls6 label{
  color: var(--white);
}
.input-main_block--section{
  outline: none;
  margin-bottom: 18px;
  padding: 19px;
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
.textarea-main_block--section{
  outline: none;
  margin-bottom: 18px;
  padding: 19px;
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
.contact-form-input-12vlls6 {
  outline: none;
  margin-bottom: 18px;
  padding: 19px;
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
.input-main_block--section:focus {
  border: 2px solid var(--clb-4);
}
.textarea-main_block--section:focus {
  border: 2px solid var(--clb-4);
}
.contact-form-12vlls6 input:focus 
 {
  border: 2px solid var(--clb-4);

}


.contact-info-12vlls6 {
  display: flex;
  flex-direction: column;
}
.box-adr-info-12vlls6{
  display: flex;
  justify-content: space-around;

}
@media (max-width:575px) {
  .box-adr-info-12vlls6{
    flex-direction: column;
  }
}
.info-item-12vlls6 {
  gap: 10px;
  width: 100%;
  min-height: 150px;
  padding: 19px;
color: var(--white);
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  justify-content: center;
}
.info-item-12vlls6 a{
  color: var(--white);
}
.info-item-12vlls6::before,
.info-item-12vlls6::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.9s ease;
  z-index: -1;
}

.info-item-12vlls6::before {
  border: 2px solid #fff3;
  background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  opacity: 1;
}

.info-item-12vlls6::after {
  border: 2px solid #fff3;
  background-image: linear-gradient(0deg, var(--clb-4) 15.26%, #f000);
  opacity: 0;
}
.info-item-12vlls6:hover::before {
  opacity: 0;
}

.info-item-12vlls6:hover::after {
  opacity: 1;
}
.info-item-12vlls6 span{
  flex: 1;
}
.info-item-12vlls6 svg {
  width: 27px;
  height: 27px;
  margin-right: 14px;
  fill: var(--clb-4);
}
.box-privacy-cont-12vlls6{
  display: flex;
  align-items: center;
  gap: 6px;
}
.check-color-12vlls6{
  color:var(--white);
}
.privacy-link-12vlls6{
  color: var(--white);
}
.privacy-link-12vlls6:hover{
  color: var(--clb-4);
}
.box-form-button-12vlls6{
  margin: var(--margin25);
  display: flex;
  justify-content: center;
}

.section-footer-12vlls6 {
  background-color: var(--bg-4);
  padding: var(--sec-padd);
  border-top: 2px solid var(--clb-4);
}

.box-discl-12vlls6{
  animation: gradientAnimation 3s ease-in-out  infinite;
  border: 2px solid #fff3;
  padding: 19px;
}
@keyframes gradientAnimation {
  0% {
    background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  }
  50% {
    background-image: linear-gradient(0deg, var(--clb-4) 15.26%, #f000);
  }
  100% {
    background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  }
}

.txt-disclaimer-12vlls6 {
  text-align: center;
  color: var(--white);
  font-size: clamp(16px,4vw,21px);
  font-weight: 400;
}

.box-img-diclaimer-12vlls6 {
  width:79px;
}
.box-img-diclaimer-12vlls6 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.box-link-footer-12vlls6 {
  display: flex;
  justify-content: center;
  margin: var(--margin25);
  font-size: clamp(16px,4vw,21px);
  font-weight: 400;
  flex-wrap: wrap;
  gap:37px;

}
.box-footer-cont-link-12vlls6{
  display: flex;
  flex-direction: column-reverse;
}
.footer-links-12vlls6{
  color:var(--white);
  text-align: center;
}
.footer-links-12vlls6:hover {
  color:var(--clb-4)
}
.contacts-footer-12vlls6{
  display: flex;
  margin: var(--margin25);
  justify-content: center;
  gap: var(--gap-30-40);
}
@media (max-width:575px) {
  .contacts-footer-12vlls6{
    flex-direction: column-reverse;

  }
}
.box-copy-12vlls6 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row-reverse;
}
@media (max-width:650px) {
  .box-copy-12vlls6 {
    flex-direction: column-reverse;

  }
}
.copy-title-12vlls6 {
  color:var(--white);
  text-align: center;
}
.color-copy-title-12vlls6{
  color: var(--clb-4);
  font-size: clamp(16px,4vw,18px);
}
.direction-plays{
  display: flex;
  flex-direction: column-reverse ;
}
.section-main-page-12vlls6{
  padding: var(--sec-padd);
  background-color: var(--bg-4);
}
.container_main-12vlls6{
  background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  border: 2px solid #fff3;
}
.txt-main-page-12vlls6{
  color: var(--white);
}
.main-page-12vlls6 {
  height: 384px;
  object-fit: contain;
}
@media (max-width:575px) {
  
.main-page-12vlls6 {
  height: auto;
}}

.section-com-12vlls6{
  padding: var(--sec-padd);
  position: relative;
  width: 100%;

  background-image: url('picgallery/background/bg-dark-268a5af49c5b47.jpg'); 
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.section-com-12vlls6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gb-game-4);
  z-index: 1; 
}
.comment-slider-12vlls6 {
  direction: initial;
  width: 100%; 
  max-width: 920px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;

}


.slider-track-12vlls6 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.comment-12vlls6 {
  border-radius: var(--border-r);
  min-width: 300px;
  box-sizing: border-box;
  padding: 14px;
text-align: center;
  margin-right: 14px;
  background-image: linear-gradient(0deg, #f000 15.26%, var(--clb-4));
  border: 2px solid #fff3;
  margin-right: 14px;
}
.comment-12vlls6 p {
  padding: 0px 19px;
  color: var(--white);
}

.box-img-comments {
  margin: 0 auto;
  width: 146px;
  height: 146px;
  border-radius: 50%;
}
.box-img-comments img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.name-comments-12vlls6 {
  text-align: center;
  margin: var(--margin25);
  color: var(--white);
}
@media (max-width: 768px) {
  .comment-slider-12vlls6 {
      max-width: 570px;
  }

  .comment-12vlls6 {
      min-width: 280px; 
  }
}

@media (max-width: 480px) {
  .comment-slider-12vlls6 {
      max-width: 280px;
  }

  .comment-12vlls6 {
      min-width: 280px; 
  }
}

.privacy-section-12vlls6 {
  word-break: break-all;
  padding: var(--sec-padd);
  background-color: var(--bg-4);
}

.privacy-12vlls6 {
  color: var(--white);
}
.privacy-12vlls6 h1{
  font-size: clamp(24px,4vw,28px);
}


.button-12vlls6-1 {
  direction: initial;
  padding: 1.1em 2em;
  background: none;
  border: 2px solid #fff;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
  border-radius: 15px;
  background-color: var(--clb-4);
  font-weight: bolder;
  box-shadow: 0 2px 0 2px #000;
 }
 
 .button-12vlls6-1:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 120%;
  background-color: #ff6700;
  top: 50%;
  transform: skewX(30deg) translate(-150%, -50%);
  transition: all 0.5s;
 }
 
 .button-12vlls6-1:hover {
  background-color: #4cc9f0;
  color: #fff;
  box-shadow: 0 2px 0 2px #0d3b66;
 }
 
 .button-12vlls6-1:hover::before {
  transform: skewX(30deg) translate(150%, -50%);
  transition-delay: 0.1s;
 }
 
 .button-12vlls6-1:active {
  transform: scale(0.9);
 }
.button-12vlls6-2 {
  background: var(--clb-4);
  color:var(--white);
  font-family: inherit;
  padding: 0.6em 1.3em;
  font-weight: 800;
  font-size: 16px;
  border: 2px solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.1em;
  cursor: pointer;
}

.button-12vlls6-2:hover {
  transform: translate(-0.05em, -0.05em);
  box-shadow: 0.15em 0.15em;
}

.button-12vlls6-2:active {
  transform: translate(0.05em, 0.05em);
  box-shadow: 0.05em 0.05em;
}

.button-12vlls6-3 {
  padding: 1em 1.3em;
cursor: pointer;
  border: none;
  border-radius: 10em;
  background: var(--clb-4);
  font-size: 16px;
  color: #ffffff;
  font-family: inherit;
  font-weight: 400;
 }
 
 .button-12vlls6-3:hover {
  animation: shake3856 0.2s linear infinite both;
 }
 
 @keyframes shake3856 {
  0% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 
  20% {
   -webkit-transform: translate(-2px, 2px);
   transform: translate(-2px, 2px);
  }
 
  40% {
   -webkit-transform: translate(-2px, -2px);
   transform: translate(-2px, -2px);
  }
 
  60% {
   -webkit-transform: translate(2px, 2px);
   transform: translate(2px, 2px);
  }
 
  80% {
   -webkit-transform: translate(2px, -2px);
   transform: translate(2px, -2px);
  }
 
  100% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 }


 .button-12vlls6-4 {
  position: relative;
  background-color: var(--bg-4);
  display: flex;
  align-items: center;
  color: white;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding:18px;
  gap: 14px;
  border-radius: 8px;
  cursor: pointer;
}

.button-12vlls6-4::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
 width: 100%;
 height: 100%;
  border-radius: 14px;
  background: linear-gradient(-45deg, var(--clb-4) 0%, #40c9ff 100% );
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-12vlls6-4::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, var(--clb-4) 0%, #00dbde 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.button-12vlls6-4:hover::after {
  filter: blur(30px);
}

.button-12vlls6-4:hover::before {
  transform: rotate(-180deg);
}

.button-12vlls6-4:active::before {
  scale: 0.7;
}
.button-12vlls6-5 {
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  cursor: pointer;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 400;
  color:var(--white);
  background-color: var(--clb-4);
}

.button-12vlls6-5:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 45, 45, 0.2);
}

.button-12vlls6-5:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.button-12vlls6-5::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
}

.button-12vlls6-5::after {
  background-color: var(--clb-4);
}

.button-12vlls6-5:hover::after {
  transform: scaleX(1.2) scaleY(1.3);
  opacity: 0;
}

.game-main-12vlls6{
  width: 100%;
  height: 100vh;
}

.game-main-12vlls6 iframe{
  width: 100%;
  height: 100vh;
}

.privacy-policy li a, .privacy-policy p a, .terms-container li a, .terms-container p a{
  color: #fff !important;
}