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


:root {   
  --colorWhite: #fefdf8;
  --colorDark: #060606;
  --white:#fff; 
  --soft-pink:#ecbbff;
  --main-color-001:#b825f0;
  --main-color-002:#d437ff;
  --main-color-003:#9d20e0;
  --main-color-004:#c144f5;
  --main-color-005:#d14ce6;

  --dark-blue:#2c0e70;
  --black:#000;
  --accent-1:#ff1df1;
  --accent-2:#e91e63;
  --accent-3:#b825f0;
   --accent-4:#ffae00;   
   --accent-5:#ff3838;

  --bag-gradien-1:linear-gradient(145deg, var(--accent-1), var(--main-color-001));
  --bag-gradien-2:linear-gradient(145deg, var(--accent-2), var(--main-color-002));
  --bag-gradien-3:linear-gradient(145deg,var(--accent-3), var(--main-color-003));
  --bag-gradien-4:linear-gradient(145deg, var(--accent-4), var(--main-color-004));
  --bag-gradien-5:linear-gradient(145deg, var(--accent-5), var(--main-color-005));
  
  
}

body{  
  direction: ltr;
  font-family: 'Urbanist', sans-serif !important;
  font-size: 15px;
  margin: 0;
  padding: 0px;    
  line-height: 1.5; 
  height: auto;
  overflow: auto;
    
}
* {
  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)
}
.buttonGam-1 {
  display: block;
  width: fit-content;
  text-align: center; 
  padding: 16px 36px;
  background: var(--bag-gradien-1); 
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  
}

.buttonGam-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #ffea00; 
  border-radius: 50%;
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.buttonGam-1:hover::before {
  width: 0;
  height: 0;
  opacity: 1;
}
.buttonGam-2 { 
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 16px;  
  padding: 15px 30px;
  background-color: var(--accent-1);
  color: white;
  border: 2px solid var(--accent-1); 
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  transition: all 0.4s ease;
}

.buttonGam-2:hover {
 background-color: transparent;
  color: var(--white);
  transform: scale(1.1);
  border-color: #ffea00;
  box-shadow: 0 0 10px rgba(255, 234, 0, 0.5);
}



