@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

:root{
    --o-1: #F76D1F;
    --o-2: #38f71f;
    --o-3: #f71f1f;
    --o-4: #f71f8f;
    --o-5: #eeee11;
    --accent: var(--o-2);
    --ob-1: #f0945f8e;
    --ob-2: #70ea608e;
    --ob-3: #eb6e6e8e;
    --ob-4: #fd8fc88e;
    --ob-5: #ffff9f8e;
    --bg: var(--ob-2);
    --white: #ffffff;
    --black: #17161a;
    --transition: 0.4s ease-out;
    --extra-dark: rgba(13, 15, 18);
}

html {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  box-sizing: border-box;
  font-family: 'Catamaran', sans-serif !important;
  font-size: 16px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
}


a{
  text-decoration: none;
}

p {
  margin-bottom: 12px;
 
}

ul, ol {
  margin-bottom: 12px;
  padding-left:  20px;
}

li {
  margin-bottom: 7px;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 1.1rem;
}

.module{
  padding: 65px 0;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right:  12px;
  padding-left:  12px;
  box-sizing: border-box;
}

.row-2,
.row-3,
.row-4,
.row-5{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 20px;
}

.col-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.nav{
  background-color: var(--bg);
  position: relative;

  
    &::before{
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('artisticstorage/bg/opacity_bg-06908d3a1ca6e1.png');
      background-repeat: repeat;
      background-size: contain;
      background-position: center;
      z-index: 1;
    }

    .wrapper{
      position: relative;
      z-index: 2;
    }
}

.menu{
  width: 27px;
  height:  19px;
  position: relative;;
  cursor: pointer;

  span {
    height: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    background: var(--black);
    display: inline-block;
    width: 100%;
    position: absolute;
    content: "";
  }

  span:first-child {
    top: 0;
  }

  span:nth-child(2) {
    top: 52%;
    transform: translateY(-50%);
  }

  span:last-child {
    bottom: 0;
  }

  &.nav-active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 9px);
    -ms-transform: rotate(45deg) translate(3px, 9px);
    transform: rotate(45deg) translate(3px, 9px);
  }

  &.nav-active span:nth-child(2) {
    opacity: 0;
  }

  &.nav-active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -9px);
    -ms-transform: rotate(-45deg) translate(3px, -9px);
    transform: rotate(-45deg) translate(3px, -9px);
  }
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  justify-content: center;

  img{
    width: 71px;
    height: 71px;
    object-fit: contain;
    transition: var(--transition);
  }

  h1{
    color: var(--black);
    transition: var(--transition);
    margin: 0;
    font-family: 'Teko', sans-serif;
  }

  &:hover h1,
  &:focus h1{
    filter: drop-shadow(3px 3px 10px var(--accent));
  }

  &:hover img,
  &:focus img{
    filter: drop-shadow(3px 3px 10px var(--accent));
  }
}

.nav-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-item{
  a{
    color: var(--black);
    transition: var(--transition);
    margin: 0;
    font-weight: 700;
    font-family: 'Teko', sans-serif;
      
    &:hover,
    &:focus{
      filter: drop-shadow(3px 3px 10px var(--accent));
    }
  }
}

.nav-wr{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  justify-content: space-between;
  padding: 12px 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    height: 618px; 
    width: 100%;
    border-radius:  20px;
    background-color: var(--bg);
    position: relative;

  
    &::before{
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('artisticstorage/bg/opacity_bg-16908d3a1ca705.png');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      z-index: 1;
    }
}

.slider {
    position: absolute;
    width: 100%;
    height: 618px; 
    transition: transform 1s ease-in-out;
    z-index: 2;
}

.slide {
    width: 100%;
    height: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding: 27px 50px;
}

.slider-img{
  width: 100%;
  height:  276px;
  position: relative;

  &::before{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 10px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
  }
  &::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 335px;
    height: 335px;
    background-color: var(--accent);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
  }

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    filter: drop-shadow(2px 2px 2px var(--black));
  }
}

