@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');

body{
    direction: ltr;
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
    line-height: 1.7;
    margin: 0px;
    padding: 0px;  
    box-sizing: border-box;
    overflow-x: hidden;
}

:root{
  --e-global-color-primary: #6EC1E4;
  --e-global-color-secondary: #54595F;
  --e-global-color-text: #7A7A7A;
  --e-global-color-grey: #f0f0f0;
  --e-global-color-accent: #61CE70;
  --e-global-color-blue: #61c3ce;
  --global-palette2: #e4a101;
  --wc-primary: #a46497;
  --background-red: #2a0f1c;
  --background-footer: #1f1126;
  --white: #fff;

  --backgr-1: #2a0f1c;
  --backgr-2: #0a1c0d;
  --backgr-3: #0f0c21;
}

a {
white-space: normal;
text-decoration: none;
word-break: break-all;
}
ul {
padding-left: 0;
padding-right: 0;
}
li {
margin: 0 20px;
}


.p-wrapper{
padding: 120px 15px;
}
.m-wrapper{
  word-break: break-all;
padding: 0;
margin: 0 auto;
}
.custom-cursor {
  width: 29px;
  height: 29px;
  border: 1px solid var(--text-color-2);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.container-heder {
background-color: var(--backgr-2);
}
.heder-nav{
  display: flex;
  flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.heder-title{
  display: flex;
  align-items: center;
}

.heder-title img{
width: 40px;
margin: 12px;
}
.heder-title h1{
color: var(--global-palette2);
}
.heder-menu{
  display: flex;
  flex-direction: row;
}
.heder-menu div a{
  text-transform: uppercase;
    margin: 0 20px;
    color: var(--white);
}
.heder-menu div a:hover{
  color: var(--global-palette2);
}
.open-icon svg,
.close-icon svg {
  color: var(--global-palette2);
}
.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
  transform: translateY(-100%);
}

.menu-mobile.open {
  display: flex;
  transform: translateY(0);
}

.header-menu-mob-items {
  list-style: none;
  text-align: center;
}

.header-menu-mob-items li {
  margin: 20px 0;
}

.header-menu-mob-items a {
  font-size: 24px;
  color: var(--global-palette2);
  text-transform: uppercase;
  text-decoration: none;
}

.open-icon {
  display: none;
  cursor: pointer;
}

.close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.container-head {
  position: relative;
  display: flex;
  justify-content: space-between; 
  background-image: url('content/bg-assets/bg-dark-068ef7500c976f.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.container-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 80%); 
  z-index: 1; 
}

.head-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}

.head-content h3 {
  padding: 0  29px;
  align-items: center;
  font-size: 40px; 
  color: var(--white);
  animation: colorChange 5s infinite; 
}


@keyframes colorChange {
  0% {
      color: var(--e-global-color-primary);
  }
  25% {
      color: var(--e-global-color-accent);
  }
  50% {
      color: var(--global-palette2);
  }
  75% {
      color: var(--wc-primary);
  }
  100% {
      color: var(--white);
  }
}

.container-benefit {
  background-color: #f0f0f0; 
  text-align: center; 
}

.container-benefit h2 {
  font-size: 34px;
  color: #ffeb3b; 
  animation: titleColorChange 2s infinite; 
  margin-bottom: 26px;
}


@keyframes titleColorChange {
  0%, 100% {
      color: var(--global-palette2);
  }
  50% {
      color: #000; 
  }
}
.benefit-list{
  display: flex;
  flex-direction: row;
}
.benefit-gambs {
  background-color: var(--white); 
  border-radius: 12px; 
  padding: 22px;
  margin: 12px;
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%); 
  display: flex;
  align-items: center;
  width: 300px;
  flex-direction: column;
  justify-content: space-evenly;
  border: 1px solid var(--e-global-color-grey);
}

.benefit-gambs img {
  width: 120px;
  height: auto;
}

.benefit-gambs p {
  color: #777;
  font-size: 15px;
  padding: 22px;
  margin: 0;
}

