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


:root {   
  --colorWhite: #fcfcfc;
  --colorDark: #212121;
  --white:#fff;
  --primary-color-1: #D4AF37; 
  --primary-color-2: #cba135; 
  --primary-color-3: #6b6b6b;
  --primary-color-4: #d8b55d; 
  --primary-color-5: #e29645; 

  --lite-bg-1:#f7e6a3;
  --lite-bg-2:#f5e3ba;
  --lite-bg-3:#ece8e4;
  --lite-bg-4:#f8e6c1;
  --lite-bg-5:#f9e8cf;

  --bag-box-1:#6a4f4b;
  --bag-box-2:#8c6a4a;
  --bag-box-3:#38454d;
  --bag-box-4:#946f4c;
  --bag-box-5:#6c4f3c;

  --hover-box-1:#906f5f;
  --hover-box-2:#a67c56;
  --hover-box-3:#4e5f68;
  --hover-box-4:#b1855d;
  --hover-box-5:#b77d4d;
 --bg-dark-1:#3e2a47;
 --bg-dark-2:#3e2a47;
 --bg-dark-3:#2e2434;
 --bg-dark-4:#47382f;
 --bg-dark-5:#3d2f38;
 --card-bg-1:#4b5a62;
 --card-bg-2:#5b4231;
 --card-bg-3:#3b4651;
 --card-bg-4:#6c5841;
 --card-bg-5:#4b3a30;

 --form-grad-1:linear-gradient(145deg, #3b3343, #6a4f4b);
  --form-grad-2:linear-gradient(145deg, #3e2a47, #6a4f4b);
  --form-grad-3:linear-gradient(145deg, #2e2434, #3b4651);
  --form-grad-4:linear-gradient(145deg, #47382f, #6c5841);
  --form-grad-5:linear-gradient(145deg, #3d2f38, #6c4f3c);

    --secondary-color: #006400; 
    --background-color: #F5F5DC; 
    --accent-color: #8B0000; 
    --color-dark: #263238;
    --color-dark-highlight: #455A64;
    --color-dark-shadow: #1a2327;

    --color-light: #CFD8DC;
    --color-light-highlight: #ECEFF1;
    --color-light-shadow: #B0BEC5;

    --color-gold: #E8A95B;
    --color-gold-highlight: #F0BB7A;
    --color-gold-shadow: #DE9945;

    --background-gradient: radial-gradient(
        ellipse farthest-side at 40% 0%,
        var(--color-dark-highlight) 0%,
        var(--color-dark) 60%,
        var(--color-dark-shadow) 100%
    );

    --gold-gradient: 
        radial-gradient(
            ellipse farthest-corner at right bottom,
            white 0%,
            var(--color-gold-highlight) 20%,
            var(--color-gold) 60%,
            transparent 80%
        ),
        radial-gradient(
            ellipse farthest-corner at left top,
            white 0%,
            var(--color-gold-highlight) 50%,
            var(--color-gold-shadow) 75%,
            var(--color-gold) 100%
        );

    --shine-gradient: linear-gradient(
        100deg,
        transparent 0%,
        transparent 6rem,
        white 11rem,
        transparent 11.15rem,
        transparent 15rem,
        rgba(255, 255, 255, 0.3) 20rem,
        transparent 25rem,
        transparent 27rem,
        rgba(255, 255, 255, 0.6) 32rem,
        white 33rem,
        rgba(255, 255, 255, 0.3) 33.15rem,
        transparent 38rem,
        transparent 40rem,
        rgba(255, 255, 255, 0.3) 45rem,
        transparent 50rem,
        transparent 100%
    );

    --flash-gradient: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        transparent 35%,
        transparent 75%,
        var(--color-gold-shadow) 100%
    );
  
  
}

body{  
  direction: ltr;
  font-family: 'Work Sans', sans-serif !important;
  font-size:  17px;
  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)
}
.buttonGam-1 {
  display: block;
  width: fit-content;
  text-align: center; 
  padding: 18px 36px;
  background: var(--accent-color); 
  color: white;
  font-size: 18px;
  font-weight: 800;
  border: none;
  border-radius: 1px;
  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: var(--primary-color-1); 
  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:  17px;  
  background: linear-gradient(145deg, #e29645, #b77d4d);
  color: #f9e8cf;
  border: none;
  padding: 10px 30px; 
  font-weight: bold;
  text-transform: uppercase;
  border-radius:  1px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.buttonGam-2:hover {
  background: linear-gradient(145deg, #b77d4d, #e29645);
  box-shadow: 0 0 18px 5px #e29645, 0 0 10px #b77d4d;
  transform: scale(1.05);
}



.buttonGam-3{
  text-align: center;
  width: fit-content;
  background: linear-gradient(145deg, #b77d4d, #e29645);
    color: #f9e8cf;
    border: none;
    padding: 10px 29px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.2s ease;
  
} 
.buttonGam-3:hover {
  background: linear-gradient(145deg, #e29645, #b77d4d);
    transform: scale(1.05);
}
.buttonGam-3::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: explode-animation 0.6s forwards;
}

.buttonGam-3:hover::after {
    opacity: 1;
    animation: explode-animation 0.6s forwards;
}

@keyframes explode-animation {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(30);
        opacity: 0;
    }
}



.buttonGam-4 {
  display: block;
  text-align: center;
  width: fit-content;
  background: #4b3a30;
  color: #f9e8cf;
  border: 2px solid #6c4f3c;
  padding:  10px 29px;
  font-size:  18px;
  font-weight:800;
  text-transform: uppercase;
  border-radius: 1px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease;
  
}
.buttonGam-4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}



.buttonGam-4:hover {
  background: #6c4f3c;
}
.buttonGam-4:hover::after {
   opacity: 1;
}


.buttonGam-5 {
  width: fit-content;
  display: block;
  text-align: center;
  background: linear-gradient(145deg, #3d2f38, #6c4f3c);
  color: #f9e8cf;
  border: none;
  padding: 17px 25px;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.buttonGam-5 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

.buttonGam-5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
  transition: all 0.3s ease;
}
.buttonGam-5:hover span {
  transform: translateX(10px);
}
.buttonGam-5:hover::before {
  width: 100%;
  left: 0;
}

.aztec-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--primary-color-2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.containerGameS{
  width: 100%;
  padding-left: 13px;
  padding-right: 13px;
  margin-left: auto;
  margin-right: auto;
}
.logo img {
  height: 51px;
}

.nav-links {  
  display: flex;
  gap:  22px;
}

.nav-links a {  
  color: var(--background-color);
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--background-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}
.nav-toggle.active {
  transform: rotate(180deg);
}

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

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 183px 0  92px;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  inset: 0%;
  background-size: cover;
  background-position: center;
}

.background {
  background-image: url(artisticstorage/back/bg-light-068b99e244fdee.jpg);
  z-index: 1;
  transform: translateY(0);
  animation: zoomIn 10s ease forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.midground{
  background-color: #212121ab;
  z-index: 1;
}


.foreground {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  align-items: center;
  color: #fff;
  text-align: center;
  transform: translateY(0);
  
}

@keyframes shine {
  0% {
      background-position: -50rem 0;
  }
  25% {
      background-position: -50rem 0;
  }
  100% {
      background-position: 30rem 0;
  }
}

@keyframes flash {
  0%, 40%, 90% { opacity: 0; }
  10%, 100% { opacity: 1; }
}


.gold-text {
  font-family: 'Alegreya', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 6rem);
  word-spacing: 0.1em;
  display: inline-block; 
  padding: 0;
  line-height: 1;
  color: transparent;
  background-color: var(--color-gold);
  background-image: var(--gold-gradient);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  margin: 0 0 0.5rem 0;
  position: relative;
  overflow-wrap: break-word; 
}

.gold-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-gold);
  z-index: -1;
  text-shadow:
    0 -1px 0 rgba(255, 225, 183, 0.75),
    0 1px 0 rgba(0, 0, 0, 0.75),
    0 2px 0 rgba(0, 0, 0, 0.7),
    0 3px 0 rgba(0, 0, 0, 0.65),
    0 4px 0 rgba(0, 0, 0, 0.55),
    0 4px 2px rgba(0, 0, 0, 0.55),
    0 0.075em 0.1em rgba(26, 35, 39, 0.3),
    0 0.15em 0.3em rgba(222, 153, 69, 0.2);
}

.gold-text__highlight::after,
.gold-text__highlight::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.gold-text__highlight::after {
  z-index: 1;
  background-image: var(--shine-gradient);
  background-clip: text;
  background-size: 60rem 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  animation: shine 4s linear infinite alternate both;
}

.gold-text__highlight::before {
  z-index: 2;
  color: transparent;
  background-image: var(--flash-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  animation: flash 4s linear infinite alternate both;
}

.hero-text {
  color: var(--white);
  text-shadow: 2px 2px 2px rgba(255, 0, 82, .9);
  font-size: 1.5rem;
}


.blok-rel{
  position: relative;
  z-index: 2;
}

.hero-wrapper-flex{
  overflow: hidden;
  display: flex;
  gap: 25px;
  align-items: center;
  flex-direction: row-reverse;
}
.el-flex-big{
  flex: 2;
}
.el-flex{
  flex: 1;
}
.hero-content{
  display: flex;
  flex-direction: column;
  gap: 18px;
  
}
.hero-title{
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 5rem);
  color: #e0b25e; 
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 6px;
  position: relative;
  display: inline-block;
  animation: flicker 0.7s infinite alternate, scaleUp 0.5s ease-out;
}
.persp{
perspective: 1000px;
}
.hero-img-box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 292px;
  padding: 18px;
  margin-bottom: 18px;  
  transform: rotateY(+10deg) rotateX(5deg); 
  transition: transform 0.5s ease; 
  background-color: #d4af3757;
  backdrop-filter: blur(6px); 
  clip-path: polygon(8% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 12%);
  img{
    height: 100%;
    width: auto;
    object-fit: contain;
    
  }
}
.hero-img-box:hover {
  transform: rotateY(+15deg) rotateX(10deg); 
}

@keyframes flicker {
  0% {
    text-shadow: 0 0 5px rgba(255, 223, 0, 0.8), 0 0 10px rgba(255, 223, 0, 1);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 223, 0, 1), 0 0 20px rgba(255, 223, 0, 1), 0 0 25px rgba(255, 223, 0, 0.7);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 223, 0, 0.8), 0 0 15px rgba(255, 223, 0, 1);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.panelHidden{
  display: none;
}
.panelVisible{
  display: none;
}
.pad-sectionDF{
  padding: 66px 0;
}
.section-with-border{ 
  position: relative;  
  
}
.section-with-border::before,
.section-with-border::after {
  content: '';
  position: absolute; 
  left: 0;
  height: 36px;
  width:100%; 
  background: url(artisticstorage/other-dir/borders_long-068b99e244ff64.png) repeat center center;
  background-size: contain; 
}
.section-with-border::before {
   top: 0;
   transform: rotate(180deg);
}

.section-with-border::after {
  bottom: 0;
}
.lit-bg{
  background-color: var(--lite-bg-2);
}
.row{
  margin-left: -13px;
  margin-right: -13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.box {
  width: 100%;
  flex: 0 0 auto;
  padding-left:  13px;
  padding-right:  13px;
}
.title-sectionDS{
  color: #193f4b;
}
.card-benefit{
  position: relative;
  padding: 1px;
  background-color:  #f5f7f8;
  height: 100%;
  clip-path: polygon( 10% 0, 100% 0, 100% calc(100% - 30px), calc(100% - 100px) calc(100% - 30px), calc(100% - 125px) 100%, 0 100%, 0 11%);
}
.pbmit-ihbox-box{
  display: flex;
  height: 100%;
  text-align: center;
  gap:  18px;
  color: var(--colorWhite);
  background-color:var(--bag-box-2);
  flex-direction: column;
  padding:  32px;  
  transition: all 0.5s ease-in;
  clip-path: polygon( 10% 0, 100% 0, 100% calc(100% - 30px), calc(100% - 100px) calc(100% - 30px), calc(100% - 125px) 100%, 0 100%, 0 11%);
  a{
    word-wrap: break-word;
  }
}
.card-benefit:hover .pbmit-ihbox-box{
  background-color: #906f5f;
  color: #b9f925;
}
.icon{
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: auto;
    height: 100%;
    object-fit: contain;
  }
}
.m-t{
  margin-top: 21px;
}
.box-posImg{
  position: relative;
}
.box-underImg{  
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: auto;
    height: 327px;
    object-fit: contain;
  }
}
.alt-none{
  align-items: normal;
}
.iner-box{  
  display: flex;
  flex-direction: column;
  gap:  21px;
  justify-content: space-between;
}
.section-title {  
  font-weight:800; 
  color: #4e342e; 
  text-transform: uppercase; 
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
  position: relative;
  display: block;
  padding-bottom: 18px;
  background: linear-gradient(90deg, #2e3b36, #4e342e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px; 
  left: 50%;
  transform: translateX(-50%);
  width:  95px; 
  height: 1px; 
  background-color: #4e342e; 
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); 
}
.dark-bg{
  position: relative;
  background: var(--bg-dark-2);
}
.section-bg{
  position: absolute;
  inset: 0%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.dark-bg .section-title,.box-baner-form .section-title{
  color: var(--white);
  background: linear-gradient(90deg, #f9fbfa, #f7e6e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
}
.dark-bg .section-title::after{
    background-color: var(--color-gold-shadow); 
}
.about-content{
  color: var(--colorWhite);
  height: 100%;
  p{
    text-indent: 3ch;
    margin-bottom: 6px;
  }
}
.m-b{
  margin-bottom: 40px;
}
.about-video{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 404px;
  clip-path: polygon( 10% 0, 100% 0, 100% calc(100% - 30px), calc(100% - 100px) calc(100% - 30px), calc(100% - 125px) 100%, 0 100%, 0 11%);
  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.games-section{
  background-color: #a8c686;
}

.games-list1{
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.iner-card-box{
  background-color:var(--card-bg-2);
  clip-path: polygon( 10% 0, 100% 0, 100% calc(100% - 30px), calc(100% - 100px) calc(100% - 30px), calc(100% - 125px) 100%, 0 100%, 0 11%);
}
.card-flex{
display: flex;
justify-content: space-between;

flex-direction: row-reverse;
}
.card-img{
  max-width: 327px;  
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   
    transform: scale(1.001);
    transition: transform 1.2s cubic-bezier(.4,.01,.14,.99);
  }
}
.card-benefit:hover .card-img img{
    transform: scale(1.05);
}
.card-content{
  display: flex;
  gap:  19px;
  justify-content: center;
  color: var(--colorWhite);
  flex-direction: column;
  padding:  51px 29px  51px  36px; 

}
.card-title{
  color: #e9c46a;
  font-size: clamp(21px, 4vw, 25px);
  text-shadow:  2px  2px  2px rgb(38 37 37 / 90%);
}
.card-meta{
display: flex;
gap:  10px;
flex-wrap: wrap;
}
.card-meta_item{
  display: flex;
  gap:  6px;
  align-items: center;
  color: var(--colorWhite);
  svg{
    flex: 0 0 auto;
    height:  18px;
    width:  18px;
    fill: var(--colorWhite);
  }
}
.fix-box{
  position: sticky;
  top: 140px;
}
.card-flex-col{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-flex-col .card-img{
  max-width:100%;
  width: 100%;
  height: 327px;
}
.footer-bg{
  padding:  32px 0 0;
  background-image: url(artisticstorage/back/opacity_bg-068b99e244fee0.png), linear-gradient(to bottom, #2a1c34, #3d274e);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-box{
  position: relative;
  background: linear-gradient(145deg, var(--primary-color-2),var(--lite-bg-2));
  clip-path: polygon(1.917% 5.887%, 3.833% 0%, 80.222% 0%, 81.472% 2.66%, 82.722% 5.319%, 100% 5.319%, 100% 100%, 0% 100%, 0% 11.791%);
 
  padding: 1px;
}
.footer-iner{
  background-color: #2a1c34; 
  color: var(--lite-bg-2);
  padding:  32px 0 0;
  clip-path: polygon(1.917% 5.887%, 3.833% 0%, 80.222% 0%, 81.472% 2.66%, 82.722% 5.319%, 100% 5.319%, 100% 100%, 0% 100%, 0% 11.791%);
}
.container{
  padding: 0 25px;
  position: relative;
  margin: 0 auto;
}
.bootom-footer{
  display: flex;
  justify-content: center;
}
.copyright-footer{
  display: inline-block;
  background: linear-gradient(145deg, var(--primary-color-2), var(--lite-bg-2));
  padding: 2px 2px 0 2px;
  clip-path: polygon(0% 0%, 94% 0%, 100% 100%, 0% 100%, 0% 100%, 6% 0%);
}
.footer-copyright-text-inner{
  background-color: #2a1c34;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px; 
  padding: 6px 32px;
  clip-path: polygon(0% 0%, 94% 0%, 100% 100%, 0% 100%, 0% 100%, 6% 0%);
}
.footer-midl{
  padding: 29px 0;
}
.footer-content-flex{
  display: flex;
  gap:  10px;
  flex-direction:   row-reverse;
}
.m-bSmol{
margin-bottom:  19px;
}
.ov-h{
  overflow: hidden;
}
.logo-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap:6px;
 font-size:  18px;
 
  img{
    width: auto;
    height:51px;
    object-fit: contain;
  }
}
.aztec-nav .logo-footer{
  color: #8b0000;
}
.footer-menu{
  display: flex;
  flex-direction: column;
  gap:  19px;
}
.footer-memu_link{
  color:#f7e6a3b6 ;
  display: block;
  text-align: center;
  transition: all 200ms linear;
}
.footer-memu_link:hover{
    color:#fce589 ;
}
.ageKL{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: auto;
    height: 126px;
    object-fit: contain;
  }
}
.footer-img{
  display: none;
}
.privacy-container{  
 word-break: break-word;
 color: var(--color-dark-highlight);
}
.privacy-container p{
  margin-bottom: 6px;
  text-indent: 3ch;
}
.privacy-container h1{
  font-weight: 800;
  text-align: center;
  margin-bottom:  20px;
}
.privacy-container h2{
  font-weight:600;
  text-align: center;
  margin-bottom:19px ;
}
.privacy-container table,.privacy-container a{
  word-break: break-word;
  color: inherit;
}
.privacy-container ul li,
.privacy-container ol li {
  margin-bottom: 4px;
}
.privacy-container ul,
.privacy-container ol {
  margin-bottom: 13px;
  padding-left:  18px;
  list-style: inside;
}
.flex-colRevHJ{
  display: flex;
  gap: 49px;
  flex-direction: column;
}

.footer-iner .disclaimer {
  display: flex;
  align-items: center;
  gap:  18px;
  justify-content: space-between;
  padding:  51px 36px;
  background: linear-gradient(145deg, var(--primary-color-2), var(--lite-bg-2));
  border:2px solid var(--primary-color-2);
 
  color: var(--bg-dark-1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  animation: glow 3s infinite alternate;
}

.disclaimer__content {
  max-width: 80%;
}

.disclaimer__title {
 justify-content: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disclaimer__icon {
  font-size: 28px;
}

.disclaimer__text {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}

.disclaimer__image img {
  max-width: 126px;
  height: auto;
  border:  1px solid var(--primary-color-2);
  border-radius:  0%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px var(--primary-color-2), 0 0 20px var(--primary-color-2);
  }
  to {
    box-shadow: 0 0 20px var(--lite-bg-2), 0 0 40px  var(--lite-bg-2);
  }
}
.section-page{
  background-color: #fde4d0;
}
.meta-page-list{
  padding:  25px;
  display: flex;
  flex-direction: column;
  
  font-size: 18px;
  background-color: var(--bag-box-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}
.meta-page-list li{
  display: flex;
  padding: 10px 0;
  border-bottom:  1px  solid #c08354;
}
.meta-page-list .card-meta_item svg {
width: 36px;
height: 36px;
}
.page-box-flex{
  display: flex;
  gap: 36px;
  flex-direction: column;
}
.game-description-area{
  color: var(--colorDark);
  font-size:18px;
  p{
    text-indent: 3ch;
  }
}
.game-description-area ul li,
.game-description-area ol li {
  margin-bottom: 4px;
}
.game-description-area ul,
.game-description-area ol {
  margin-bottom: 13px;
  padding-left:  18px;
  list-style: inside;
}
.btn-wh{
  margin: 0 auto;
}
.page-image-wrap{  
  display: flex;
  align-items: center;
  justify-content: center;
  img{
      height:327px;
      width: auto;
      object-fit: contain;
      
    }
}
.player-frame-box{
  display: flex; 
  align-items: center;
  justify-content: center;
  

  iframe{
    width: 100%;
    height:  100vh;
    border:1px  solid #c08354;  
    
  }
}
.contact-header{
  gap: 19px;
  font-size: 18px;
  display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
}
.icon-contact{
  flex:  0 0 auto;
  height: 36px;
  width: 36px;
  svg{
    width: 100%;
    height: 100%;
    fill: var(--primary-color-1);

  }
}
.line{
  width: 100%;
  height: 2px;
  background-color:#ffffff3b;
}
.baner-contact{
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(artisticstorage/back/gallery-068b99e244fea4.jpg);
  animation: zoomIn 10s ease forwards;
}
.border{
border: 2px solid var(--colorWhite);
}
.checkbox{
  display: flex;
  flex-direction: row;
  gap: 6px;
  text-align: left;
  align-items: center;
  font-size: 14px;
  color: var(--colorWhite);
}
.form-wrap{
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 51px  19px;
  color: var(--colorWhite);
  
}
.bg-op{
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(artisticstorage/back/opacity_bg-168b99e244ff0a.png), linear-gradient(145deg, #5c4a3d, var(--bag-box-2));
}
.form-group{
  display: flex;
  flex-direction: column;
  gap:  19px;
}
.form-label{
  color: #fff;
  font-weight: 600;
}
.form-input,.form-textarea,.input-maincolumn--component,.textarea-maincolumn--component{
  width: 100%;
  padding: 10px  19px;
  color: #fff;  
  border: 2px solid #c08354;
  background: #4e342eba;
  backdrop-filter: blur(7px);
}
.form-group textarea{
  min-height: 126px;
}
.form-bf-img{
  background: var(--form-grad-2) 
}

.box-baner-form{
  position: relative;
  padding: 66px  36px;
  background-color: var(--primary-color-2);
 
}
.connent-flex{
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}
.icon-coment{
  width: 40px;
  height: 40px;
  flex:0 0 auto;
  svg{
    width: 100%;
    height: 100%;
    fill: var(--white);
  }

}
.comment-mag{
  margin-top:  40px;
}
.coment-title{
   font-size: clamp(21px, 3vw, 25px);
}
.comment-content{
  display: flex;
  gap: 19px;
  text-align: start;
  font-size: 18px;
  flex-direction: column;
  span{
    color: #e9c46a;
    font-size: 13px;
    font-weight: 600;
  }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat( 4, 1fr);
    gap: 18px;
    justify-items: center;
    align-items: center;
}


.gallery-item {
    position: relative;
    overflow: hidden;    
    transition: clip-path 0.4s cubic-bezier(.4,.01,.14,.99), transform 0.3s cubic-bezier(.4,.01,.14,.99), box-shadow 0.3s cubic-bezier(.4,.01,.14,.99);
    width: 100%;
    max-width: 327px;
    aspect-ratio: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Изначально прямоугольник */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.4,.01,.14,.99);
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0  10px 18px rgba(0, 0, 0, 0.5);
}


.gallery-item.trapezoid:hover {
    clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}

.gallery-item.triangle:hover {
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.gallery-item.hexagon:hover {
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.gallery-item.circle:hover {
    clip-path: circle(50%);
}
@media (prefers-reduced-motion: reduce) {
  .parallax-image {
    animation: none;
    transform: translateX(0);
  }
}
@media (max-width: 575px){
  .foreground{
    gap: 21px;
  }
  .hero-text{
    font-size: 1.06rem;
  }
  .hero{
    padding: 150px 0 95px;
  }
  .pbmit-ihbox-box{
    padding:  25px 13px  36px;
  }
  .card-flex{
    flex-direction: column;
  }
  .card-img{
    max-width: 100%;
    height: 250px;
    width: 100%;
  }
  .card-content {
    width: 100%;
  }
  .ageKL img {
    height: 100px;
  }
  .meta-page-list{
    padding-left: 13px;
    padding-right: 13px;
  }
  .meta-page-list{
    font-size: 13px;
  }
  .page-image-wrap img{
    height: auto;
  }
  .aztec-nav {
   padding: 1rem 1rem;
   gap: 6px;
  }
  .gallery-grid{
      grid-template-columns: repeat(1, 1fr);
  }
    
}
@media (min-width: 575px) and (max-width: 992px){
  .gallery-grid{
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f95234;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
  }

  .nav-links.active {
      display: flex;
  }

  .nav-toggle {
      display: flex;
  }
 .card-content{
  padding: 50px 13px 63px 13px;
 }
 .footer-content-flex{
  flex-direction: column;
 }
 .footer-iner .disclaimer{
  flex-direction: column;
  
 }
 .disclaimer__content {
  width: 100%;
  max-width: 100%;
 }
 .box-baner-form{
  padding: 36px 10px;
  
 }
 
}

@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){ 
.persp{
  display: none;
}
.hero-content{
  align-items: center;
}
.hero-title{
  animation: none;
}
.hero-wrapper-flex{
  flex-direction: column;
  align-items: normal;
}
.geme-col{
  flex-direction: column-reverse;
}
.container {
  padding: 0 13px;
}
.footer-iner .disclaimer{
  padding-left: 13px;
  padding-right: 13px;
}
.meta-page-list li{
  justify-content: center;
  border: none;
}
}
@media (min-width: 992px){ 
 .containerGameS {
      max-width: 960px;
  }
  .md-element{
    display: none;
  }
  .box-md-12 {
      width: 100%;
  }
  .box-md-4 {
      width: 33.33333333%;
  }
  .box-md-6{
    width: 50%;
  }
  .box-md-2{
    width: 25%;
  }
}

@media (min-width: 1200px){ 
  .aztec-nav{
    max-width: 1024px;   
    left: 50%;
    transform: translateX(-50%);
  }
  .aztec-nav::after,.aztec-nav::before{
  content: '';
  position: absolute;
  top: 0;  
  width: 0;
  height: 0;   
  border-top: 83px solid var(--primary-color-2);
  z-index: -1;
  }
  .aztec-nav::after{
    left: -69px;
    border-left: 70px solid transparent;
  }
  .aztec-nav::before{
    right: -69px;
    border-right: 70px solid transparent;
  }
  .containerGameS {
   max-width: 1230px;    
}
.box-lg-12 {
     width: 100%;
  }  
.box-lg-4 {
    width: 33.33333333%;
  }
  .box-lg-6{
    width: 50%;
  }
  .box-lg-2{
    width: 25%;
  }  
 
}


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


.footer-logos {
    display: flex;
    justify-content: center; 
    align-items: center;
   flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  
  .footer-logos a img {
    max-height: 50px;
    width: auto;
    display: block;
  }