.slide-item{
  width: 100%;
}

.slider-img-wr{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 20px;
}


.slider-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap:  12px;
    z-index: 2;
}

.nav-dot {
    width:  12px;
    height:  12px;
    background-color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: var(--accent); 
}

.banner-text{
  font-size: 19px;
}

.liders-module{
  background-color: var(--bg);
  position: relative;
  overflow: hidden;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-26908d3a1ca724.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.liders-wrapper{
  position: relative;
  perspective: 1000px;
  width: 100%;
  min-height: 350px;
}

.liders {
  position: absolute;
  transition: transform 0.1s ease;
  background-color: var(--white);
  width: 100%;
  height: fit-content;
  padding:  20px;
  border-radius: 19px;
  filter: drop-shadow(3px 3px 10px var(--accent));
}

.liders-list{
  display: flex;
  flex-direction: column;
}

.liders-item{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-bottom:1px  dashed var(--accent);
  padding: 12px;
}

.liders-item:last-child{
  border-bottom: none;
}

.title{
  font-size: 24px;
  line-height: 1.3;
  font-weight:800;
  text-transform: capitalize;
  color: var(--accent);
  text-shadow: 0.5px 0.5px 0.5px var(--black), -0.5px -0.5px 0.5px var(--black);
  margin-top: 0;
  margin-bottom: 27px;
}

.liders-avatar{
  width: 56px;
  height: 56px;
  border-radius: 0%;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.liders-score{
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0.5px 0.5px 0.5px var(--black), -0.5px -0.5px 0.5px var(--black);
}

.main1-box{
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background-color: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  filter: drop-shadow(3px 3px 10px var(--accent));
  transition: var(--transition);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-36908d3a1ca743.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    border-radius: 19px;
  }

  &:hover,
  &:focus{
     transform: rotate3d(1, 1, 1, -5deg);
  }
}

.main1-img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 250px;
  border-radius:  12px;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);

    &:hover,
    &:focus{
      transform: scale(1.03) rotate(5deg);
      filter: drop-shadow(3px 3px  12px var(--accent));
    }
  }
}

.main1-title{
  position: relative;
  z-index: 2;
  font-weight: 800;
  color: var(--white);
  display: inline-block;
  transition: var(--transition);
  text-shadow: 0.5px 0.5px 0.5px var(--black), -0.5px -0.5px 0.5px var(--black);

  &:hover,
  &:focus{
    transform: translateX(5px);
    filter: drop-shadow(3px 3px 10px var(--accent));
  }
}

.game-content2{
  position: relative;
  z-index: 2;
}

.main-btn{
  position: relative;
  z-index: 2;
}

.main2{
  .col-3{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
}

.main2-box{
  width: 276px;
  height: 276px;
  border-radius: 0%;
  overflow: hidden;
  padding: 12px;
  border: 7px solid var(--accent);
  display: inline-block;
  position: relative;

  &::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    background: #11111185;
    transition: var(--transition);
    opacity: 1;
    z-index: 1;
  }

  &:hover::after,
  &:focus::after{
    opacity: 1;
  }

  &:hover .game-desc2,
  &:focus .game-desc2{
    opacity: 1;
  }

  &:hover .main2-img img,
  &:focus .main2-img img{
    transform: scale(1.02);
  }
}

.main2-img{
 width: 100%;
 height: 100%;
  
  img{
    transition: var(--transition);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0%;
    filter: drop-shadow(2px 2px 2px var(--black));
  }
}

.game-desc2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 27px;
  transition: var(--transition);
  opacity: 1;
  z-index: 2;
}

