@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

:root{
  --bg-1: #0A0A0A;
  --bg-2: #1A1A1A; 
  --bg-3: #2A2A2A; 
  --bg-4: #3A3A3A; 
  --bg-5: #4A4A4A; 

--bg-main:var(--bg-1);
--ov-1: rgba(10, 10, 10, 0.8);
--ov-2: rgba(26, 26, 26, 0.8);
--ov-3: rgba(42, 42, 42, 0.8); 
--ov-4: rgba(58, 58, 58, 0.8); 
--ov-5: rgba(74, 74, 74, 0.8);
--ov-main:var(--ov-1);
--card-1: #007BFF; 
--card-2: #28A745; 
--card-3:  #FFC107; 
--card-4: #ff8a46; 
--card-5: #6F42C1;

--card-main:var(--card-1);

--pg-card-15-18:16px;
--pg-card-18-22:20px;
--pg-card-12-14:14px;
--margin25:24px 0px;
--sec-padd:45px 0px;
--border-r:25px;
  --white:white;
  --black:black;
  --gap-25-30: 25px;
  --gap-30-40:39px;


}

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

::-webkit-scrollbar {
  width: 13px; 
}

::-webkit-scrollbar-thumb {
  background:var(--card-grad-main);
  border-radius: 10px; 
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /
}


.footer-linkImg {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-linkImg a img {
  max-height: 50px;
  width: auto;
  display: block;
  box-sizing: content-box;
}
@media (max-width: 575px){
  .footer-linkImg a img{
        max-height: 30px;
  }}
*, *:before, *:after {
  box-sizing: inherit;
}

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

button{
  border: none;
  cursor: pointer;
}
ol, ul {
  list-style: none;
}

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

body{
background-color: var(--bg-main);
  overflow-x: hidden;
  line-height: 1.4;
  direction: ltr;
  font-family: 'Roboto Slab', sans-serif !important;
  font-size: 17px;
  margin: 0;
  padding: 0px;
}
ul,li{
  padding: 0px;
  margin: 0px;
  list-style: none;
}
p,li{
  padding: 5px 0px;
}
p{
  font-weight: 600;
}
a{text-decoration: none;
  transition: all 0.3s ease;
}

img{
  width: 100%;
  display: block;
}
.box-title-gm09{
  display: flex;
  margin: var(--margin25);
  justify-content: flex-start;
}
.title-gm09{
  color: var(--white);
  display: inline-block;
  font-size:clamp(22px,4vw,36px);
text-align: center;
text-shadow: 0 0 5px var(--card-main), 0 0 10px var(--card-main), 0 0 20px var(--card-main), 0 0 40px var(--card-main);
  font-weight: bold;
  padding: var(--pg-card-12-14) 5px;
 
}
.container-gm09{
  position: relative;
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
  box-sizing: border-box;
}

#games1-dm09{
  display: block;
}

.container-menu-gm09{
 padding: 25px;
}
.menu-container-gm09 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0e0e0e;
  backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: var(--border-r);
  border: 1px solid var(--card-main);
  flex-direction: row-reverse;
}
@media (max-width:575px) {
  .menu-container-gm09{
    flex-direction: column;
  }
}

.link-logo-gm09{
  display: flex;
  gap:5px;
  align-items: center;
}
@media (max-width:575px) {
  .link-logo-gm09{
    flex-direction: column;
  }
}
.img-logo-gm09{
  width: 60px;
  height: 60px;
}
.title-hero-site-gm09{
  color: var(--white);
  font-size: clamp(21px,4vw,28px);
  font-weight: 900;
  text-shadow: 0 0 5px var(--card-main), 0 0 10px var(--card-main), 0 0 20px var(--card-main), 0 0 40px var(--card-main);
  transition: text-shadow 0.3s ease, color 0.3s ease;
  position: relative;
  cursor: pointer;
}
.title-hero-site-gm09:hover {
  color: var(--card-main);
  text-shadow: 0 0 10px var(--card-main), 0 0 20px var(--card-main), 0 0 40px var(--card-main), 0 0 80px var(--card-main), 0 0 100px var(--card-main);
}