.buttonGam-3{
  text-align: center;
  width: fit-content;
  padding: 15px 40px;
  background: linear-gradient(145deg,var(--accent-1), #ffea00);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
} 

.buttonGam-3:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: white;
  transition: all 0.4s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

.buttonGam-3:hover {
  transform: scale(1.1);
}

.buttonGam-3:hover:before {
  width: 0;
  height: 0;
  opacity: 0;
}

.buttonGam-4 {
  display: block;
  text-align: center;
  width: fit-content;
  padding: 16px 20px;
  background-color:#b825f0;  
  background-color: var(--main-color-001);
  box-shadow: 0 0 20px #ecbbff26;
  color: white;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: bold;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  
}




.buttonGam-4:hover {
  border: 1px solid var(--soft-pink);
  background-color: transparent;  
  color: var(--soft-pink);
 box-shadow: 0 0 20px #ecbbff59;
}




.buttonGam-5 {
  width: fit-content;
  display: block;
  text-align: center;
  padding: 15px 20px;
  background-color: #ff007c;
  color: white;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.buttonGam-5::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #ffea00;
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.buttonGam-5:hover {
  color: #ff007c;
  background-color: white;
  border-color: #ff007c;
  box-shadow: 0 5px 15px rgba(255, 234, 0, 0.7);
}
.navigation-menu{
  background-color: #0000;
  position: fixed;
  inset: 0% 0% auto;
  overflow: visible;
  z-index: 10;
}

.full-nav-hero-container{
  display: flex;
  align-items: center;
  background-color: var(--main-color-001);
  flex-direction:  row;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  
}

.dox-logo{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 15px;
  flex: 1;
  font-weight: 800;
  font-size: 17px;
  position: relative;
  height: auto;
  min-height: 74px;
  min-width: 85px;
  color: var(--white);
  transition: all 200ms linear;
  img{
    height: 50px;
    width: auto;
    object-fit: contain;
  }
}
.dox-logo:hover{
  color: var(--accent-5);
}
.navigation{
  position: relative;
  display: flex;
  background-color: var(--colorDark);
  align-items: center;
  justify-content: center;
  border-radius: 0px;
}
.nav-menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu_item-box{
 color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-left: 0;
  font-weight: 400;
  line-height: 1.5em;
  padding: 22px 15px;
  display: block;
  transition: all .5s;
  min-height: 74px;
  text-align: center;
}
.blok-none{
  display: block;
}

.nav-menu_item:hover .nav-menu_item-box,.footer-nav li:hover .nav-menu_item-box{
  color: var(--accent-1);
}

.two-section{
  position: relative;
  overflow: visible;
  z-index: -1;
}
.banner-01{
  padding-top: 160px;
  padding-bottom: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.aura-banner-clip-wrap{
 z-index: -1;
  width: 100%;
  height: 80%;
  position: absolute;
  inset: 67% 0% 0%;
  overflow: hidden;
  background: var(--colorDark);
}
.bg-dark{
  background: var(--colorDark);
}
.clip-stroke-circle-banner {
  position: absolute;
  inset: 0%;
  overflow: visible;
}
.hero-aurora-stroke{
  background-image: linear-gradient(180deg, #ecbbff, var(--main-color-001) 0.5%, #2c0e70 2%, var(--colorDark) 2.5%);
  opacity: 1;
  border-radius: 50%;
  width: 200em;
  height: 350em;
  padding: .1em;
  position: absolute;
  inset: -10% auto auto 50%;
  transform: translate(-50%, 3%);
}
.aurora-stroke-inner{
  background-color: var(--colorDark);
  opacity: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.hero-aura-top-blur{
  z-index: 3;
  background-image: linear-gradient(180deg, var(--soft-pink), var(--main-color-001) 2%, var(--dark-blue) 4%, var(--colorDark) 4.5%);
  opacity: .35;
  filter: blur(2em);
  border-radius: 50%;
  width: 200em;
  height: 350em;
  padding: 4em;
  position: absolute;
  inset: -7% auto auto 50%;
  transform: translate(-50%, 2%);
}
.aurora-blur-inner{
  background-color: var(--colorDark);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.hero-aura-bottom-blur{
  width: 200em;
  height: 350em;
  padding: 4em;
  display: block;
  position: absolute;
  inset: -7% auto auto 50%;
  transform: translate(-50%, 2%);
  z-index: 3;
  background-image: linear-gradient(180deg, var(--soft-pink), var(--main-color-001) 1%, var(--dark-blue) 2%, var(--colorDark) 3%);
  opacity: .5;
  filter: blur(2em);
  border-radius: 50%;
}
.base-container{
  
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.banner-02-info{
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-direction: column-reverse;
}
.banner-text{
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 6rem);
  text-align: center;
  background-clip:text;
  -webkit-background-clip: text;
  -webkit-text-fill-color:transparent;
  background-image: linear-gradient(180deg, var(--white) 2%, var(--soft-pink) 45%,#6a6a6a);
}
.main-block{
  position: absolute;
  inset: 0%; 
}
.avatar {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--main-color-001);
  border-radius: 50%;
  animation: float-and-rotate 5s infinite ease-in-out;
  opacity: 0;
  box-shadow: 0 -3px 5px .5px #ecbbff1a, 0 0 10px 1px #ff1df199;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes float-and-rotate {
  0% {
    transform: scale(0) rotate(0deg) translateZ(0);
    opacity: 0;
  }
  30% {
    transform: scale(1) rotate(20deg) translateZ(0);
    opacity: 1;
  }
  70% {
    transform: scale(1) rotate(-20deg) translateZ(50px);
    opacity: 0.7;
  }
  100% {
    transform: scale(0) rotate(-40deg) translateZ(-200px);
    opacity: 0;
}
}
.avatar:nth-child(1) {
  top: 13%;
  left: 62%;
  animation-delay: 0s;
}
.avatar:nth-child(2) {
  top: 50%;
  left: 5%;
  animation-delay: 0.5s;
}
.avatar:nth-child(3) {
  top: 82%;
  left: 32%;
  animation-delay: 1s;
}
.avatar:nth-child(4) {
  top: 50%;
  right: 5%;
  animation-delay: 1.5s;
}
.avatar:nth-child(5) {
  top: 13%;
  left: 20%;
  animation-delay: 2s;
}
.avatar:nth-child(6) {
  top: 75%;
  right: 30%;
  animation-delay: 2.5s;
}
.top-intro-game{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
  gap: 15px;
  flex-wrap: wrap;
  flex-direction: row;
}
.avatars-wrap{
  display: flex;
  padding-inline-start: 20px;
  align-items: center;
  justify-content: flex-start;
}
.avatar-item{
  width: 50px;
  height: 50px;
  margin-inline-start: -20px;
  overflow: hidden;
  border: 1px solid var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 -3px 5px .5px #ecbbff1a, 0 0 10px 1px #ff1df199;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}
.intro-banner-game{
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.rating-wrap{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--accent-1);
}
.short-game-info{
  font-size: 12px;
  text-transform: uppercase;
  text-align: left;
  span{
    color: var(--accent-1);
    font-weight: 700;
    margin-inline-end: 8px;
  }
}
.hamburger-menu{
  height: 20px;
  width: 45px;
  cursor: pointer;
  text-align: center;
  outline: none;
  border: none;
  background: transparent;
}
.btn-mod{
  display: none;
}
.hamburger-menu >span{
  display: inline-block;
  position: relative;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: var(--white);
  vertical-align: middle;
}
.hamburger-menu >span::before,.hamburger-menu >span::after{
  display: inline-block;
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 1px;
  background: var(--white);
    transition: all 0.3s ease-out 0s;
}
.hamburger-menu > span:before {
  top: -11px;
  inset-inline-start: 0px;
  width: 70%;
}
.hamburger-menu > span:after {
  top: 11px;
  inset-inline-end: 0px;
  width: 70%;
}

.hamburger-menu:hover span:after,.hamburger-menu:hover span::before{
  width: 100%;
}
.top-navLKI.active .hamburger-menu > span{
  height: 0;
}
.top-navLKI.active .hamburger-menu > span:before {
  top: 0;
  width: 34px;
  inset-inline-start: 0;
  transform: rotate(45deg);
}
.top-navLKI.active .hamburger-menu > span:after {
  top: 0;
  inset-inline-start: 0;
  width: 34px;
  transform: rotate(-45deg);
} 
.top-navLKI.active .top-menu {
  inset-inline-end: 0;
   box-shadow: 0 -3px 5px .5px #ecbbff1a, 0 0 10px 1px #ff1df199;
}
.top-menu{
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  inset-inline-end: -100vw;
  width: 320px;
  transition: all 0.3s ease;
  height: 100vh;
  background-color: #060606;  
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 2;
 overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
 
}
.top-menu_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 10px ;
  border-bottom: 1px solid #ffffff26;;
}
.top-menu_butonClose{
  width: 50px;
  height: 50px;
  background-color: transparent;
 
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  svg{
    
    stroke:var(--white);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out 0s;
  }
}

.top-menu_butonClose:hover svg{
  fill:var(--accent-1);
 
}
.top-menu_list{
  display: flex;
  flex-direction: column;

} 
.top-section{
  position: relative;
  z-index: 1;
}
.hello-text{
  text-align: center;
  color: var(--white);
 
}
.pad-box{
  padding: 100px 0;
}
.only-pad{
  padding: 20px 0 100px;
}
.large-section-bg{
 background-color: #0a0023;
  background-image: url(pixelpantry/background/opacity_bg-068d536377d74b.png ) ;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: .3px solid #ff1df133;
  border-radius: 45px 45px 0 0;
 
}
.row{
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.box {
  width: 100%;
  flex: 0 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.outer {
  border-radius: 7px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff,#263131);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dot {
  width: 8px;
  height: 8px;
  position: absolute;
  background-color: var(--white); 
  box-shadow: 0 0 10px #ffbf00;
  border-radius: 50%; 
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 0;
    left: calc(100% - 8px); 
  }
  50% {
    top: calc(100% - 8px); 
    left: calc(100% - 8px);
  }
  75% {
    top: calc(100% - 8px);
    left: 0;
  }
  100% {
    top: 0;
    left: 0;
  }
}

.card {
  width: 100%;
  position: relative;
   border: solid 1px var(--main-color-001);
  border-radius: 7px; 
  background: radial-gradient(circle 280px at 50% 50%, #1a1a1a, #0d0d0d); 
  display: flex;
  flex-direction:  column-reverse;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  padding: 40px 10px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6); 
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 191, 0, 0.4); 
}

.ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

.card .text {
  text-align: center;
  font-size: 16px; 
  font-weight: bold;
  color: var(--white); 
  background: linear-gradient(45deg, #fdfcf9, #f9f5ed, #fdfbfb);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgb(254 245 255 / 80%), 0 0 15px rgba(255, 114, 0, 0.6);
}
.outer, .card {
  height: 100%;
}
.mt-30{
  margin-top: 30px;
}
.title-box{
  margin-bottom: 50px;
  text-align: center;
  background-image: linear-gradient(106deg, var(--main-color-001) 6%, var(--soft-pink) 50%, #572df6 95%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.we-offer{
  background-color: var(--colorDark);
  background-image: url(pixelpantry/background/opacity_bg-168d536377d775.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.flex-boxRow{
  display: flex;
  flex-direction: row;
}
.flex-boxRow_element{
  flex: 1;
}
.we-offer-contents{
  position: sticky;
  top: 140px;
}
.aboutUs{
  padding: 20px;

}
.aboutUs_text{
  text-align: center;
  color: var(--colorWhite);
  font-size: 1.05rem;
  p{
    text-indent: 3ch;
  }
}
.benefit-list{
  display: flex;  
  
}
.benefit-list li{
  flex: 1;
}
.gap-md{
  gap: 25px;
}
.form-wrapperLK{
  flex: 2;
}


.card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: 0 0 30px rgba(184, 37, 240, 0.6), 0 0 15px rgba(184, 37, 240, 0.4);
}


.card-box-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}


.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  background: radial-gradient(circle, rgba(255, 191, 0, 0.3), rgba(0, 0, 0, 0.8));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -3px 5px .5px #ecbbff1a, 0 0 10px 1px #ff1df199;
  animation: pulse 1.5s infinite;
}


.card-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--accent-1);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 191, 0, 0.4);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255, 191, 0, 0.6);
  }
}
.grid-box{
  position: relative;
  gap: 40px;
  justify-content: space-between; 
  flex-direction: column-reverse;
  display: flex;
}
.midl-blok{  
  align-self: start; 
  width: 100%;
 
  img{
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
  }
}
.games-list{ 
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  
}
.games_item{
  flex-grow: 1;
  flex-basis: 280px;
  perspective: 1000px;
}
.sectionTwo{
display: block;
}
.sectionOne{
  display: none;
}
.game-card{
  background-color: #0e0e0e;
  border-radius: 16px;
  flex-direction: column;
  width: 100%;
  height: 100%;  
  padding: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
 
}
.game-card_iner{
  background-image: linear-gradient(90deg, #1d1d1d, #191919);
  border-radius: 15px;
  gap: 20px;
  
  justify-content: space-between;
  flex-direction: column-reverse;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}


.game-card_link{
  position: absolute;
  inset: 0%;
  z-index: 1;
}
.game-card_title{
  background-color: #0e0e0e;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;  
  padding-top: 15px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.card-gradient{
  position: absolute;
  inset: 0%;
  opacity: .3;
  transform: rotate(11deg) scale3d(.6, 1.1, 1);
  transform-style: preserve-3d;
  filter: saturate(60%) blur(25px);
  pointer-events: none;
  background-image: linear-gradient(90deg, var(--accent-1), var(--main-color-001) 36%, #2849f4 75%, #872af0);
}

.game-image{
  position: relative;
  background-color: #0e0e0e;
  height: 250px;
  margin-bottom: 10px;
  border-radius: 15px;
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.card-body{
  margin: 0;  
  
  padding-top: 20px;
  padding-bottom: 20px;
}
.card-content{
  padding: 0 15px;
  color: var(--colorWhite);
  display: flex;
  width: 100%;
  gap: 10px;
  flex-direction: column-reverse;
  h2{
    font-size: 24px;
    text-align: center;
  }
}
.card-statistical{
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;

}
.sectionOne .game-card:hover,.games_item:hover .game-card,.card-coment:hover{
  box-shadow: 0 -3px 5px .5px #ecbbff1a, 0 0 10px 1px #ff1df199;
}
.split{
   display: -webkit-box; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  -webkit-line-clamp: 4; 
  text-overflow: ellipsis; 
}
.full-color-wrapper{
  border-radius: 0 0 60px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 90px #ff1df14d;
}
.inner-banner-photo{
  background-image: url(pixelpantry/background/bg-all-068d536377d6c7.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
 
}

.banner-overlay{
  position: absolute;
  border-radius:0 0 45px 45px;
  inset: 0%;
  background-color: #00000080;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #00000085 3%, #0e0e0e00 87%);
}

.subtitle{
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .15em;
  text-align: center;
}
.page-top-title{
  text-align: center;
  color: var(--white);
  line-height: 1.2em;
  font-size: clamp(1.4rem, 5vw, 6rem);

}
.contact-section{
  position: relative;
  padding-bottom: 80px;
  border-bottom: 1px solid #ffffff40;
}
.m-tBig{
 margin-top: -120px;
}
.contact-usLK{ 
  display: flex;  
  flex-direction: column-reverse;
}
.page-form{
  margin-left: auto;
  margin-right: auto;
  width: 95%;
}
.form-gid{
  position: relative;
  height: 100%;
  background: var(--colorDark);
  border: solid 1px var(--main-color-001);
  border-radius: 15px;
  box-shadow: 0 0 15px #ff1df140;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 15px; 
  
  color: var(--colorWhite);
  overflow: hidden;
  
}
.contact-usLK .form-gid{
  border: none;
}
.element-group{
  display: flex;
  gap: 20px;
  flex-direction: column-reverse;
}
.check{
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-align: left;
  align-items: center;
  font-size: 13px;
  color: var(--colorWhite);
  
}
.avTextarea,.avInput,.input-customcomponent--element,.textarea-customcomponent--element{
  width: 100%;
  padding: 15px 20px;
  background-color: transparent;
  border-radius: 15px;
  border: 1px solid #ffffff26;
  color: var(--white);
  font-size: 14px;
  transition: all 200ms linear;
  background-color: var(--colorDark);
}
.avTextarea:focus,.avInput:focus,.input-customcomponent--element:focus,.textarea-customcomponent--element:focus{
  border: 1px solid var(--accent-1);
  padding-inline-start: 30px;
}
.avTextarea{
  min-height: 160px;
}
.contact-box{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  gap: 25px;
  justify-content: center;
  box-shadow: 0 0 15px #ff1df140;
  border: 1px solid #ff1df126;
  border-radius: 15px;
  
  background-color: var(--colorDark);
}
.icon-box{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
img{
  width: auto;
  height: 150px;
  object-fit: contain;
}
}
.cont-itemLJI{
  border-radius: 15px;
  border: 2px solid var(--main-color-001); 
  transition: all .45s;
}
.cont-itemLJI:hover{
  transform: scale(1.03);
}
.btn-wh{
  margin: 0 auto;
}
.cont-link{
  word-break: break-all;
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 16px;
  height: 100%;
}
.footer-av{
  padding: 80px 0 40px;
}
.footer-flex-box{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
}
.footer-flex-box .form-gid{
  height: auto;
}
.footer-bottom{
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #ffffff40;
  display: flex;
  gap: 30px;
  flex-direction: column-reverse;
}
.age{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  img{
    width: auto;
    height: 100%;
    object-fit: contain;
  }
}
.copy-box{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--colorWhite);
}
.box-iner{
  height: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column-reverse;
}
.logo-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-pink);
  font-weight: 600;
  font-size: 20px;
  gap: 10px;
  img{
    height: 50px;
    width: auto;
    object-fit: contain;
  }
}
.footer-nav{
  display: flex;
  justify-content: center;
 flex-wrap: wrap;
}
.footer-nav .nav-menu_item-box{
  min-height: auto;
  padding: 15px;
  border: none;
  letter-spacing: normal;
}
 .screamer {
  background: var(--bag-gradien-1);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 -3px 5px .5px #ecbbff1a, 0 0 10px 1px #ff1df199;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
  max-width: 500px;
  margin: 0 auto;
}

.screamer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: spin 10s linear infinite;
}
 .screamer h2 {    
  text-transform: uppercase;
  letter-spacing: 2px;
}

.screamer p {
  font-size: 1.2rem;
  margin-top: 10px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(236, 187, 255, 0.102), 0 0 15px rgba(255, 29, 241, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(236, 187, 255, 1), 0 0 20px rgba(255, 29, 241, 0.8);
    }
}

@keyframes spin {
0% {
    transform: translate(-50%, -50%) rotate(0deg);
}
100% {
    transform: translate(-50%, -50%) rotate(360deg);
}
}

.privacyWrapp{
  padding-top: 40px;
 word-break: break-word;
 color: var(--colorWhite);
}
.privacyWrapp p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.privacyWrapp h1{
  font-weight: 400;
  text-align: center;
  margin-bottom:  28px;
}
.privacyWrapp h2{
  font-weight: 600;
  text-align: center;
  margin-bottom:16px ;
}
.privacyWrapp table,.privacyWrapp a{
  word-break: break-word;
  color: inherit;
}
.smol-pad{
  padding-top: 150px;
  padding-bottom: 80px;
}
.game-flex{
  display: flex;
  flex-direction: column-reverse;
}
.gap-big{
  gap: 49px;
}
.p-t{
  padding-top: 35px;
}
.playing-box{
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0 0 15px #ff1df140;
  padding: 10px;
 
  border: 12px solid #ffffff26;
  background-color: var(--colorDark);
  
  iframe{
    width: 100%;
    height: 100vh;   
    border:  0px solid #ffffff26;
  }
}
.box-page-img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  img{
      height: 400px;
      width: auto;
      object-fit: contain;
      border: 1px solid #ffffff26;
    }
}
.game-content{
  position: relative;
  z-index: 5;
  color: var(--colorWhite);
  font-size: 1.05rem;
  p{
    text-indent: 3ch;
  }
}

.card-coment{
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #00000040;
  border: 1px solid #ff1df126;
  padding: 24px 12px;
  position: relative;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 0 15px #ff1df133;
  transition: all 200ms linear;
}
.review-wrap{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-direction:  column-reverse;
}
.com-text{
  background-image: linear-gradient(45deg, #979797 2%, var(--white));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.6em;
}
.customer-info{
  display: flex;
  align-items: center;
  gap: 15px;
}
.fashionistas-photo-wrap{
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #ff1df159;
  box-shadow: 0 0 15px #ff1df166;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.name-person{
  background-image: linear-gradient(135deg, var(--main-color-001) 5%, #ecbbff 50%, #572df6 90%);
  letter-spacing: .01em;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}
.about-img-box{
  border: 1px solid var(--main-color-001);
  border-radius: 15px;
  height: 250px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 15px #ff1df166;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
}
.card-tim{
  display: flex;
  gap: 20px;
  align-items: unset;
  flex-direction: column-reverse;
  border-radius: 12px; 
  box-shadow: 0 0 25px #ff1df133;
}
.tim-avatar{
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
}
.card-tim:hover .tim-avatar img,.about-img-box:hover img{
  transform: scale(1.1);
}
.member-name{
  color: var(--white);
  font-size: 24px;
  text-align: center;
}
.flex-iner{
  display: flex;
  gap: 50px;
  flex-direction: column-reverse;
}
.bor-rad-n{
  border-radius: 0;
}
@media (max-width: 575px){
  .top-menu {
    width: 100%;
  }
  .aboutUs{
    padding: 20px 0;
  }
  .game-card{
    padding: 0;
  }
  .screamer{
    padding: 30px 10px;
  }
  .box-page-img img{
    height: auto;
  }
  .playing-box iframe {
    height: 320px;
  }
  .pad-box{
    padding: 80px 0;
  }
  .icon-box{
    display: none;
  }
}

@media (min-width: 769.99px){
  .games_item:hover .game-card{
  transform: rotate3d(1, 1, 0, 20deg);
  box-shadow: rgba(34, 36, 34, 0.2) -5px 20px 10px 0px;
}
}
@media (max-width: 768px){
 .main-block,.navigation,.logo{
  display: none;
 }
 .banner-02-info{
  width: 100%;
 }
 .btn-mob-tg{
  display: block ;
 }
 .dox-logo{
  flex: unset;
 }
 .btn-mod{
  display: flex;
 }
 .dox-logo img {
  height: 40px;
 }
 .nav-menu_item-box{
  border-bottom: 2px dashed #ffffff4d;
 }
  .screamer{
    max-width: 100%;
    animation: none;
  }
  .page-form{
    width: 100%;
  }
  .element-group{
    flex-direction: column-reverse;
  }
 
}

@media (min-width: 768px) and (max-width: 992px){
 .box-sm-12 {
     width: 100%;
  }
  .box-sm-6{
    width: 50%;
  }
  .box-sm-2{
    width: 25%;
  }
  .box-sm-4 {
    width: 33.33333333%;
  }

}

@media (max-width: 992px){ 
.flex-boxRow{
  flex-direction: column;
}
.grid-box{
  flex-direction: column-reverse;
}
.footer-flex-box{
  flex-direction: column-reverse;
}
.contact-usLK {
  flex-direction: column-reverse;
}
.flex-col{
  flex-direction: column-reverse;
}
}
@media (min-width: 992px){ 
 .box-md-4 {
      width: 33.33333333%;
  }
  .box-md-6{
    width: 50%;
  }
  .box-md-2{
    width: 25%;
  }
}
@media (max-width: 1200px){
.benefit-list{
  flex-direction: column !important;
}
}
@media (min-width: 1200px){ 
  .box-lg-12 {
     width: 100%;
  }  
.box-lg-4 {
    width: 33.33333333%;
  }
  .box-lg-6{
    width: 50%;
  }
  .box-lg-2{
    width: 25%;
  }
  .flex-boxRow {
    flex-direction: column;
  }
 
}


.pt-120{
  padding-top: 120px;
}


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

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