.game-content2{
  text-align: center;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.game-title2{
  background-color: var(--accent);
  color: var(--white);
  font-weight:800;
  display: inline-block;
  font-size: 19px;
  text-align: center;
  letter-spacing: 1.2px;
  transition: var(--transition);
  padding: 12px  20px;
  text-shadow: 0.5px 0.5px 0.5px var(--black), -0.5px -0.5px 0.5px var(--black);

  &:hover,
  &:focus{
    transform: scale(1.03);
  }
}

.stat{
  background-color: var(--bg);
  position: relative;
  overflow: hidden;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-36908d3a1ca743.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
  
}

.stat-col{
  position: relative;
  perspective: 1000px;
  width: 100%;
  min-height: 110px;
}

.stat-item {
  position: absolute;
  transition: transform 0.1s ease; 
  padding: 20px;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  filter: drop-shadow(3px 3px 10px var(--accent));

  h3{
    text-align: center;
    margin: 0;
  }
}

.stat-number{
  margin: 0;
  font-size: 56px;
  font-weight:800;
  color: var(--accent);
  text-shadow: 0.5px 0.5px 0.5px var(--black), -0.5px -0.5px 0.5px var(--black);
}

.col-reverse{
  display: flex;
  flex-direction: column-reverse;
}

.video-form-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.au-text ul li,
.au-text ol li {
  margin-bottom: 4px;
}
.au-text ul,
.au-text ol {
  margin-bottom: 15px;
  padding-left:  19px;
  list-style: inside;
}
.au-text a,.au-text table{
color: inherit;
}
.au-text p{

text-indent: 2ch;
}

.video-form{
  width: 276px;
  height: 276px;
  border-radius: 0%;
  border: 7px solid var(--accent);
  padding: 12px;
  overflow: hidden;

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0%;
  }
}

.form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-page-form-item{
  width: 100%;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-custom--section__section,
.textarea-custom--section__section{
  width: 100%;
  box-sizing: border-box;
  padding: 15px 19px;
  border-radius: 12px;
  border: none;
  outline: none;
  filter: drop-shadow(3px 3px 3px var(--accent));
  background-color: var(--white);
  transition: var(--transition);

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 13px var(--accent));
  }
}

.privacy{
  display: inline-block;
  color: var(--accent);
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--black);
    filter: drop-shadow(3px 3px 13px var(--accent));
  }
}

.faq-col{
  position: relative;
  perspective: 1000px;
  width: 100%;

}

.faq-item {
  position: absolute;
  transition: var(--transition); 
  padding: 12px;
  background-color: var(--white);
  width: 100%;
  min-height:171px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  filter: drop-shadow(3px 3px 7px var(--accent));

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 13px var(--accent));
  }

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-56908d3a1ca761.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    opacity: 0.5;
  }
}

.faq-q{
  text-align: center;
  font-weight:700;
  position: relative;
  z-index: 2;
}

.faq-a{
  text-align: center;
  color: #17161acc;
  position: relative;
  z-index: 2;
}

.footer{
  background-color: var(--accent);
  padding: 27px 0;
}

.disclaimer-box{
  border-radius: 19px;
  border: 7px solid var(--white);
  padding:  12px;
  background-color: var(--accent);
  max-width: 1000px;
  margin: 0 auto;
  animation: pulse 2s infinite;
  margin-bottom: 27px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7), -2px -2px 5px rgba(255, 255, 255, 0.7);;
  }
  50% {
    transform: scale(1.03);
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.7), -2px -2px 15px rgba(255, 255, 255, 0.7);;
  }
  100% {
    transform: scale(1);
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7), -2px -2px 5px rgba(255, 255, 255, 0.7);;
  }
}

.discl-wr{
  position: relative;
  background-color: var(--white);
  padding: 27px;
  border-radius:  12px;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-66908d3a1ca77f.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    opacity: 0.5;
  }
  
}

.title-disclaimer{
  color: var(--black);
  font-weight:800;
  font-size: 19px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.disclaimer-text{
  text-align: center;
  color: var(--black);
  position: relative;
  z-index: 2;
}

.footer-logo-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  .logo{
    text-align: center;

    &:hover h1{
      color: var(--white);
      filter: drop-shadow(3px 3px 7px var(--black));
    }
  }
}