.title-hero-site-gm09::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-main), transparent);
  top: 50%;
  left: 0;
  transform: scaleX(0);
  transform-origin: center;
  animation: flicker-ny25 0.1s infinite;
}

@keyframes flicker-ny25 {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.2;
  }
}
.img-logo-gm09 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-gm09 {
  display: flex;
  gap: 20px;
}

.nav-gm09 a {
  color: var(--black);
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-gm09 a:hover {
  color: var(--card-main);
  text-shadow: 0 0 10px var(--card-main), 0 0 20px var(--card-main), 0 0 40px var(--card-main), 0 0 80px var(--card-main), 0 0 100px var(--card-main);
  opacity: .9;

}

.burger-gm09 {
  display: none;
  cursor: pointer;
}

.burger-gm09 svg {
  fill: white;
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}
@media (max-width:575px) {
  .nav-gm09 {
    top: 210px;
  }
}
@media (min-width:576px) and (max-width:991px) {
  .nav-gm09 {
    top: 140px;
  }
}
@media (max-width: 991px) {
  .nav-gm09 {
    display: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #333;
    position: absolute;

    left: 0;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    border-radius: var(--border-r);
  }

  .nav-gm09.active-gm09 {
    display: flex;
    border: 1px solid var(--card-main);
  }

  .burger-gm09 {
    display: block;
  }

  .burger-gm09.active-gm09 .burger-icon {
    display: none; 
  }

  .burger-gm09.active-gm09 .close-icon {
    display: block; 
  }

  .close-icon {
    display: none;
  }
}

.section-hero-gm09{
  padding-left: 25px;
  padding-right: 25px;
}
.hero-container-gm09 {
  background-image: url('mediamansion/dir-bg/bg-all-0685972e577ca8.jpg'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
border-radius: var(--border-r);
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
  padding-top: 350px;
  padding-bottom: var(--pg-card-18-22); 
  color: #fff; 
  text-align: center;
}
.hidden {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.visible {
  opacity: 1;
}

.content-gm09 {
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5); 
  padding: 20px;
  border-radius: 10px; 
}
.btn-hero-dm09{
  display: flex;
  justify-content: center;
  margin: var(--margin25);
}

.section-step-dm09{
padding: var(--sec-padd);
}
.thumb-step-dm09{
  display: flex;
  justify-content: center;

}
@media (max-width:767px) {
  .thumb-step-dm09{
    flex-direction: column;
  }
}
.box-step-dm09{
  flex: 2;
  text-align: center;
}
.box-numb-dm09{
  background-color: var(--card-main);
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 5px 18px;
  display: inline-block;
}
.box-numb-dm09 p {
  color: var(--white);
  font-size: 55px;
  font-weight: 600;
  line-height: 100%;

}
.box-txt-step-dm09 p{
  color: var(--white);
 }
 .arrow-step-dm09{
  flex: 1;
  text-align: center;
 }
 @media (max-width:767px) {
  .arrow-step-dm09{
    display: none;
  }
 }
 .arrow-step-dm09 svg{
  width: 100%;
 }
.arrow-step-dm09 svg path{
stroke: var(--card-main);
}

.section-about-dm09{
  padding: var(--sec-padd);
}
.thumb-about-dm09{
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-25-30);
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width:767px) {
  .thumb-about-dm09{
    flex-direction: column-reverse;
    align-items: center;
  }
}
.box-about-dm09{
  flex: 1;
}
#about1-dm09{
  display: block;
}
.video-circle-dm09 {
  width: 100%;
  max-width: 540px; 
  aspect-ratio: 1 / 1;
  border-radius: 50%; 
  overflow: hidden; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.video-circle-dm09 video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.box-img-about-dm09{
  width: 100%;
  max-width: 540px; 
  height: auto;
 aspect-ratio: 1 / 1;
}
.box-img-about-dm09 img{
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 50%; 
}
.txt-about-dm09{
  font-size: clamp(16px,4vw,18px);
  color: var(--white);
}
.btn-about-block-dm09{
  display: flex;
  justify-content: center;
  margin: var(--margin25);
}

.section-dev-dm09{
  padding: var(--sec-padd);
}
.thumb-dev-dm09{
  position: relative;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-25-30);
}
.box-img-bg-dev-dm09{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
max-width: 520px;
}

