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

:root {   
  --colorWhite: #ffe6ca;
  --colorDark: #060606;
  --white:#fff; 
  --hed-bg-1:radial-gradient(82.6% 51.7% at 50% 0%, #730d0d 0%, rgb(41, 0, 0) 100%);
  --hed-bg-2:linear-gradient(180deg, #a61e1f 0%, #ec252b 100%);
  --colorPrimary: #007bff; 
  --greenBg:#005826;
  --colorSecondary-1: var(--white);
  --colorSecondary-2:var(--bgGradient);
  --colorAccent: #ffcc00; 
  --bgGradient: linear-gradient(145deg, #007bff, #0a5b9f);
  --red-color-1: #a61e1f;
  --red-color-2:#ec252b;
  --red-color-3:#730d0d;
  --flex-basis-1:calc((100% - 3* 30px) / 3);
 --flex-basis-2:calc((100% - 2* 30px) / 2);
  
}

body{  
  direction: ltr;
  font-family: 'Bitter', sans-serif !important;
  font-size: 15px;
  margin: 0;
  padding: 0px;    
  line-height: 1.5; 
    
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 200ms linear;
}
input:focus, textarea:focus, select:focus {
  outline: none;
}

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

ul{
  list-style: none;   
}
[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
h2{
font-size: clamp(21px,4vw,36px)
}

.buttunGame-1 {
  display: block;
  width: fit-content;
  text-align: center; 
  background: linear-gradient(135deg, #e53935, #f44336, #ef9a9a);
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 18px 26px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  
}
.buttunGame-1::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #ffffff55, #ffffff00);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0.3);
}
.buttunGame-1:hover{
   transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
}

.buttunGame-1:hover::before {
    opacity: 1;
    transform: scale(1);
}
@keyframes twinkle {
    0%, 100% { box-shadow: 0 0 13px #fff, 0 0 25px #4fc3f7, 0 0 26px #81d4fa, 0 0 40px #e1f5fe; }
    50% { box-shadow: 0 0 4px #fff, 0 0 18px #4fc3f7, 0 0 26px #81d4fa, 0 0 34px #e1f5fe; }
}


.buttunGame-2 {
  padding: 18px 26px;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  border: 1px  solid #fff;
  outline: none;
  color: #fff;
  background: var(--greenBg);
  cursor: pointer;
  position: relative;
  z-index: 0;
 border-radius: 30px;
 transition: var(--hover-tranzitipn);
}

.buttunGame-2:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #8c97cf, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(4px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  -webkit-animation: glowing 20s linear infinite;
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .2s ease-in-out;
 border-radius: 30px;
}

.buttunGame-2:hover {
color: var(--accent-1);
}

.buttunGame-2:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
background: var(--color-text-5);
  left: 0;
  top: 0;
  border-radius: 30px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}
.buttunGame-3{
  text-align: center;
  width: fit-content;
  background-color: #6ec1e4;
  color: #ffffff;
  border: none;

  border-radius: 26px;
  padding: 18px 34px;
  font-size: 16px;
  cursor: pointer;
  text-shadow: rgb(15 15 15) 1px 1px 1px;
  
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
} 
.buttunGame-3::before{
  content: '';
  position: absolute;
  top: -10px;
  left: -50%;
  width: 200%;
  height: 150%;
  background: repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, #dfeefc 10px, #dfeefc 20px);
  opacity: 0.3;
  transition: transform 1s;
  transform: scale(0.8) rotate(0deg);
  animation: snowFall 6s linear infinite;
}
.buttunGame-3:hover{
  background-color: #3fa8cc;
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
}
@keyframes snowFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
    }
    100% {
        transform: translateY(100px) rotate(360deg);
    }
}

.buttunGame-4 {
  display: block;
  text-align: center;
  width: fit-content;
  background: #0176c3;
  color: #fff; 
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 800;
  border: 2px solid var(--white); 
  border-radius: 26px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all .2s ease;
  
}

.buttunGame-4:hover,
.buttunGame-4:focus {
  border-color: #0176c3;
  background: #ffffff;
  color: #0176c3;
}


.buttunGame-5 {
  width: fit-content;
  display: block;
  text-align: center;
  background: var(--red-color-2); 
  color: #fff; 
  border: 1px solid #fff;
  padding: 18px 34px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 26px; 
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 9px 18px rgba(255, 87, 34, 0.5); 
}

.buttunGame-5:hover {
  background: var(--red-color-1); 
  transform: scale(1.05); 
  box-shadow: 0 12px 25px rgba(255, 152, 0, 0.7); 
}
.buttunGame-5::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  background-size: 50% 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-in-out;
  z-index: 0;
}

.buttunGame-5:hover:before{
  transform: translate(-50%, -50%) scale(1); 
}
.headerBE{ 
  overflow: hidden;
  padding: 80px 0; 
  display: flex;
}
.bg-topSection{
  position: relative;
  background-color: transparent;
  background:var(--hed-bg-2); 
  
}
.bg-topSection::before{
  position: absolute;
  content: "";
  inset: 0;
  background-image: url(visualtreasure/bg-assets/bg-light-06893827fe1d1d.jpg);
  opacity: 0.3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;

}
.canvas{
  position: absolute;
  inset: 0;
}
.elementor-shape{
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  transform: rotate(180deg);
  bottom: -1px;
  svg{
    fill:var(--white);
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header-navWrapper{
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 1;
}
.containerWinter{
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  max-width: 1200px;
}
.header-box-flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.header-logo{  
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  img{
    width: auto;
    height: 100%;
    object-fit: contain;
  }

}

.menuWN{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.menuWN_link{
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}
.menuWN_link:hover,.menuWN_link:focus,.header-logo:hover,.header-logo:focus{
  color: gold ;
  outline: none;
 animation: glow 1s ease-in-out infinite alternate;

}
@keyframes glow  {
  0% {
    text-shadow: 0 0 13px #fff, 0 0 25px #fff, 0 0 26px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}
100% {
    text-shadow: 0 0 25px #fff, 0 0 26px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
}
}
.heder-content{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.text-with-hat {
  margin-bottom: 39px;
  font-family: 'Mountains of Christmas', cursive;
  font-size: calc(1.5rem + 3vw);
  font-weight: 800; 
  background: linear-gradient(315deg, #cda43c 0%, rgb(255, 247, 158) 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  text-align: center; 
}

.big-star,.small-star{
  position: absolute;
  left: 7%;
  top: 30%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(2px);
   animation: spin 10s linear infinite; 
  svg{
   fill: #cda43c;
   stroke:#cda43c;
   width: 100%;
   height: 100%;
  }
}
@keyframes spin {
    from {
        transform: rotate(0deg); 
    }
    to {
        transform: rotate(360deg); 
    }
}
.small-star{
  width: 50px;
  height: 50px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.right-star{
  right: 20%;
  top: 60%;
  left: auto;
}
.white-srctionKJ{
  background-color: var(--white);
}
.pad-t-b{
  padding:80px 0 ;
}
.flex-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.align{
  align-items: center;
}
.gap-blok{
  gap: 33px;
}
.flex-element{
  flex: 1;
}
.shadow{
  transition: all 200ms linear;
  box-shadow: 15px 15px 0px 0px #EC252B;
}
.img-boxHJ{
 
  height: 100%;
  max-height: 500px;
  width: 100%;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
}
.about-boxWn{
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about-boxWn p {
  margin: 13px 0;
}
.titleBox{
 padding-inline-start: 34px ;
  width: fit-content;
  position: relative;
  text-align: center;
  font-weight: 800;
  color: var(--white);
  font-family: 'Mountains of Christmas', cursive;
  line-height: 1.2em;
  margin: 0 auto;
}
.titleBox::before{
  position: absolute;
  content: "";
  background-image: url(visualtreasure/other-dir/toys-06893827fe1f40.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  inset-inline-start: 0;
  height: 100%;
  width: 30px;
 

}
.shadow:hover{
  box-shadow:none
}
.statistik{
  width: fit-content;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 25px;
  border-radius: 15px;
  background-color: #ec252b;
  
}
.avatars-list{
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatars-list li{
  height: 64px;
  width: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
} 
.status-text{
  display: flex;
  text-align: center;
  font-size: 20px;
  color: #48ff00;
  font-weight: 800;
  flex-direction:  column-reverse;
  gap: 13px;
  span{
    color: #fff;
    font-size: 17px;

  }
} 
.red-section{
  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #ec252b;
  background-image: url(visualtreasure/bg-assets/opacity_bg-06893827fe1dca.png);
}
.border-top{
 border-top: 4px solid gold;
}
.greenBg{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--greenBg);
  background-image: url(visualtreasure/bg-assets/opacity_bg-16893827fe1de5.png);
}
.mb-5{
  margin-bottom: 47px;
}
.white-srctionKJ .titleBox{   
  color: var(--red-color-1);
  text-align: center;
}
.grid-list{
  display: grid; 
   
  grid-template-columns: repeat(4, 1fr);
}
.grid-list li{
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-box{
  
  height: 100%;
  min-height: 200px;
  margin: 26px 25px;
  border-radius: 6px;
  background-color: var(--colorWhite);
  color: var(--colorDark);
  cursor: pointer;
  padding: 14px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  perspective: 800px;
  transition: all 0.4s ease-in-out;
}
.dor{
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 70px;
  position: absolute;
  inset: 0;
  border-radius: 6px; 
  background-image:url(visualtreasure/bg-assets/gallery-06893827fe1d90.jpg);
  background-repeat: no-repeat;
  background-size: cover;
   background-color: #00000094;
  background-position: center;
  box-sizing: border-box;
  border-top: 2px #eee dashed;
  border-right: 2px #eee dashed;
  border-bottom: 2px #eee dashed;
  border-left: 1px #eee solid;
  padding: 14px;
  transform-origin: 0 40%;
  transition: all 0.4s ease-in-out;
  transform-style: preserve-3d;
 span{
  position: relative;
 }

}
.dor::before{
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  inset: 0;
  background-color: #0000007e;
}
.dor-img{
  position: absolute;
  width: auto;
  height: 70px;
  left: -8%;
  top: -14%;
  object-fit: contain;
}
.bottom-img{
  left: auto;
  top: unset;
  bottom: -8%;
  right: 2%;
}
.grid-box.jiggle .dor {
    background-color: var(--greenBg);
}
.open {
  box-shadow: 14px 0px 18px -1px rgba(0,0,0,0.2);
  color: #91c1cc;
  transform: rotate3d(0, 1, 0, -88deg);
}
.jiggle {
  animation: jiggle 0.2s infinite;
  transform: rotate(-1deg);
 
}
@keyframes jiggle {
  0% {
        transform: rotate(-1deg);
  }
  50% {
      transform: rotate(1deg);
  }
}

.sectionOne{
  display: none;
}
.sectionTwo{
display: block;
}
.about-us {
  background: var(--bgGradient);
  color: var(--white);  
  text-align: center; 
  position: relative;
  overflow: hidden;
}

.about-us__description {
  font-size: 1.2rem;
  line-height: 1.6; 
}

.about-us__features {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature {
  color: #000;
  padding: 20px;
  border-radius: 9px;
  display: flex;
  justify-content: space-around;
  gap:  15px;
  flex-direction: column-reverse;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}

.feature:hover {
  transform: scale(1.05);  
}

.feature__icon {
  object-fit: contain;
  width: auto;
  height: 50px; 
}

.feature__text {
  font-size: 1rem;
  line-height: 1.5;
}
.iner-flex{
  display: flex;
  flex-direction: column-reverse;
}
.iner-gap{
  gap: 40px;
}
.games-wrapper{
  display: flex;
  gap: 18px;
  flex-direction: row;
}
.games-box{
 flex: 3;
}
.games-img{
  flex: 1;
  img{
    width: auto;
    height: 700;
    object-fit: contain;
  }
}

.cards-grid {
  display: grid;
  gap: 25px; 
  grid-template-columns: repeat(2, 1fr);
  padding: 25px;
  border-radius: 7px;
  background: var(--colorSecondary-2); 
}

.card {
  position: relative;
  width: 100%;
  min-height: 250px;
  perspective: 1000px; 
}

.card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg); 
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 4px;
  backface-visibility: hidden; 
  border: 2px solid #ddd;
  border-radius: 7px;
  overflow: hidden;
  p{
    display: -webkit-box; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  -webkit-line-clamp: 4; 
  text-overflow: ellipsis; 
  }
}
.card-front {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}

.card-front:hover {
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.3);
}

.card-front img {
  max-width: 100px;
  height: auto;
  max-height: 150px;
  margin-bottom: 13px;
}
.card-front h2{
color: #005826;
text-align: center;
font-size: 22px;
}
.card-front p {
  font-size: 16px;
  color: #333;
  margin: 0;
}


.card-back {
  position: relative;
  color: #fff;
  transform: rotateY(180deg); 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px; 
  box-sizing: border-box;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.6); 
  border: 2px solid #fff; 
  overflow: hidden;
}

.card-back img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: blur(4px) brightness(0.7); 
  transition: filter 0.2s ease-in-out;
}

.card-back:hover img {
  filter: blur(2px) brightness(0.9); 
}

.card-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  ); 
  z-index: 0;
}

.card-back p {
  z-index: 1;
  font-size: 17px;
  color: #fff; 
  animation: glow 2s infinite alternate; 
}

@keyframes glow {
  from {
    text-shadow: 0 0 4px #fff, 0 0 13px #ff9, 0 0 18px #ff9;
  }
  to {
    text-shadow: 0 0 13px #ff9, 0 0 25px #ffa, 0 0 26px #ffa;
  }
}
.stamp-border{
  --radius: 8px;

  background-image: 
    radial-gradient(
      var(--radius),
      transparent 98%,
      white
    ),
    linear-gradient(white 0 0);
  background-repeat: 
    round, 
    no-repeat;
  background-position:
    calc(var(--radius) * -1.5) calc(var(--radius) * -1.5),
    50%;
  background-size:
    calc(var(--radius) * 3) calc(var(--radius) * 3),
    calc(100% - var(--radius) * 3) calc(100% - var(--radius) * 3);

}
.row{
 display: flex;
  flex-wrap: wrap;
  margin: -15px;
  justify-content: center;
}
.col{
  margin: 15px;
  flex-basis: var(--flex-basis-2);
}

.festive-footer {
  color: var(--white);
  background: var( --hed-bg-2); 
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center; 
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-direction: column;
}

.footer-logo img {
  max-width: 80px; 
}

.footer-logo p {
  font-size: 18px;
  color: #fefefe;
  font-weight: 800;
}


.footer-midl{
  padding: 40px 0;
}

.footer-age img {
  width: auto;
  height: 70px;
  margin: 0 auto;
}

.footer-bottom {
  font-size: 15px;
  text-align: center;
  color: #fefefe;
  border-top: 2px solid rgba(255, 255, 255, 0.18);
  padding-top: 25px;
  p{
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
  }
}
.gap-2{
  gap: 20px;
}
.footer-disclaimer { 
  font-size: 18px;
  font-weight: 700;
  padding: 40px 25px;
  border-radius: 13px;
  text-align: center;  
  transition:  transform 0.2s ease; 
}

.footer-disclaimer:hover { 
  transform: scale(1.05); 
}

.disclaimer-title {
  font-size: 37px;
  font-weight: 800;
  margin-bottom: 13px;
  color: var(--red-color-3);
  text-shadow: 2px 2px 4px rgba(238, 246, 11, 0.6);
}

.disclaimer-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--red-color-2);
  line-height: 1.6;
}
.privacyWin{
 word-break: break-word;
 color: var(--colorDark);
}
.privacyWin p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.privacyWin li{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.privacyWin h1{
  font-weight: 700;
  text-align: center;
  margin-bottom:  21px;
}
.privacyWin h2{
  font-weight: 700;
  text-align: center;
  margin-bottom:18px ;
}
.privacyWin table,.privacyWin a{
  word-break: break-word;
  color: inherit;
}
.contact-listWin{
  display: flex;
  flex-wrap: wrap;
  gap: 25px; 
}
.btn-wh{
  margin: 0 auto;
}
.contact-listWin li{
  flex-grow: 1;
  flex-basis: 250px;
}
.cont-inem{
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 26px 18px;
  width: 100%;
  height: 100%;
  word-wrap: break-word;
  color: var(--colorDark);
  h3{
    font-weight: 800;
    font-size: 25px;
    color: var(--red-color-2);
  }
}


.contact-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  padding: 40px;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea ,.input-group-field-block,.textarea-group-field-block{
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 13px;
  background: linear-gradient(145deg, #ffffff, #d1e9ff);
  font-size: 1rem;
  color: #073251;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder,.input-group-field-block::placeholder,.textarea-group-field-block::placeholder {
  color: #073251;
}

.form-group input:focus,
.form-group textarea:focus,
.input-group-field-block:focus,
.textarea-group-field-block:focus{
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.cont-wrapper{
  display: flex;
  gap: 26px;
  flex-direction: column;
}
.cont-boxElement{
  flex: 1;
}
.check{
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-align: left;
  align-items: center;
  font-size: 13px;
  color: var(--colorDark);
}
.anim{
  animation: bounce 2s infinite;
}



.decorative-footer {
  margin-top: 26px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-image {
  width: 120px;
  animation: bounce 2s infinite;
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
 .text {
 cursor: pointer;  
 position: relative;
}
 

.star {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: gold;
  border-radius: 50%;
  pointer-events: none;
  animation: fall 1s ease-out forwards;
}

@keyframes fall {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(50px) scale(0.5);
  }
}
.game-context-wrapper{
  padding: 40px 25px;
  border-radius: 9px;
  background: var(--colorSecondary-2);

}
.game-picture{
  max-height: 360px;
  object-fit: contain;
  border-radius: 0px;
  float: right;
  width: 40%;
  margin: 18px;
  margin-top: 0;
  margin-right: 0;
    
}
.game-content{  
  color: #fff;
  font-size: 16px;
  line-height: 1.6;   
    
}
.game-content p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.game-content ul,ol{
  list-style: inside;
}
.playing-wrapper{
  display: flex;
  gap: 25px;
  
  align-items: center;
  justify-content: space-between;
  img{
    width: 15%;
    height: 100%;
    object-fit: contain;
  }
}
.playing{
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 70px;
}
.playing iframe{
  height: 100vh;
  width: 100%;
  border: none;
  border-radius: 18px;
}
.main-form {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 18px;
  padding: 40px;
  background: linear-gradient(145deg, #ccefff, #99ccff);
  border-radius: 13px;
  color: #004d6e;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1);
}
.main-form::before{
  position: absolute;
  content: "";
  top: -37px;
  left: 0;
  width: 100%;
  height: 80px;    
  background-position: center;
  background-size: contain;
  background-repeat: space;
  background-image: url(visualtreasure/other-dir/snow-06893827fe1fa5.svg);
}
.mb-big{
  margin-bottom: 80px;
}
.gallery-wrapper{
  position: relative;              
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  transform-style: preserve-3d;
  perspective: 500px;
  margin: auto;
}
.gallery_item{
  position: relative;
  flex: 1;  
  height: 250px;
  background: #000;
  transition: 0.4s;
  transform: scale(0.95);
  border: 4px solid var(--col-box-1);
  border-radius: 30px;
  transform-style: preserve-3d;
  overflow: hidden; 
  border: 2px solid #ddd;
  border-radius: 7px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;  
  }
}

@media (max-width: 575px){
  .about-boxWn{
    padding: 0;
  }
  .shadow{
    box-shadow: 12px 12px 0px 0px #EC252B;
  }
 
  .open {
    transform: rotate3d(0, 1, 0, -83deg);
  }
  .grid-list{
    grid-template-columns: 40px;
  }
  .cards-grid{
    padding: 25px 13px;
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-bottom p{
    justify-content: center;
  }
  .col {
    flex-basis: 100%;
  }
  .midl-img{
    display: none;
  }
  .contact-form{
    padding: 40px 25px;
  }
  .main-form,.game-context-wrapper{
    padding: 40px 12px; 
  }

}
@media (min-width: 575px) and (max-width: 992px){
 .img-boxHJ img{
  height: 350px;
}

}

@media (min-width: 575px) and (max-width: 768px){
  .col {
    flex-basis: var(--flex-basis-2);
  }
}
@media (min-width: 769.99px){
  .gallery-wrapper:hover .gallery_item {
    transform: rotateY(20deg);
  }
  .gallery-wrapper .gallery_item:hover ~ .gallery_item{
    transform: rotateY(-20deg);
  }
    .gallery-wrapper .gallery_item:hover {
  transform: rotateY(0deg) scale(1.02);
  z-index: 1;    
  }
}
@media (max-width: 768px){
 .header-box-flex{
  flex-direction: column;
  justify-content: center;
 }
 .menuWN_link{
  font-size: 15px;
 }
 .big-star,.small-star{
  display: none;
 }
 .grid-list{
  grid-template-columns: repeat(1, 1fr);
}
.footer-disclaimer {
    font-size: 16px;
    padding: 25px;
  }
  .footer-content{
    justify-content: center;
  }
  .game-picture{
    float: none;
    width:100%;
    margin: 0 0 25px 0;
    
  }
  .playing{
    height: 350px;
    padding: 14px;
  }
   .gallery_item:hover  img{
    transform: scale(1.08);
    opacity: 0.8;
  }
  .gallery-wrapper{
    flex-direction: column;
  }
  .gallery_item{
    flex: auto;
  } 
  .disclaimer-title{
    font-size: 24px;
  }
  .game-content {
    font-size: 16px;
  }
  .cont-inem h3{
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 992px){
.grid-list{
  grid-template-columns: repeat(2, 1fr);
}

}


@media (max-width: 992px){ 
.flex-row{
  flex-direction: column-reverse;
}

.grid-list{
  gap: 26px;
}
.grid-box{
  width: 250px;
  margin: 0;
}
.games-img{
  display: none;
}
.cont-wrapper{
  flex-direction: column-reverse;
}
.playing{
  width: 100%;
}
.playing-wrapper img{
  display: none;
}
.align{
  align-items: unset;
}
    
}
@media (min-width: 1200px){   
  .cards-grid{
    grid-template-columns: repeat(2, 1fr);
  }
 
}

.privacyWin ul, .privacyWin ol{
  list-style: disc !important;
}

.privacyWin{
  padding: 0 13px;
}

.privacyWin li{
  text-indent: 0 !important;
}