.container-video{
  width: 100%; 
    max-width: 100vw; 
    overflow: hidden;
    position: relative;
}

.container-video video {
  width: 100%; 
  height: 318px;
  object-fit: cover;
  display: block; 
}

.container-video::before{
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; 
}
.container-video .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; 
  z-index: 2;
  text-align: center;
}
.overlay-content h2{
  font-size: 40px;
  color: var(--global-palette2);
  animation: titleColorChange 2s infinite;
}
.container-games{
  background-color: var(--e-global-color-grey);
  text-align: center;
}
.container-games h2{
  font-size: 34px;
  color: #ffeb3b;
  animation: titleColorChange 2s infinite;
}

.game-list{
  display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.game-gamb {
  width: 300px;
    display: flex;
    justify-content: center;
}
.game-gamb a{
  display: flex;
    flex-direction: column;
    align-items: center;
}
.sgame-img{
  width: 300px;
  height: 218px;
}
.sgame-img img{
  width: 100%;
  height: 218px;
  object-fit: cover;
  border-radius: 12px;
}
.game-contents{
  text-align: center;
}
.game-title{
  margin-top: 10px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--background-footer);
}

.game-text{
  color: var(--global-palette2);
  display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-height: 3em; 
    line-height: 1.5em; 
}
.container-player {
  background-image: url('content/bg-assets/bg-dark-168ef7500c9798.jpg'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  padding: 22px; 
  position: relative; 
  min-height: 318px; 
}
.container-player::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 80%);
  z-index: 1;
}
.player-wrap{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.player-img img{
  width: 400px;
  height: auto;
  object-fit: cover;
  position: relative;
    top: -60px;
}
.player-info{
  display: flex;
  flex-direction: row;
}
.player-num{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 22px;
}
.player-num span{
  font-size: 48px;
  font-weight: bold;
  color: var(--global-palette2);
}
.player-num p{
  color: var(--white);
  font-weight: bold;
  font-size: 21px;
  text-transform: uppercase;
  
}

.container-table {
  background: var(--backgr-2); 
}

.table-title h2 {
  color: var(--white); 
  font-size: 34px;
  text-align: center;
  animation: colorChange 2s infinite alternate; 
}

@keyframes colorChange {
  0% {
    color: var(--white); 
  }
  100% {
    color: var(--global-palette2);
  }
}

.table-title p {
  color: var(--white);
  font-size: 13px;
  text-align: center;
}

.lider-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

.slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white); 
  width: 180px;
  padding: 40px;
  margin: 12px;
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.slider-wrap:hover {
  transform: scale(1.05); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); 
}

.lider-img {
  width:  100px;
  height:  100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--global-palette2); 
  margin-bottom: 10px;
}

.slider-wrap p {
  font-size: 18px;
  color: var(--background-footer);
  font-weight: bold;
  margin: 0;
  text-transform: uppercase; 
}