.box-img-bg-dev-dm09 img{
  object-fit: contain;
}
@media (min-width:992px) {
  .thumb-dev-dm09{
    height: 650px;
  }
}
.circle-dm09 {
  position: relative;
  width:100%; 

  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 16px;
  color: var(--card-main);
  transition: all 0.3s ease;
}
@media (max-width:575px) {
  .circle-dm09 {
    width: 210px;
        height: 210px;
    aspect-ratio: 1 / 1;
  }
}
@media (min-width:576px) and (max-width:991px) {
  .circle-dm09{
    width: calc(50% - 30px);
    aspect-ratio: 1 / 1;
  }
}
@media (max-width:991px) {
  .circle-pos-dm09-4{
    display: none;
  }
  .circle-pos-dm09-5{
    display: none;
  }

}
@media (max-width:991px) {
  .circle-pos-dm09-7{
    display: none;
  }
  .circle-pos-dm09-8{
    display: none;
  }
  .circle-pos-dm09-9{
    display: none;
  }
}
@media (min-width:992px)  {
  .circle-dm09{ 
    position: absolute;
  }
  .circle-pos-dm09-1{
    top: 0;
    left: 10px;
    width: 152px;
    height: 152px;
  }
  .circle-pos-dm09-2{
    top: 11%;
    left: 32%;
    width: 165px;
    height: 165px;
  }
  .circle-pos-dm09-3{
    top: 5%;
    right: 10px;
    width: 240px;
    height: 240px;
  }
  .circle-pos-dm09-4{
    bottom: 0;
    left: 10px;
    width: 180px;
    height: 180px;
  }
  .circle-pos-dm09-5{
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;}
  .circle-pos-dm09-6{
    top: 18%;
    left: 56%;
    width: 160px;
    height: 160px;
  }
  .circle-pos-dm09-7{
    top: 35%;
    left: 10%;
    width: 210px;
    height: 210px;
  }
  .circle-pos-dm09-8{
    bottom: 5%;
    right: 10%;
    width: 180px;
    height: 180px;
  }
  .circle-pos-dm09-9{
    bottom: 5%;
    left: 28%;
    width: 190px;
    height: 190px;
  }
}

.circle-dm09::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
 background-image: url(mediamansion/other-dir/planets-0685972e577edd.svg);
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
  opacity: 0; 
  z-index: 0;
  transition: all 0.5s ease;
}
.circle-dm09:hover{
  color: var(--white);
}
.circle-dm09:hover::before {
  width: 200%;
  height: 200%;
  opacity: 1;
}
.box-svg-cirlce-dm09{
  width: 20px;
  height: 24px;
  flex-shrink: 0;
}
.box-svg-cirlce-dm09 svg{
  width: 100%;
  height: 100%;
}
.content-circle-dm09 {
  width: 80%;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 5px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.circle-container-games1-dm09 {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  gap:var(--gap-30-40); 
}

.circle-games1-dm09 {
  
width:270px;

  aspect-ratio: 1 / 1; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--card-main);
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #fff; 
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 
  transition: transform 0.3s ease;
}
@media (max-width:575px) {
  .circle-games1-dm09{
    height: 270px;
  }
}
@media (min-width:576px) and (max-width:1023px) {
  
.circle-games1-dm09 {
  width: calc(50% - 40px);
}
}
@media (min-width:1024px) {
  
.circle-games1-dm09 {
  width: calc(50% - 40px);
}
}
.circle-games1-dm09 img {
  position: absolute;
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  border-radius: 50%; 
  z-index: 0; 
}
.circle-games1-dm09::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5); 
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.circle-games1-dm09:hover::before {
  width: 200%;
  height: 200%;
  opacity: 1;
}