.footer-nav-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-nav{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-item{
  a{
    color: var(--black);
    transition: var(--transition);
    display: inline-block;
    filter: drop-shadow(3px 3px 7px var(--white));

    &:hover,
    &:focus{
      color: var(--white);
      filter: drop-shadow(3px 3px 7px var(--black));
    }
  }
}

.copyright-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 19px;
}

.copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 7px;

  p{
    margin: 0;
    color: #ffffff;
  }
}

.disclaimer-img{
  width: 71px;
  height: 71px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}


.gallery{
  direction: ltr !important;
  position: relative;
  background-color: var(--bg);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-76908d3a1ca79d.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }

  .row-2{
      align-items: center;
    gap: 12px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 56px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  width: 80%;
  max-width: 792px;
 display: block; 
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 35px;
  right: 35px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.prevImg,
.nextImg {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--white);
  font-weight: 800;
  font-size:  19px;
  transition: 0.6s ease;
  border-radius: 0 4px 4px 0;
  user-select: none;
}

.nextImg {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prevImg:hover,
.nextImg:hover {
  color: var(--accent);
}

.gallery-item{
  width: 100%;
  height: 276px;
  border: 7px solid var(--accent);
  border-radius:  12px;
  padding:  12px;
  transition: var(--transition);
  cursor: pointer;
  background-color: var(--white);

  &:hover,
  &:focus{
    box-shadow: 1px 10px 15px 0px var(--accent);
  }

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
  }

  &:hover img,
  &:focus img{
    transform: scale(1.03);
  }
}

.au-img-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.au-img{
  width: 270px;
  height: 270px;
  border-radius:0%;
  border:  7px solid var(--accent);
  padding: 12px;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:0%;
  }
}

.contact-module{
  position: relative;
  overflow: hidden;
  background-color: var(--bg);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-86908d3a1ca7bb.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.contact-page-wr{
  width: 270px;
  height: 270px;
  border-radius: 0%;
  border: 7px solid var(--accent);
  padding: 12px;
  overflow: hidden;
  background-color: var(--white);
}

.contact-page-item{
  height: 100%;
  width: 100%;
  background-color: var(--bg);
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.03);
  }

  a{
    word-break: break-all;
    color: var(--black);
    transition: var(--transition);
    font-weight:700;
    text-align: center;
    filter: drop-shadow(3px 3px 7px var(--white));

    &:hover,
    &:focus{
      color: var(--white);
      filter: drop-shadow(3px 3px 7px var(--black));
    }
  }
}

.adres{
  text-align: center;
}