.slider-wrap {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.slider-wrap:nth-child(1) {
  animation-delay: 0.2s;
}

.slider-wrap:nth-child(2) {
  animation-delay: 0.4s;
}

.slider-wrap:nth-child(3) {
  animation-delay: 0.6s;
}

.slider-wrap:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container-footer{
  background-color: var(--background-footer);
}
.footer-menu{
  padding-top: 26px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.footer-list{
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 0 20px;
}
.footer-list li{
  display: flex;
  align-items: baseline;
}
.footer-list li a,
.footer-list li p,
.footer-list a{
  color: var(--white);
}
.footer-list-page{
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 20px;
}
.footer-list-page li{
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-list-page li a,
.footer-list-page li p,
.footer-list-page a{
  color: var(--white);
}

.container-current{
  display: flex;
    padding: 24px 0;
    justify-content: space-around;
    align-items: center;
    background-color: var(--background-footer);
}
.footer-logo-title{
  display: flex;
}
.footer-logo-title h1{
  color: var(--global-palette2);
}
.footer-logo-title img{
  width: 41px;
    object-fit: contain;
    margin: 12px;
}
.current__year{
  color: var(--white);
}


.priv-wrapper h2{
  color: var(--global-palette2); 
  font-size: 34px;
  text-align: center;
}

.about-title{
  color: var(--global-palette2); 
  font-size: 34px;
  text-align: center;
}
.about-list{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.about-img{
  text-align: center;
  flex: 1;
}
.about-img img{
  width: 76%;
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.about-text{
  flex: 1;
}
.rnd-gms{
  display: flex;
flex-direction: column-reverse;
gap:26px ;
}
.game-page-content h2{
  text-transform: uppercase;
  color: var(--global-palette2);
  text-align: center;
}
.game-page-text{
  color: black
}
.game-page-img{
  text-align: center;
}
.game-page-img img{
  width: 51%;
    border-radius: 12px;
}
.container-disclaimer{
  padding: 30px 10px;
  background-color: var(--background-footer);
}
.container-disclaimer div{
  background-color: var(--global-palette2);
  padding: 10px 22px;
}
.disclaimer-title{
  text-align: center;
  color: var(--background-footer);
  text-transform: uppercase;
}
.disclaimer-wrap{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.disclaimer-text p{
  color: var(--white);
}
.disclaimer-img{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.disclaimer-img img{
  width: 100px;
  margin: 22px;
}


.container-form {
  position: relative;
  background: url('content/bg-assets/bg-light-068ef7500c96f1.jpg') no-repeat center center/cover; 
  padding: 38px;
  overflow: hidden;
}

.container-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 91%);
  z-index: 1; 
}
.container-form-page {
  position: relative;
  background: url('content/bg-assets/bg-light-168ef7500c971b.jpg') no-repeat center center/cover; 
  padding: 38px;
  overflow: hidden;
}

.container-form-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 91%);
  z-index: 1; 
}
.form-page-wrap{
  position: relative;
  z-index: 2; 
}
.form-img-wpar{
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
}
.container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.form {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.title-form {
  color: var(--global-palette2);
  padding: 10px 22px;
  font-size: 21px;
  text-align: center;
}

.input-main_item_block {
  margin: 0.5rem 0;
  padding: 13px 10px;
  width: 80%;
  background-color: var(--white);
  color: var(--global-palette2);
  outline: none;
  border: 1px solid var(--global-palette2);
  transition: all 300ms;
  border-radius: 0.5rem;
}
.input-main_item_block:hover {
  background-color: #424242;
  border: none;
  border-radius: 0.5rem;
}
.textarea-main_item_block {
  margin: 0.5rem 0;
  padding: 13px 10px;
  width: 80%;
  background-color: var(--white);
  color: var(--global-palette2);
  outline: none;
  border: 1px solid var(--global-palette2);
  transition: all 300ms;
  border-radius: 0.5rem;
}
.textarea-main_item_block:hover {
  background-color: #424242;
  border: none;
  border-radius: 0.5rem;
}


.container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


.input {
  margin: 0.5rem 0;
  padding: 13px 10px;
  width: 80%;
  background-color: var(--white);
  color: wheat;
  outline: none;
  border: 1px solid wheat;
  transition: all 300ms;
  border-radius: 0.5rem;
}
.input:hover {
  background-color: #424242;
  border: none;
  border-radius: 0.5rem;
}
.textarea {
  margin: 0.5rem 0;
  padding: 13px 10px;
  width: 80%;
  background-color: var(--white);
  color: wheat;
  outline: none;
  border: 1px solid wheat;
  transition: all 300ms;
  border-radius: 0.5rem;
}
.textarea:hover {
  background-color: #424242;
  border: none;
  border-radius: 0.5rem;
}

.form-img{
  flex: 1;
}
.form-img img{
  width: 100%;
}

.container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  border-radius: 15px;
 }
 
 .container-check {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  border-radius: 15px;
 }
 .check-wrap{
  display: flex;
  flex-direction: row;
  align-items: center;
 }
 .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #ccc;
  border-radius: 15px;
 }
 .cheker{
color: var(--global-palette2); 
font-size: 14px;
 }
 .check--privacy{
  color: var(--global-palette2);
   font-size: 14px;
    padding: 0 7px;
 }
 .container-check input:checked ~ .checkmark {
  box-shadow: 3px 3px 0px rgb(183, 183, 183);
  transition: all 0.2s;
  opacity: 1;
  margin: 12px;
  background-image: linear-gradient(45deg, rgb(100, 61, 219) 0%, rgb(217, 21, 239) 100%);
 }
 
 .container-check input ~ .checkmark {
  transition: all 0.2s;
  opacity: 1;
  box-shadow: 1px 1px 0px rgb(183, 183, 183);
 }
 
 .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.2s;
 }
 
 .container-check input:checked ~ .checkmark:after {
  opacity: 1;
  transition: all 0.2s;
 }
 
 .container-check .checkmark:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
 }