.circle-games1-dm09 span {
  font-size: clamp(18px,4vw,21px);
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-games2-gm09{
  padding: var(--sec-padd);
}
.thumb-games2-dm09{
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-25-30);
  justify-content: center;
}
.games2-dm09-card {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.box-games2-dm09{
  width: 100%;
  height: 400px;
}
@media (min-width:768px) and (max-width:1023px) {
  .box-games2-dm09 {
    width: calc(50% - 30px);
  }
}
@media (min-width:1024px)  {
  .box-games2-dm09 {
    width: calc(33.33% - 30px);
  }
}
.games2-dm09-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.games2-dm09-card:hover {
  transform: scale(1.05);
}

.games2-dm09-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: var(--pg-card-15-18);
  box-sizing: border-box;
}
@media (max-width:767px) {
  .games2-dm09-overlay {
  opacity: 1;}
}
@media (min-width:768px) {
  .games2-dm09-card:hover .games2-dm09-overlay {
    opacity: 1;
  }
}


.games2-dm09-overlay h2 {
  font-size:24px;
  margin-bottom: 10px;
}

.games2-dm09-overlay p {
  font-size: 1em;
}

.section-benef-gm09{
  padding: var(--sec-padd);
}


.thumb-benef-gm09 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-30-40);
  justify-content: center;
}
.box-benef-gm09 {
  border-radius: var(--border-r);
  width: 100%;
  padding: var(--pg-card-12-14);
  transition: all 0.3s ease-in-out;
}
.box-benef-gm09:hover{
  background-color: var(--card-main);
}
@media (min-width:768px) {
  .box-benef-gm09 {
    width: calc(50% - 40px);
  }
}
.block-benef1-dm09{
  background-color: var(--card-3);
}
.block-benef2-dm09{
  background-color: var(--card-4);
}
.box-item-benef-dm09 {
  color: var(--white);
}
.box-img-benef-dm09 {
display: flex;
justify-content:flex-start;
  margin-bottom:45px;
}
.box-img-benef-dm09 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.section-form-gm09{
  position: relative;
  background-image: url('mediamansion/dir-bg/bg-all-1685972e577cd3.jpg'); 
  background-size: cover;
  background-position: center;
}
.section-form-gm09:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:var(--ov-main); 
  z-index: 1; }

  .backform-gm09{
    position: relative;
    z-index: 1;
  }
.box-form-gm09{
  margin: 0 auto;
  max-width:960px ;
}
.form-action-gm09{
  padding: clamp(12px, 1.25vw, 40px);

  display: flex;
  flex-direction: column;
  border-radius: 10px;
}
.form-action-gm09 label {
  color: var(--white);
  margin: 5px 0px;
}
.input-userbox--element{
  margin: 10px 0px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  outline: none;
  border: 2px solid transparent;
  padding: var(--pg-card-12-14);
  border-radius: 10px;

}
.input-userbox--element:focus{
  border-color: var(--card-main); 

}
.textarea-userbox--element{
  margin: 10px 0px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  outline: none;
  border: 2px solid transparent;
  padding: var(--pg-card-12-14);
  border-radius: 10px;

}
.textarea-userbox--element:focus{
  border-color: var(--card-main); 
}