.box-iframe{
  width: 100%;
  height:  100vh;
  border: 7px solid var(--accent);
  padding:  12px;
  border-radius: 19px;
  background-color: var(--white);

  iframe{
    border: none;
    border-radius:  12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.map{
  width: 100%;
  height:  395px;
  border: 7px solid var(--accent);
  padding:  12px;
  border-radius: 19px;
  background-color: var(--white);

  iframe{
    border: none;
    border-radius:  12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-module{
  position: relative;
  background-color: var(--bg);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artisticstorage/bg/opacity_bg-96908d3a1ca7d8.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.page-img-wr{
  width: 100%;
  border-radius: 19px;
  border:  7px solid var(--accent);
  padding:  12px;
  background-color: var(--white);
  
}

.page-img{
  width: 100%;
  height: 350px;
  background-color: var(--bg);
  border-radius: 12px;
  padding:  21px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.rewFlexUO{
  display: flex;
  flex-direction: column-reverse;
}
.gapTVV{
  gap: 48px;
}

.privacy-content{
word-break: break-word;
}
.privacy-content ul li,
.privacy-content ol li {
  margin-bottom: 4px;
}
.privacy-content ul,
.privacy-content ol {
  margin-bottom: 15px;
  padding-left:  19px;
  list-style: inside;
}
.privacy-content a,.privacy-content table{
color: inherit;
}
.privacy-content p{
margin-bottom:  7px;
text-indent: 2ch;
}

@media (max-width: 480px){
  .menu{
    margin: 0 auto;
  }
  .page-img{
    height: auto;
  }
}

@media (max-width: 576px) {
.slide{
  padding: 19px;
}
}
@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .row-5{
    flex-direction: row-reverse;
  }

  .col-5{
    width: calc(50% - 20px);
  }

  .banner-text{
    font-size: 24px;
  }

  .title{
    font-size: 28px;
    line-height:1.3;
  }

  .liders-item{
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .liders {
    padding: 27px;
  }

  .main1-title{
    font-size: 26px;
  }

  .main2-box{
    width: 335px;
    height: 335px;
  }

  .game-title2{
    font-size: 19px;
  }

  .au-img,
  .video-form{
    width: 335px;
    height: 335px;
  }
}

@media (min-width: 768px){
  .wrapper {
    max-width: 720px;
  }

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 20px);
  }
 
  .col-5{
    width: calc(33.333% - 20px);
  }

  .slider-nav {
    top: 50%;
    right: 20px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
}

.nav-dot.active {
    background-color: var(--accent); 
    height: 30px;
    border-radius: 12px;
    border: 1px solid var(--black);
}

.nav-dot {
    width: 5px;
    height: 20px;
    border-radius: 12px;
}
  
  .banner-text{
    font-size: 26px;
  }

    .liders {
    padding: 41px;
  }

  .title{
    font-size: 36px;
    line-height: 1.4;
  }

  .liders-avatar{
    width: 71px;
    height: 71px;
  }

  .main1-title{
    font-size: 28px;
  }

  .main2-box::after{
    opacity: 0;
  }
  .game-desc2{
    opacity: 0;
  }
}

@media (max-width: 991px){
  .slider-col{
    display: none;
  }
  .slider,.slider-container{
height: 395px;
  }

  .nav-list {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    position: relative;
  }

  .nav-list.nav-visible {
    max-height: 1000px;
    padding: 20px 0px;
    transition: max-height 0.5s ease, padding 0.5s ease;
    z-index: 3;
  }
}

@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .col-3{
    width: calc(33.333% - 20px);
  }

  .col-4{
    width: calc(25% - 20px);
  }
  .col-5{
    width: calc(20% - 20px);
  }

  .col-70{
    width: calc(70% - 20px);
  }

  .col-30{
    width: calc(30% - 20px);
  }

  .menu{
    display: none;
  }

  .nav{
    .wrapper{
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-direction: row;
    }
  }

  .liders{
    padding: 71px;
  }

  .liders-name{
    width: 30%;
    text-align: center;
  }

  .title{
    font-size: 48px;
    line-height: 1.5;
  }

  .main1-title{
    font-size: 32px;
  }

  .main1{
    .col-3{
      --w2-1: calc(33.333% - 20px);
      --w2-2: calc(50% - 20px);
      width: var(--w2-1);
    }
  }

  .au-img,
  .video-form,
  .main2-box{
    width: 270px;
    height: 270px;
  }

  .game-title2{
    font-size: 24px;
  }

  .form{
    padding: 20px;
  }

  .title-disclaimer{
    font-size: 24px;
  }

  .col-gallery{
    width: 50% !important;
  }

  .page-img{
    height: 395px;
  }
}


@media (min-width: 1200px){
  .wrapper {
    max-width: 1170px;
  }

  .title{
    font-size: 56px;
    line-height: 1.5;
  }

  .main1{
    .col-3{
      --w1: calc(33.333% - 20px);
      --w2: calc(25% - 20px);
      width: var(--w1);
    }

    .col-3:first-child,
    .col-3:last-child{
      --w3-1: calc(33.333% - 20px);
      --w3-2: calc(50% - 20px);
      width: var(--w3-1);

      .main1-img{
        --wh-1: 250px;
        --wh-2: 400px;
        height: var(--wh-1);
      }
    }
  }

  .au-img,
  .video-form,
  .main2-box{
    width: 335px;
    height: 335px;
  }
}

#main1{
  display:  block;
}

.main-btn,
.form-btn{
  text-align: center;
}

.button-1,
.button-3,
.button-4,
.button-5{
  .front-text{
    display: none;
  }
}
.button-1,
.button-3,
.button-4,
.button-2{
  .wave{
    display: none;
  }
}

.button-1 {
  font-size:17px;
  padding:  12px 27px;
  background-color: var(--white);
  border:3px solid var(--accent);
  border-radius:  16px;
  color: var(--accent);
  font-weight: bolder;
  transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
  box-shadow: -5px 5px 0px 0px var(--accent);
  display: inline-block;
}

.button-1:hover {
  transform: translate(5px, -5px);
}

.button-2 {
  position: relative;
  border: none;
  background: transparent;
  --stroke-color: #0303037c;
  --ani-color: rgba(95, 3, 244, 0);
  letter-spacing: 3px;
  font-size: 16px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--stroke-color);
  cursor: pointer;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

  .button-2:hover,
  .button-2:focus {
    width: 100%; 
    border-bottom: 1px solid var(--accent);
    opacity: 0.7;
  }

  .front-text{
    display: none;
  }

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

  50% {
    background-position: 400%;
  }

  100% {
    background-position: 0%;
  }
}

.button-3 {
  background-color: #ffeeee;
  border-radius:  4px;
  border-width: 1px;
  border-color: var(--accent);
  box-shadow: rgba(254, 83, 83, 0.2) 0 2px 4px, rgb(254 83 83 / 15%) 0 7px 13px -3px, #f7d7d7 0 -3px 0 inset;
  box-sizing: border-box;
  color: var(--accent);
  cursor: pointer;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding:  12px 24px;
  transition: box-shadow 0.15s, transform 0.15s;
  font-size: 16px;
  display: inline-block;
}

.button-3:focus {
  outline: none;
  box-shadow: #e7d6d6 0 0 0 1.5px inset, rgba(254, 83, 83, 0.4) 0 2px 4px, rgba(254, 83, 83, 0.3) 0 7px 13px -3px, #e7d6d6 0 -3px 0 inset;
}

.button-3:hover {
  box-shadow: rgba(254, 83, 83, 0.3) 0 4px 8px, rgba(254, 83, 83, 0.2) 0 7px 13px -3px, #e7d6d6 0 -3px 0 inset;
  transform: translateY(-2px);
}


.button-4 {
  display: inline-block;
  border: 3px solid var(--accent);
  padding: 12px;
  background-color: #212121;
  color: white;
  font-weight:  700;
  font-size: 17px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-radius:4px;
}

.button-4::before {
  content: "";
  z-index: -1;
  -webkit-transform: translateY(-100%) translateX(-100%);
  -ms-transform: translateY(-100%) translateX(-100%);
  transform: translateY(-100%) translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: var(--accent);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.button-4:hover::before {
  -webkit-transform: translateY(0) translateX(0);
  -ms-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.button-4:hover::after {
  -webkit-transform: translateY(100%) translateX(100%);
  -ms-transform: translateY(100%) translateX(100%);
  transform: translateY(100%) translateX(100%);
}

.button-5 {
  padding: 19px 37px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  border-radius: 27px;
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.5);
  width: auto; 
}

.button-5:hover .wave {
  top: -120px;
}

.button-5 span {
  position: relative;
  z-index: 1;
  color: black;
  letter-spacing: 3px;
  font-weight:700;
}

.wave {
  width: 100%; 
  height: 200px;
  background-color: var(--accent);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: -70px;
  transition: 0.4s;
}

.wave::before,
.wave::after {
  width: 200%; 
  height: 200%;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
}

.wave::before {
  border-radius: 45%;
  background-color: #a4a415;
  animation: wave 5s linear infinite;
}

.wave::after {
  border-radius: 40%;
  background-color: rgba(20, 20, 20, 0.5);
  animation: wave 10s linear infinite;
}

@keyframes wave {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -75%) rotate(300deg);
  }
}
@media (max-width: 767px) {
  .row-4 {
    justify-content: center;
    align-items: center;
  }
  .col-4 {
    width: fit-content;
  }
}


.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;
    }
  }
}

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