.container-form-page{
background-color: var(--background-footer);
}
.container-contact-page{
  background-color: var(--background-footer);
}
.adres-map{
  display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.adres-contact{
  flex: 1;
}
.map-layout{
  flex: 1;
}

.hover-effect {
  display: flex;
    align-items: center;
    justify-content: center;
  transition: transform 0.2s ease-in-out;
}

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

@media screen and (min-width: 480px) {
  .m-wrapper{
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .m-wrapper{
    max-width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .m-wrapper{
    max-width: 1200px;
  }
}


@media (max-width: 1200px) {
  .heder-nav{
    flex-direction: column;
    padding: 24px 0;
  }
.benefit-list{
  flex-wrap: wrap;
    justify-content: center;
}
.about-list{
  flex-direction: column-reverse;
}
.form-img-wpar{
  flex-direction: column;
}
}

@media (max-width: 1000px) {
  .heder-menu {
    display: none;
  }

  .open-icon {
    display: block;
  }
}

@media (max-width: 768px) {
.player-wrap{
  flex-direction: column;
}
.player-info{
  flex-direction: column;
}
.game-page-img img{
width: 65%;
}
.head-content h3{
  font-size: 21px;
}
.footer-menu {
  flex-direction: column;
}
.footer-list{
  width: 100%;
  align-items: center;
}
.container-current{
  flex-direction: column;
}
.footer-list{
  margin: 0;
}
.adres-map{
  flex-direction: column;
}
}

@media (max-width: 600px){
  .game-page-img img{
    width: 100%;
    }
.disclaimer-wrap {
  display: flex;
  flex-direction: column;
}
}


@media (max-width: 500px) {
  .player-img img{
    width: 300px;
  }
}


@media (max-width: 375px) {
  .heder-title{
    flex-direction: column;
    align-items: center;
  }
  .game__card a {
    flex-direction: column;
  }
  .game__img-content img{
    width: 300px;
  }
  .game__img-content {
    display: flex;
    justify-content: center;
    margin-right: 0;
  }
.footer-logo-title{
  flex-direction: column;
  align-items: center;
}
.footer-logo-title h1 {
  text-align: center;
}
}



.button-1 {
  appearance: none;
  background-color: var(--background-footer);
  border: 0.125em solid var(--e-global-color-blue);
  box-sizing: border-box;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  min-height: 3.75em;
  min-width: 0;
  outline: none;
  padding: 1em 2.3em;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
 }
 
 .button-1:disabled {
  pointer-events: none;
 }
 
 .button-1:hover {
  color: var(--background-red);
  background-color: var(--global-palette2);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
 }
 
 .button-1:active {
  box-shadow: none;
  transform: translateY(0);
 }

 .button-2 {
  width: 175px;
  height: auto;
  padding: 22px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  border-radius: 20px;
  border: none;
  position: relative;
  background: #100720;
  transition: 0.1s;
}

.button-2::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  var(--global-palette2) 17.8%, var(--e-global-color-blue) 100.2% );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.button-2:active {
  transform: scale(0.9) rotate(3deg);
  background: radial-gradient( circle farthest-corner at 10% 20%,  var(--global-palette2) 17.8%, var(--e-global-color-blue) 100.2% );
  transition: 0.5s;
}

.button-3,
.button-3::after {
 padding: 16px 20px;
 font-size: 18px;
 background: linear-gradient(45deg, transparent 5%, var(--background-red) 5%);
 border: 0;
 color: #fff;
 letter-spacing: 3px;
 line-height: 1;
 box-shadow: 6px 0px 0px #00e6f6;
 outline: transparent;
 position: relative;
}

.button-3::after {
 --slice-0: inset(50% 50% 50% 50%);
 --slice-1: inset(80% -6px 0 0);
 --slice-2: inset(50% -6px 30% 0);
 --slice-3: inset(10% -6px 85% 0);
 --slice-4: inset(40% -6px 43% 0);
 --slice-5: inset(80% -6px 5% 0);
 content: "";
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(45deg, transparent 3%, var(--global-palette2) 3%, var(--global-palette2) 5%, var(--background-red) 5%);
 text-shadow: -3px -3px 0px #27261d, 3px 3px 0px var(--global-palette2);
 clip-path: var(--slice-0);
}

.button-3:hover::after {
 animation: 1s glitch;
 animation-timing-function: steps(2, end);
}

@keyframes glitch {
 0% {
  clip-path: var(--slice-1);
  transform: translate(-20px, -10px);
 }

 10% {
  clip-path: var(--slice-3);
  transform: translate(10px, 10px);
 }

 20% {
  clip-path: var(--slice-1);
  transform: translate(-10px, 10px);
 }

 30% {
  clip-path: var(--slice-3);
  transform: translate(0px, 5px);
 }

 40% {
  clip-path: var(--slice-2);
  transform: translate(-5px, 0px);
 }

 50% {
  clip-path: var(--slice-3);
  transform: translate(5px, 0px);
 }

 60% {
  clip-path: var(--slice-4);
  transform: translate(5px, 10px);
 }

 70% {
  clip-path: var(--slice-2);
  transform: translate(-10px, 10px);
 }

 80% {
  clip-path: var(--slice-5);
  transform: translate(20px, -10px);
 }

 90% {
  clip-path: var(--slice-1);
  transform: translate(-10px, 0px);
 }

 100% {
  clip-path: var(--slice-1);
  transform: translate(0);
 }
}

.button-4 {
  --border-color: linear-gradient(-45deg, #ffae00, #7e03aa, #00fffb);
  --border-width: 0.125em;
  --curve-size: 0.5em;
  --blur: 30px;
  --bg: #080312;
  --color: #afffff;
  color: var(--color);
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  padding: 10px 22px;
  font-size: 13px;
  border: 0;
  text-transform: uppercase;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
     calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms;
}

.button-4::after,
.button-4::before {
  content: "";
  position: absolute;
  inset: 0;
}

.button-4::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}

@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%;
  }

  50% {
    background-position: 70% 100%;
  }

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

.button-4::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
   var(--border-width)
      calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
   calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
     var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.button-4:where(:hover, :focus)::after {
  clip-path: polygon(
 calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
   calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.button-4:where(:hover, :focus) {
  color: #fff;
}



.button-5 {
  --border-color: linear-gradient(-45deg, #ffae00, #7e03aa, #00fffb);
  --border-width: 0.125em;
  --curve-size: 0.5em;
  --blur: 30px;
  --bg: #080312;
  --color: #afffff;
  color: var(--color);
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  padding: 10px 22px;
  font-size: 13px;
  border: 0;
  text-transform: uppercase;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
     calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms;
}

.button-5::after,
.button-5::before {
  content: "";
  position: absolute;
  inset: 0;
}

.button-5::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}

@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%;
  }

  50% {
    background-position: 70% 100%;
  }

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

.button-5::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
   var(--border-width)
      calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
   calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
     var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.button-5:where(:hover, :focus)::after {
  clip-path: polygon(
 calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
   calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.button-5:where(:hover, :focus) {
  color: #fff;
}



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

.iframe-game iframe{
  width: 100%;
  height: 100vh;
}

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