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

html {
  scroll-behavior: smooth;
}


body{
  direction: ltr;
  font-family: 'Noto Sans Mono', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
.out-wrapper {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a {
    text-decoration: none;
}
button {
  cursor: pointer;
}

.list {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding-inline-start: 0;
}

img {
    display: block;
}

.link {
    text-decoration: none;
}

.link:hover,
.link:focus {
    cursor: pointer;
}

.container-g21 {
  padding-left: 14px;
  padding-right: 14px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px !important;
}

@media screen and (min-width: 576px) and (max-width: 1200px) {
  .container-g21 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

@media screen and (min-width: 576px) {
  .flex {
    flex-direction: row;
  }
}

.column {
  flex-direction: column;
}
.column2 {
  flex-direction: column;
}
:root {
  --white: #ffffff;
  --dark: #2B1F31;
  --sec-pad: 83px;
  --big-pad: 162px;
  --title-color: var(--tc-3);
  --main-color-1: #8132f0;
  --main-color-2: #9bde1e;


  --tc-1: #ff6347;
  --tc-2: #ffc107;
  --tc-3: var(--white);

  --border-width: calc(9px - 0px);
  --minus-bw: calc(-9px + 0px);
}

.title-g21 {
  font-family: 'Lobster', sans-serif;
  line-height: 1.8;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  text-transform: capitalize;
  word-break: break-word;
  display: inline-block;
  position: relative;
  margin-bottom: 28px;
  padding: 7px 23px;
  border: var(--border-width) solid transparent;
  border-top: var(--border-width) solid var(--title-color);
  border-left: var(--border-width) solid var(--title-color);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.25) inset;
}

.title-g21::after {
  content: '';
  position: absolute;
  top: var(--minus-bw);
  right: var(--minus-bw);
  width: 30%;
  height: 100%;
  border: var(--border-width) solid transparent;
  border-bottom: var(--border-width) solid var(--title-color);
  border-right: var(--border-width) solid var(--title-color);
  transition: 0.3s linear all;
}

@media screen and (min-width: 576px) {
  .title-g21 {
    font-size: 25px;
  }
}

@media screen and (min-width: 991px) {
  .title-g21 {
    font-size: 31px;
  }
}

.cut {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mar-t-30 {
  margin-top: 28px;
}

.hero-g21 {
  background-image: radial-gradient(circle farthest-corner at center center, #0000008c 22%, #100d01 100%), url(imagevault/bg-assets/bg-light-06908c938b3b6d.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.glass-animate {
  position: absolute;
  width: 100%;
  height: 100%;
  rotate: 14deg;
}

.glass-animate::before,
.glass-animate::after {
  content: '';
  background: rgba(198, 89, 195, 0.2);
  border-radius: 9px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(198, 89, 195, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: -2;
}

.glass-animate::after {
  right: 0;
  left: unset;
}

.header-g21 {
  padding: 15px 0;
  direction: initial;
}

.logo-g21 {
  display: inline-flex;
  color: var(--white);
  align-items: center;
  font-size: 24px;
  gap: 14px;
  padding: 15px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 575px) {
  .logo-g21 {
    flex-direction: column;
  }
}

.logo-g21 img {
  width: auto;
  height: 138px;
}
@media screen and (max-width: 575px) {
  .logo-g21 img {
    height: 99px;
  }
}

.header-bar {
	position: relative;
	width: 100%;
	border: var(--border-width) solid transparent;
	border-top: var(--border-width) solid var(--main-color-1);
	border-left: var(--border-width) solid var(--main-color-1);
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.25) inset;
}
.header-bar ul::after {
	content: '';
	position: absolute;
	top: var(--minus-bw);
	right: var(--minus-bw);
	width: 100%;
	height: 100%;
	border: var(--border-width) solid transparent;
	border-bottom: var(--border-width) solid var(--main-color-1);
	border-right: var(--border-width) solid var(--main-color-1);
	transition: 0.3s linear all;
  z-index: -1;
}
.slider-menu {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .slider-menu {
    position: absolute;
    top: 0;
    right: 0;  
    justify-content: flex-end;
  }
}
.slider-menu > li {
	display: inline-flex;
	color: var(--white);
	cursor: pointer;
	transition: 0.3s linear all;
	user-select: none;
}
.slider-menu > li a:hover {
	color: #faa;
	box-shadow: 0 50px 5px rgba(0, 0, 0, 0.15) inset;
}

.slider-menu > li > a {
  color: currentColor;
  padding: 14px 15px;
}

.hero-g21 h1 {
  z-index: 1;
  position: relative;
  color: var(--white);
  width: 90%;
  margin: 0 0;
  padding: var(--sec-pad) 0;
}

.disclamer-g21 {
  padding: var(--sec-pad) 0;
  width: 63%;
  margin-right: auto;
}

.disclamer-g21 p {
  position: relative;
  z-index: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.disclamer-g21-dec {
  border: 5px solid var(--title-color);
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0% 88%);
  background-color: var(--main-color-1);
  position: absolute;
  z-index: -1;
  width: 63%;
  position: absolute;
  bottom: 0;
  left: 0;
  filter: drop-shadow(2px 1px 17px #000000);
}

@media screen and (max-width: 575px) {
  .disclamer-g21 {
    width: 100%;
  }
  .disclamer-g21-dec {
    width: 100%;
  }
}

.hero-g21::after {
  content: '';
  clip-path: polygon(0 55%, 100% 0%, 100% 100%, 0% 100%);
  background-color: var(--main-color-2);
  position: absolute;
  bottom: -2px;
  z-index: -2;
  width: 100%;
  height: 15%;
}

.steps-g21 {
  padding: var(--big-pad) 0;
  position: relative;
  z-index: -2;
  background-color: var(--main-color-2);
}
.steps-g21::after {
  content: '';
  background-color: var(--main-color-2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.steps-g21__list {
  display: flex;
  flex-direction: column;

  gap: 41px;
}
@media screen and (min-width: 576px) {
  .steps-g21__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 991px) {
  .steps-g21__list {
    flex-wrap: nowrap;
  }
}


.steps-g21__item {
  flex: 1;
  color: var(--main-color-1);
  border: 1px solid var(--main-color-1);
  box-shadow: 0px 0px 9px -2px rgba(129, 50, 240, 0.66),
            inset 0px 0px 9px -3px rgba(129, 50, 240, 0.69);
  padding: 15px;
  text-align: center;
}

.steps-g21__number p {
  margin: 0;
  text-align: center;
  line-height: 1;
  font-size: 78px;
  font-weight: 900;
}

.steps-g21__text {
  margin-top: calc(-78px * 0.3);
  background-color: var(--main-color-2);
  z-index: 1;
  position: relative;
  padding: 14px;
}

.steps-g21__text h4 {
  font-size: 24px;
  font-weight: 900;
}

.about-g21 {
  padding: var(--sec-pad) 0;
  background: var(--main-color-1);
  position: relative;
}

.about-g21::before,
.about-g21::after,
.a-page::after  {
  content: '';
  width: 100%;
  height: 10%;
  clip-path: polygon(0 0, 100% 100%,  0 100%);
  position: absolute;
  top: calc(-10% + 1px);
  left: 0;
  right: 0;
  background: var(--main-color-1);
}

.about-g21::after,
.a-page::after  {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  bottom: calc(-10% + 1px);
  left: 0;
  right: 0;
  top: unset;
}

.about-g21 .container-g21 {
  z-index: 1;
  position: relative;
}

.about-g21 .container-g21 > .flex {
  gap: 54px;
}
@media screen and (max-width: 767px) {
  .about-g21 .container-g21 > .flex {
    flex-direction: column;
  }
}

.about-g21-content,
.about-g21-video {
  flex: 1;
}

.about-g21-video video {
  width: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.about-g21-content {
  color: var(--white);
  font-weight: 700;
}

.about-g21-content img {
  width: 100%;
  max-width: 328px;
  margin: 0 0;
}

.about-g21-content a {
  display: inline-block;
}

.about-g21-text {
  color: var(--dark);
}

.about-dec{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: polygon(3% 56%, 0 5%, 95% 100%, 100% 32%);
  background-color: var(--main-color-2);
}

.category-g21 {
  background-color: var(--main-color-2);
  background-image: url('imagevault/bg-assets/opacity_bg-06908c938b3bed.png');
  padding: var(--sec-pad) 0;
}

.category-g21 .container-g21 > .flex {
  gap: 33px;
}

.cards-g21-col {
  flex: 1;
  justify-content: space-evenly;
  gap: 28px;
}

.cards-g21-col img {
  width: 100%;
}

.card-g21 {
  border-image: linear-gradient(to top right, #9023CF 0%, #6FECFF 40%, #BEC9CF 46%, #6FECFF 65%, #9023CF 87%, #BEC9CF 100%) 1;
  border-width: 4px;
  border-style: solid;
  padding: 4px;
  position: relative;
  background: linear-gradient(to top right, #9023CF 0%, #6FECFF 40%, #BEC9CF 46%, #6FECFF 65%, #9023CF 87%, #BEC9CF 100%);
  justify-content: space-around;
  align-content: flex-end;
  height: 328px;
  
}

@media screen and (max-width: 575px) {
  .category-g21 .container-g21 > .flex {
    margin-top: 54px;
    gap: 54px;
  }
  .cards-g21-col {
    gap: 54px;
  }

}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .cards-g21-col:nth-child(3) {
    flex-direction: row;
  }
  .cards-g21-col:nth-child(3) .card-g21 {
    flex: 1;
  }
  .category-g21 .container-g21 > .flex {
    flex-wrap: wrap;
  }
  .cards-g21-col {
    width: calc((100% - 33px) / 2);
  }
}

.card-g21-img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  opacity: 0.5;
}

.card-g21-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-g21-content {
  position: relative;
  z-index: 0;
  background: rgba(198, 89, 195, 0.2);
  border-radius: 9px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(198, 89, 195, 0.3);
  padding: 15px;
  padding-right: 33px;
  overflow: hidden;
  color: var(--white);
}

.card-g21-dev {
  position: absolute;
  top: -38px;
  color: var(--white);
  text-shadow: 2px 3px 4px rgba(131, 131, 120, 1);
  font-size: 20px;
  background: var(--tc-1);
  padding: 4px 15px;
  border-top-right-radius: 9px;
  border-top-left-radius: 9px;

}

.stars {
  background-color: var(--tc-1);
  color: var(--white);
  writing-mode: vertical-lr;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 4px;
  line-height: 1;
}

.card-g21-content a {
  color: currentColor;
}

.card-g21:hover .card-g21-content a,
.card-g21:focus .card-g21-content a  {
  color: var(--tc-1);
}

@media screen and (min-width: 800px){
  .base-template__content {
    margin-left: auto;
  }
}
.rotating-slider {
	display: flex;
	align-items: center;
	justify-content: center;
  direction: initial;
}

.rotating-slider__content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 780px;
	height: 580px;
	overflow: hidden;
	transition: transform 0.5s ease-in-out;
}

.rotating-slider__background {
	position: relative;
	z-index: 1;
	width: 780px;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: background-image 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.rotating-slider__background::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	backdrop-filter: blur(3px);
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

.rotating-slider__wrapper {
	position: absolute;
	left: 50%;
	translate: -100px;
	z-index: 1;
	display: flex;
	align-items: center;
	margin-bottom: 54px;
	transition: all 1s cubic-bezier(0.2, 0.01, 0.1, 1);
}

.rotating-slider__slide {
	position: relative;
	overflow: hidden;
	margin-right: 54px;
	width: 200px;
	height: 125px;
	transition: all 1s cubic-bezier(0.2, 0.01, 0.1, 1);
}

.rotating-slider__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform-origin: center;
	transition: all 1s cubic-bezier(0.2, 0.01, 0.1, 1);
}

.rotating-slider__slide.active {
	transform: rotate(-90deg) scaleX(2.25) scaleY(2.4);
}

.rotating-slider__slide.active .rotating-slider__image {
	width: 100%;
	height: 100%;
	transform: rotate(90deg) scaleX(1.2) scaleY(1.6);
}

.rotating-slider__navigation {
	position: absolute;
	top: 61%;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	width: 95%;
	transform: translateY(-50%);
}

.rotating-slider__prev,
.rotating-slider__next {
	padding: 0 14px 3px;
	border: 1px solid white;
	border-radius: 138px;
	background: transparent;
	transition: 0.5s all ease-in-out;
	cursor: pointer;
}

.rotating-slider__prev svg,
.rotating-slider__next svg {
  width: 33px;
  color: var(--white);
  display: block;
	transition: 0.5s all ease-in-out;
}

.rotating-slider__prev.hidden {
	transform: translateX(-1000%);
}

.rotating-slider__next.hidden {
	transform: translateX(1000%);
}

.rotating-slider__prev:hover,
.rotating-slider__next:hover {
	background: var(--main-color-2);
}

.rotating-slider__prev:hover svg,
.rotating-slider__next:hover svg {
	filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(0%)
		hue-rotate(185deg) brightness(102%) contrast(100%);
}

@media screen and (max-width: 575px) {
	.rotating-slider__navigation {
		top: 88%;
	}
}

.form-g21-wrapper {
  position: relative;
  width: 90%;
  margin-right: auto;
}

.form-g21 {
  padding: 28px;
}

.input-groupwrapper-component,
.textarea-groupwrapper-component,
.input-g21 {
  font-size: 16px;
  font-weight: 700;
  transition: all .4s;
  line-height: 1.3;
  margin: 7px 0;
  outline: none;
  width: 63%;
  padding: 7px;
  border: none;
  background: var(--main-color-2);
  color: var(--dark);
  border-radius: 4px;
  position: relative;
}

@media screen and (max-width: 575px) {
  .form-g21-wrapper {
    width: 100%;
  }

  .input-groupwrapper-component,
  .textarea-groupwrapper-component,
  .input-g21 {
    width: 100%;
  }
}


.input-groupwrapper-component:focus,
.textarea-groupwrapper-component:focus,
.input-g21:focus {
  outline: none;
  height: 100%;
}

.input-groupwrapper-component::after {
  content: '';
  background-color: var(--main-color-2);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.form-g21 label:not(.form-g21-check-label) {
  font-size: 16px;
  color: var(--white);
  display: block;
}

.input-groupwrapper-component::placeholder,
.textarea-groupwrapper-component::placeholder,
.input-g21::placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.form-g21-check {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 23px 0;
}

.form-g21-check a {
  color: var(--tc-1);
}

.form-g21-dec {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  clip-path: polygon(0 14%, 100% 65%, 68% 0, 14% 100%, 93% 100%, 0 68%, 29% 0);
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(198, 89, 195, 0.3);
  background: rgba(198, 89, 195, 0.2);
}

.form-g21-dec2 {
  position: absolute;
  z-index: -1;
  left: 1%;
  bottom: 1%;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 397px;
}

.footer-g21 {
  background-image: url('imagevault/bg-assets/opacity_bg-16908c938b3c05.png');
  background-color: var(--tc-1);
  padding: var(--big-pad) 0 0 0;
}

.footer-g21-top {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 54px;
}

@media screen and (min-width: 991px) {
  .footer-g21-top {
    flex-wrap: nowrap;
  }
}

.footer-logo-g21 {
  background-color: var(--main-color-2);
  clip-path: polygon(26% 0, 85% 9%, 100% 50%, 90% 93%, 23% 100%, 0% 50%);
  float: right;
  padding: 54px;

}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .footer-logo-g21 {
    order: 2;
  }
}

.footer-g21-links {
  color: var(--white);
  font-size: 20px;
  gap: 7px 15px;
}

.footer-g21-links a {
  position: relative;
  text-align: center;
  color: currentColor;
  z-index: 0;
  padding: 14px;
}

.footer-g21-links a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--main-color-1);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  clip-path: polygon(15% 6%, 88% 0, 100% 50%, 90% 93%, 37% 100%, 0% 50%);
  z-index: -1;
}

.footer-g21-links a:hover:after {
  opacity: 0.5;

}

.adult-g21 {
  width: 67px;
}

.adult-g21 img {
  width: 100%;
}

.footer-g21-bottom {
  color: var(--white);
  align-items: center;
  justify-content: space-around;
  padding: 7px;
  backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(198, 89, 195, 0.3);
  background-color: rgba(198, 89, 195, 0.2);
  margin-top: 28px;
  clip-path: polygon(52% 8%, 100% 0, 100% 52%, 90% 100%, 9% 100%, 0 42%, 6% 0);
}

.a-page{
  background: var(--main-color-2);
  z-index: 0;
  position: relative;
  padding: var(--sec-pad) 0;
}

.a-page::after  {
  background: var(--main-color-2);
}

.a-page .about-dec{
background-color: var(--main-color-1);
}

.a-page .form-g21-dec {
  z-index: -1;
}

.category-g21.a-page {
  z-index: 0;
  position: relative;
  background-image: unset;
}

.big-pad {
  position: relative;
  padding: 102px 0;
  gap: 79px;
}

.game-page-g21-img {
  width: 100%;
  max-width: 586px;
    margin: 0 auto;
}

.game-page-g21 .container-g21{
  position: relative;
  z-index: 0;
}

.game-frame-g21 iframe {
  width: 100%;
  height: 397px;
  box-shadow: var(--box-shadow-out);
}

.game-page-g21-content >div {
  color: var(--dark);
  margin-top: 33px;
}
 
.input-g21 {
  background-color: var(--main-color-1);
  width: 100%;
}

.cont-list-g21 {
  color: var(--dark);
  gap: 23px;
  background: rgba(198, 89, 195, 0.2);
  border-radius: 9px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(198, 89, 195, 0.3);
  padding: 28px;
}

.cont-list-g21 a {
  color: currentColor;
  font-size: 20px;
}

.cont-list-g21 a span,
.cont-list-g21 p span {
  color: var(--main-color-1);
  font-weight: 900;
}

.cont-list-g21 p {
  margin: 0;
}

.privacy-g21-txt {
  word-break: break-all;
  color: var(--main-dark2-color);
}

.privacy-g21-txt li {
  padding: 14px 0;
  list-style: square;
}

.privacy-g21-txt a {
  color: currentColor;
}

.light-dir {
  direction: initial;
}
.form-wrapper {
  width: 100%;
}



.button1 {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  font-weight: bold;
  border: 4px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 16px;
}

.button1:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button1:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button1::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


.button2 {
  position: relative;
  padding: 15px 23px;
  border-radius: 45px;
  border: none;
  background-color: rgb(151, 95, 255);
  color: white;
  box-shadow: 0px 10px 10px rgb(210, 187, 253) inset,
  0px 5px 10px rgba(5, 5, 5, 0.212),
  0px -10px 10px rgb(124, 54, 255) inset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button2::before {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.678);
  content: "";
  filter: blur(1px);
  top: 7px;
  border-radius: 50%;
}

.button2::after {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.137);
  content: "";
  filter: blur(1px);
  bottom: 7px;
  border-radius: 50%;
}

.button2:hover {
  animation: jello-horizontal 0.9s both;
}

@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}


.button3 {
  --color1: #644dff;
  --color2: #4836bb;
  --color3: #654dff63;
  cursor: pointer;
  padding: 14px 15px;  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125em;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  background: var(--color1);
  border: 2px solid var(--color2);
  border-radius: .75rem;
  box-shadow: 0 8px 0 var(--color2);
  transform: skew(-10deg);
  transition: all .1s ease;
  filter: drop-shadow(0 15px 20px var(--color3));
}

.button3:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(8px);
  box-shadow: 0 0 0 var(--color3);
}

.button4 {
  color: purple;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid purple;
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.button4:hover {
  color: white;
}

.button4::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: purple;
  z-index: -1;
  transition: all 1s;
}

.button4:hover::before {
  width: 160%;
}


.button5 {
  padding: 12.5px 30px;
  border: 0;
  border-radius: 100px;
  background-color: #2ba8fb;
  color: #ffffff;
  font-weight: Bold;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  display: inline-block;
}

.button5:hover {
  background-color: #6fc5ff;
  box-shadow: 0 0 20px #6fc5ff50;
  transform: scale(1.1);
}

.button5:active {
  background-color: #3d94cf;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  box-shadow: none;
  transform: scale(0.98);
}

.footer-logos {
  position: relative;
  z-index: 4;
  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;
    }
  }
}

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