.thumb-disclaimer-gm09 {
  position: relative;
    padding: clamp(11px, 1.25vw, 35px);
    border: 2px solid var(--card-main);
    border-radius: var(--border-r);
    animation: scaleBox 1s infinite alternate,backgroundChange 15s infinite;
}
.box-img-bg-discl-dm09{
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 100px;
  opacity: 0.15;
}
.box-img-bg-discl-dm09 img {
  object-fit: contain;
}
.box-img-bg-discl-dm09-2{
  position: absolute;
  top: 5%;
  right: 5%;
  width: 100px;
  opacity: 0.15;
  transform: rotate(180deg);
}
.box-img-bg-discl-dm09-2 img {
  object-fit: contain;
}
@keyframes backgroundChange {
  0% { background: var(--card-1); } 
  20% { background: var(--card-2); } 
  40% { background: var(--card-3); } 
  60% { background: var(--card-4); } 
  80% { background:var(--card-5); } 
  100% { background:var(--card-1); } 
}
@keyframes scaleBox {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.box-pos-discl-gm09{
  display: flex;
  flex-direction: column-reverse;
}
.thumb-txt-discl-gm09 {
  text-align: center;
  font-weight: 900;
  font-size: clamp(18px,4vw,21px);
  color: var(--black);
}
.box-img-discl-gm09{
  display: flex;
  justify-content: center;
  margin: var(--margin25);
}
.thumb-img-discl-gm09 {
  width: 100px;
  margin: 25px auto;
  height: 100px;
}
.thumb-img-discl-gm09 img{
  object-fit: contain;
}
.polityki-gm09{

  margin-top: var(--pg-card-18-22);
  border-top: 2px solid var(--card-main);
  border-left: 2px solid var(--card-main);
  border-right: 2px solid var(--card-main);
}
.thumb-polityki-gm09 {

  display: flex;
  flex-wrap: wrap;
  gap: var(--pg-card-15-18);
 margin: var(--margin25);
  justify-content: center;
}
.thumb-polityki-gm09 li{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
 
  padding:var(--pg-card-12-14);
  border-radius: var(--border-r);
  transition: all 0.3s ease;
}

.link-menu-footer-gm09 {
 
  color: var(--white);

}
.thumb-polityki-gm09 li:hover{
  color: var(--card-main);
  text-shadow: 0 0 10px var(--card-main), 0 0 20px var(--card-main), 0 0 40px var(--card-main), 0 0 80px var(--card-main), 0 0 100px var(--card-main);
}
.box-copy-gm09{
  display: flex;
  justify-content: center;
}
.copy-title-gm09{
  color:var(--white);
}

.pos-cont-gm09{
  display: flex;
  flex-direction: column-reverse;
}
.input-cont-gm09{
  margin: 10px 0px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  outline: none;
  border: 2px solid transparent;
  padding: var(--pg-card-12-14);
  border-radius: 10px;
}
.input-cont-gm09:focus{
  border-color: var(--card-main); 
  box-shadow: 0 4px 8px var(--card-main), 
              0 1px 3px rgba(0, 0, 0, 0.1); 
}
.btn-box-form-gm09{
  display: flex;
  justify-content: center;
  margin: var(--margin25);
}
.box-privacy-cont-gm09{
  gap: 5px;
  display: flex;
  align-items: center;
}
.check-color-gm09{
  color: var(--white);
  font-size: clamp(14px,4vw,16px);
}
.privacy-link-gm09{
  color: var(--white);
}
.privacy-link-gm09:hover{
  color: var(--card-main);
}
.thumb-contact-dm09{
  display: flex;
  gap: var(--gap-25-30);
}
.box-form-contact-gm09{
  flex:1;
}
@media (max-width:767px) {
  .thumb-contact-dm09{
    flex-direction: column-reverse;
  }
}
.maps-contact-dm09{
  flex: 1;
}
.contact-info-gm09{
  flex: 1;
  position: relative;
}
.contact-bg-gm09{
  position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.contact-bg-gm09 img{
  width: 100%;
  height: 100%;
  opacity: 0.31;
  object-fit: contain;
}
.box-contact-info-gm09{
  z-index: 1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--pg-card-18-22);
  justify-content: center;
  margin: var(--margin25);
  flex-direction: column-reverse;
}
.block-contact-gm09{
  display: flex;
  align-items: center;
    justify-content: center;
 
  border-radius: var(--border-r);
  padding: var(--pg-card-18-22);
  background: var(--card-grad-main);
}
@media (max-width:767px) {
  .block-contact-gm09{
    width: 100%;

  }
}
.link-contacts-gm09{
  text-align: center;
  color: var(--white);
}
.link-contacts-gm09:hover{
  color: var(--card-main);
}
.txt-adres-gm09{
  color: var(--white);

  text-align: center;
}

.bg-page-gm09{
  background-color: var(--bg-main);
  padding: var(--pg-card-18-22);
}
.games-thumb-page-gm09{
  display: flex;
  gap:var(--gap-25-30);
  background-color: var(--bg-main);
  padding: var(--sec-padd);
  flex-direction: column-reverse;

}
.thumb-img-main-gm09 {
  align-items: center;
  display: flex;
gap: var(--gap-25-30);
border-radius: var(--border-r);
  padding: var(--pg-card-18-22);
  justify-content: center;

}
@media (max-width:767px) {
  .thumb-img-main-gm09{
    flex-direction: column-reverse;
  }
}
@media (max-width:575px) {
  .thumb-img-main-gm09{
    flex-direction: column;
  }
}

.main-page-gm09 {
  padding: var(--pg-card-18-22);
  object-fit: contain;
  height: 370px;
}

@media (max-width:576px) {
  .main-page-gm09 {
    height: auto;
  }
}
.txt-main-page-gm09 {
  position: relative;
  color:var(--white);
  border-radius: var(--border-r);
  padding: var(--pg-card-18-22);
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}
.planet-bg-gm09{
  position: absolute;
  bottom: 5%;
  right: 5%;
  max-width: 520px;
}
.planet-bg-gm09 img {
  opacity: 0.11;
  object-fit: contain;
}
.game-main-gm09{
  display: flex;
padding: var(--pg-card-12-14);
  justify-content: center;
}
.game-main-gm09 iframe{
  border-radius: var(--border-r);
}

.privacy-section-gm09{
  word-break: break-all;
  background-color: var(--bg-main);
 }
 .privacy-gm09{
  color: var(--white);
}



.btn-dm09-1{
padding: var(--pg-card-12-14);
  border-radius: 50px;
  background: var(--card-main);
  cursor: pointer;
  border: none;
  font-size: 24px;
  color: var(--white);
}

.btn-dm09-1:hover {
  transform: scale(.98);
}
.btn-dm09-2 {
  position: relative;
  background:var(--card-main);
  box-sizing: border-box;
  border: 0;
  outline: 0;
  padding: 1rem 3rem;
  font-size: 1em;
  cursor: pointer;
  transition: .25s ease;
  color: var(--white);
}

.btn-dm09-2::before {
  position: absolute;
  content: '';
  box-sizing: border-box;
  top: 0;
  left: 0;
  transform: translate(-5px, -5px);
  width: 100%;
  height: 100%;
  border: 1px solid var(--card-main);
  transition: .25s ease;
}

.btn-dm09-2:hover {
  transform: translate(-5px, -5px);
}

.btn-dm09-2:hover::before {
  transform: translate(5px, 5px);
}
.btn-dm09-3 {
  background-color: #040810;
  color: #C7C7C7;
  padding: 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  overflow: hidden;
  position: relative;
  border: 3px double var(--card-main);
  z-index: 1;
}

.btn-dm09-3::before {
  content: "";
  background-color: var(--card-main);
  transform: translateX(-100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s;
  z-index: -1;
}

.btn-dm09-3:hover::before {
  transform: translateX(0);
}

.btn-dm09-3::after {
  content: "";
  background-color: var(--card-main);
  transform: translateX(100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s;
  z-index: -1;
}

.btn-dm09-3:hover::after {
  transform: translateX(0);
}

.btn-dm09-4 {
padding: 10px 15px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  font-size: clamp(16px,4vw,21px);
}

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

.btn-dm09-4:active {
  color: #000
}

.btn-dm09-4:active:after {
  background: transparent;
}

.btn-dm09-4:hover:before {
  opacity: 1;
}

.btn-dm09-4:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

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

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

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

.btn-dm09-5 {
  background-color: transparent;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease-in, transform 0.3s ease;
  font-size: 18px;
  font-weight: bold;
  border: none;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-dm09-5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color:var(--card-main);
  opacity: 0;
  transition: width 0.7s ease-in-out, opacity 0.9s ease;
}

.btn-dm09-5:hover {
  transform: scale(1.05);
}

.btn-dm09-5:hover:before {
  width: 100%;
  opacity: 0.6;
}

.btn-dm09-5:active {
  background-color: var(--card-main);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
  transform: scale(0.98);
}

.scroll-to-top-dm09 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--card-main);
  color: var(--white);
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none; 
  z-index: 1000;
  transition: opacity 0.3s, transform 0.3s;
}

.scroll-to-top-dm09:hover {
  opacity: 0.8;
  background-color: var(--card-main);
  transform: scale(1.1);
}