:root {
  --color-primary: #0095ff;
  --color-primary-light: #8ecefd;
  --color-primary-dark: #0664a7;
  --main-color: #121212;
  --main-color-2: #2a2a2a;
  --color-Grey-light-1: #faf9f9;
  --color-Grey-light-2: #f4f2f2;
  --color-Grey-light-3: #f0eeee;
  --color-Grey-light-4: #ccc;
  --color-Grey-dark-1: #222;
  --color-Grey-dark-2: #777;
  --color-Grey-dark-3: #999;
  --u: 1.5vmin;
  --clr: #777;
  --bg: #444857;
  --neon-light: 0 1.2rem 2rem var(--color-primary-dark);
  --shadow-dark: 1rem 2rem 6rem rgba(black, .6) !important;
}

a {
  text-decoration: none;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

@media only screen and (width <= 25em) {
  html {
    font-size: 40%;
  }
}

@media only screen and (width <= 75em) {
  html {
    font-size: 56.25%;
  }
}

@media only screen and (width <= 56.25em) {
  html {
    font-size: 50%;
  }
}

@media only screen and (width >= 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  background-color: var(--main-color);
  font-family: Poppins, sans-serif;
}

::-webkit-scrollbar {
  width: .5rem;
  height: .8rem;
  transition: all .3s;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 13rem;
  transition: all .3s;
}

body::-webkit-scrollbar-thumb:active {
  background-color: var(--color-primary-dark);
}

::-webkit-scrollbar-thumb:horizontal {
  background-color: var(--color-primary-light);
  border-radius: 13rem;
  height: .4rem;
  transition: all .3s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

*, :after, :before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

section {
  opacity: 0;
  transition: all 1.5s;
  transform: translateY(-1rem);
}

@media only screen and (width <= 25em) {
  section {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-active {
  opacity: 1 !important;
  transform: translateY(0)translateX(0) !important;
}

a {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

::selection {
  color: #fff;
  background-color: #8accfc;
}

@keyframes loading {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes up {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }

  40% {
    transform: translateX(-2rem);
  }

  60% {
    transform: translateX(-1rem);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  opacity: 0;
  transition: all .3s;
  z-index: 0 !important;
}

.slided {
  opacity: 1 !important;
}

.hovered {
  opacity: 1;
  transform: translateY(-1rem);
}

.unhovered {
  opacity: .5;
}

.paragraph-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.mobile {
  display: inline-block;
}

@media only screen and (width <= 75em) {
  .mobile {
    visibility: none !important;
    display: none !important;
  }
}

.margin-big {
  margin-top: 11rem;
}

.margin-r-s {
  margin-right: 1rem;
}

.margin-l-s {
  margin-left: 1rem;
}

.margin-top-s {
  margin-top: 3rem;
}

.sticky {
  transform: translateY(-3.5rem);
}

@media only screen and (width <= 75em) {
  .sticky {
    transform: none;
  }
}

.margin {
  margin: 2rem;
}

.margin-bottom {
  margin-bottom: 2rem;
}

.icon-size {
  font-size: 2rem;
}

.imagea {
  object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hidden-2 {
  visibility: hidden !important;
  display: none !important;
}

.overlay {
  -webkit-backdrop-filter: blur(4px) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 100 !important;
  background-color: #00000080 !important;
  width: 100% !important;
  height: 100% !important;
  transition: all .5s !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
}

.overlay-img {
  visibility: visible;
  z-index: 101;
  width: 120rem;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.exist {
  cursor: pointer;
  z-index: 300;
  font-size: 8rem;
  position: fixed;
  top: 10%;
  right: 2%;
}

.spinner {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinning {
  text-align: center;
  margin: 5rem auto;
  font-size: 10rem;
  animation: 1s linear infinite spin;
}

.spinsmall {
  margin-top: -2rem;
  position: absolute;
  left: 50%;
  font-size: 2rem !important;
  bottom: 0 !important;
}

.flex {
  justify-content: space-evenly;
  align-items: center;
  gap: 54rem;
  display: flex;
}

.header {
  z-index: 2000;
  background-color: #fff;
  background-color: var(--main-color-2);
  border-bottom: 3px solid var(--color-primary-dark);
  justify-content: space-between;
  align-items: center;
  height: 7rem;
  padding: 2rem;
  font-size: 1.3rem;
  transition: all .3s ease-in-out;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav__list {
  flex: 0 0 40%;
  justify-content: flex-end;
  align-items: center;
  gap: 6rem;
  margin-left: 7rem;
  list-style: none;
  display: flex;
}

@media only screen and (width <= 75em) {
  .nav__list {
    display: none;
  }
}

.nav__link {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  position: relative;
}

.nav__link:hover > span {
  width: 100%;
}

.line {
  background: linear-gradient(to right, var(--color-primary-light), var(--color-primary-dark));
  opacity: 1;
  border-radius: 1rem;
  width: 0;
  height: .2rem;
  transition: all .5s;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.active-nav {
  width: 100%;
}

.landing {
  z-index: 1;
  max-width: 100%;
  min-height: 100vh;
  margin-top: 7rem;
  position: relative;
  overflow: hidden;
}

.landing-2 {
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.landing-3 {
  padding: 0 1rem 15rem;
  overflow: hidden;
}

.landing:after {
  content: "";
  background-color: var(--color-Grey-dark-1);
  z-index: -1;
  transform-origin: center;
  border-radius: 0;
  width: 150%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 60%;
  transform: translateY(90%)translateX(-45%)skewX(20deg);
}

.news {
  background-image: linear-gradient(to top right, #5297f894, #84bfffa4), url("psbackground.1e2c9a56.webp");
  background-position: 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 2rem;
}

.search_results {
  z-index: 1;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  min-height: 50vh;
  margin-top: 2.5rem;
  margin-left: 2rem;
  display: flex;
  position: relative;
}

.search_results-2 {
  justify-content: center;
  align-items: center;
  gap: 5rem;
  min-height: 50vh;
  margin: 0;
  padding: 5rem 1rem;
  position: relative;
}

.search__title {
  margin-left: 2rem;
  text-transform: none !important;
  font-size: 2.25rem !important;
}

@media only screen and (width <= 37.5em) {
  .search__title {
    font-size: 1rem;
  }
}

.result-bar {
  color: var(--color-Grey-light-4);
  z-index: 2;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  display: flex;
  position: relative;
}

@media only screen and (width <= 56.25em) {
  .result-bar {
    justify-content: space-between;
  }
}

.game_results {
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  display: flex;
  position: relative;
}

.games-genre {
  z-index: 2;
  gap: 2.5rem;
  padding: 5rem 2rem;
  display: flex;
  position: relative;
}

@media only screen and (width <= 25em) {
  .games-genre {
    gap: 1.5rem;
    padding: 3rem 1rem;
  }
}

.search__genres {
  background-color: var(--main-color-2);
  z-index: -1;
  flex-direction: column;
  flex: 0 0 15%;
  display: flex;
  position: relative;
}

.genre__title {
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  cursor: pointer;
  margin: 2rem;
  padding: 1rem 1.2rem;
  font-size: 1.8rem;
  transition: all .3s;
  position: relative;
}

.genre__title:after {
  content: "";
  background-color: var(--color-primary);
  z-index: -1;
  width: 0;
  height: 100%;
  transition: all .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.genre__title:hover:after {
  width: 100%;
}

.active-button {
  background-color: var(--color-primary);
  box-shadow: var(--neon-light);
  transition: all .3s;
}

#platforms {
  margin-top: 8rem;
}

.platforms {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  background-image: linear-gradient(to top right, #6b79d1, #6e82d6, #728bda, #7794de, #7d9de2, #75a9eb, #6fb4f2, #69bff8, #52cffe, #41b6ff, #46a3fa, #5f81fb);
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 6rem 1rem;
  font-family: Changa, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.game-plat {
  cursor: pointer;
  margin: .5rem;
  background-color: var(--main-color) !important;
  width: 44rem !important;
}

.game__background-plat {
  width: 44rem !important;
}

.plat__results {
  position: relative;
}

.footer-section {
  background: #1e1c22 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%23272629' fill-opacity='0.4' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: var(--color-primary);
  float: left;
  margin-top: 8px;
  font-size: 30px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: 600;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  z-index: 2;
  position: relative;
}

.footer-pattern img {
  background-position: 100% 100%;
  background-size: cover;
  height: 330px;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  color: #7e7e7e;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.footer-social-icon a {
  color: #fff;
  margin-right: 15px;
  font-size: 16px;
}

.footer-social-icon i {
  text-align: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
}

.facebook-bg {
  background: #3b5998;
}

.twitter-bg {
  background: #55acee;
}

.google-bg {
  background: #dd4b39;
}

.footer-widget-heading h3 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.footer-widget-heading h3:before {
  content: "";
  background: var(--color-primary);
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.footer-widget ul li {
  float: left;
  width: 50%;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: var(--color-primary);
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  color: #fff;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  width: 100%;
  padding: 14px 28px;
}

.subscribe-form button {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 13px 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  color: #878787;
  margin: 0;
  font-size: 14px;
}

.copyright-text p a {
  color: var(--color-primary);
}

.footer-menu li {
  margin-left: 20px;
  display: inline-block;
}

.footer-menu li:hover a {
  color: var(--color-primary);
}

.footer-menu li a {
  color: #878787;
  font-size: 14px;
}

.wrapper {
  list-style: none;
  display: inline-flex;
}

.wrapper .icon {
  cursor: pointer;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 10px;
  padding: 15px;
  font-size: 18px;
  transition: all .2s cubic-bezier(.68, -.55, .265, 1.55);
  display: flex;
  position: relative;
  box-shadow: 0 10px 10px #0000001a;
}

.wrapper .tooltip {
  color: #fff;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 14px;
  transition: all .3s cubic-bezier(.68, -.55, .265, 1.55);
  position: absolute;
  top: 0;
  box-shadow: 0 10px 10px #0000001a;
}

.wrapper .tooltip:before {
  content: "";
  background: #fff;
  width: 8px;
  height: 8px;
  transition: all .3s cubic-bezier(.68, -.55, .265, 1.55);
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%)rotate(45deg);
}

.wrapper .icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: -45px;
}

.wrapper .icon:hover span, .wrapper .icon:hover .tooltip {
  text-shadow: 0 -1px #0000001a;
}

.wrapper .facebook:hover, .wrapper .facebook:hover .tooltip, .wrapper .facebook:hover .tooltip:before {
  color: #fff;
  background: #1877f2;
}

.wrapper .twitter:hover, .wrapper .twitter:hover .tooltip, .wrapper .twitter:hover .tooltip:before {
  color: #fff;
  background: #1da1f2;
}

.wrapper .instagram:hover, .wrapper .instagram:hover .tooltip, .wrapper .instagram:hover .tooltip:before {
  color: #fff;
  background: #e4405f;
}

.wrapper .github:hover, .wrapper .github:hover .tooltip, .wrapper .github:hover .tooltip:before {
  color: #fff;
  background: #333;
}

.wrapper .youtube:hover, .wrapper .youtube:hover .tooltip, .wrapper .youtube:hover .tooltip:before {
  color: #fff;
  background: #cd201f;
}

.title {
  color: #fff;
  text-transform: uppercase;
  pointer-events: none;
  margin-bottom: 1.2rem;
  font-size: 4.4rem;
}

.title-game {
  color: var(--color-primary-light);
  margin: 2.2rem 3rem;
  font-size: 3.4rem;
  font-weight: 200;
}

.sub-title {
  pointer-events: none;
  color: var(--color-Grey-light-4);
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 300;
}

.sub-title-primary {
  color: var(--color-primary);
  text-align: center;
  font-weight: 800;
}

.sub-title-1 {
  color: #fff;
}

.paragraph {
  color: #fff;
  text-shadow: .5px .5px .5px #00000040;
  text-align: left;
  width: 60rem;
  margin: 2rem 0 3rem;
  font-size: 1.6rem;
  line-height: 2rem;
}

.paragraph-2 {
  width: 50rem;
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 3rem;
}

@media only screen and (width <= 56.25em) {
  .paragraph {
    width: 50rem;
    font-size: 1.7rem;
  }
}

@media only screen and (width <= 25em) {
  .paragraph {
    text-align: center;
    width: 30rem;
  }
}

.head {
  color: var(--color-Grey-light-4);
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  transition: all .3s;
}

@media only screen and (width <= 37.5em) {
  .head {
    font-size: 1rem;
  }
}

.note {
  text-align: end;
  text-transform: capitalize;
  color: var(--color-primary-light);
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  right: 10rem;
}

@media only screen and (width <= 37.5em) {
  .note {
    margin: 0;
    font-size: .7rem;
    bottom: -1.5rem;
    right: 1rem;
  }
}

.tech__title {
  color: #fff;
  text-transform: uppercase;
  padding: 1.5rem;
  font-family: Changa, sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
}

.center-title {
  text-align: center;
  font-family: Electrolize, sans-serif;
  position: relative;
}

.center-title:after {
  content: "";
  background-color: var(--color-primary-dark);
  border-radius: 1rem;
  width: 25rem;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 42%;
}

@media only screen and (width <= 75em) {
  .center-title:after {
    left: 38%;
  }
}

@media only screen and (width <= 37.5em) {
  .center-title:after {
    left: 29%;
  }
}

.game-name {
  color: #fff;
  text-transform: uppercase;
  font-size: 4.8rem;
  font-weight: 100;
}

.game-name-2 {
  font-size: 3rem;
}

.bold-title {
  color: #fff;
  text-transform: uppercase;
  font-family: sst, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.game__paragraph {
  color: var(--color-Grey-light-1);
  text-align: left;
  border-radius: 1rem;
  width: 80%;
  padding: 1rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
}

@media only screen and (width <= 56.25em) {
  .game__paragraph {
    width: 95%;
    font-size: 1.5rem;
  }
}

.alert {
  color: #fff;
  z-index: 3000;
  background-color: #f44336;
  margin-bottom: 15px;
  padding: 2rem;
  font-size: 2rem;
  line-height: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (width <= 56.25em) {
  .alert {
    padding: .5rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.closebtn {
  color: var(--color-primary);
  float: right;
  cursor: pointer;
  text-align: center;
  margin-left: 15px;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 20px;
  transition: all .3s;
  animation: 2s appear;
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-42%);
}

.logo {
  margin-left: 5rem;
  display: flex;
}

@media only screen and (width <= 37.5em) {
  .logo {
    margin-left: 0;
  }
}

.logo__img {
  text-align: center;
  width: 20rem;
}

@media only screen and (width <= 37.5em) {
  .logo__img {
    width: 14rem;
  }
}

@media only screen and (width <= 75em) {
  .logo {
    position: absolute;
  }
}

.icon {
  width: 40rem;
  margin-bottom: 1rem;
}

@media only screen and (width <= 56.25em) {
  .icon {
    width: 39rem;
  }
}

.iconn {
  margin: .4rem;
}

.button, .button:link, .button:visited {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--color-primary);
  z-index: 2147483647;
  border-radius: 100rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 4rem;
  padding: .5rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 100;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  position: relative;
}

.button-nomargin {
  margin: 0 !important;
}

.button:after {
  background-color: var(--color-primary);
  content: "";
  z-index: -1;
  border-radius: 10rem;
  width: 100%;
  height: 100%;
  transition: all .4s;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.button:hover {
  transform: translateY(-.3rem);
  box-shadow: 0 10px 20px #0000009f;
}

.button:hover:after {
  opacity: 0;
  transform: scale(1.4);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px #0000009f;
}

.wishlist {
  background-color: #ff4500 !important;
  padding: 1rem 4.4rem !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
}

.wishlist:after {
  background-color: #ff4500;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  cursor: pointer;
  z-index: 2147483647;
  background-color: #5de6de;
  background-image: linear-gradient(315deg, #5dc4e6 0%, #a86ccb 74%);
  border: none;
  border-radius: 50%;
  width: 5.5rem;
  height: 5.5rem;
  transition: all .2s;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

.noselect svg {
  fill: #fff;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.noselect:hover {
  width: 6rem;
  height: 6rem;
  box-shadow: 0 1px 5px #0003;
}

.noselect:hover:before {
  color: #fff;
}

.noselect:hover svg {
  animation: 2s linear infinite bounce;
}

@keyframes bounce {
  0% {
    transform: translateX(-50%)translateY(-50%);
  }

  25% {
    transform: translateX(-50%)translateY(-65%);
  }

  50% {
    transform: translateX(-50%)translateY(-50%);
  }

  75% {
    transform: translateX(-50%)translateY(-35%);
  }

  100% {
    transform: translateX(-50%)translateY(-50%);
  }
}

.noselect:focus {
  outline: none;
}

.search {
  z-index: 100000;
  background-color: #0000;
  border: 2px solid #0000;
  border-radius: 10rem;
  outline: none;
  width: 5rem;
  padding: .8rem;
  transition: all .5s cubic-bezier(.9, 0, .3, .9);
  display: flex;
  position: relative;
  overflow: hidden;
}

.search__active {
  background-color: #fff;
  border: 2px solid #0095ff;
  width: 80%;
}

@media only screen and (width <= 75em) {
  .search__active {
    width: 46%;
  }
}

@media only screen and (width <= 37.5em) {
  .search__active {
    width: 40%;
  }
}

.search-visible {
  background-color: var(--main-color-2);
  color: #fff;
  z-index: 1;
  border: #0000;
  width: 20%;
  padding: 1.2rem .8rem;
  position: relative;
  left: 2rem;
}

@media only screen and (width <= 75em) {
  .search-visible {
    width: 50%;
  }
}

@media only screen and (width <= 25em) {
  .search-visible {
    width: 100%;
  }
}

@media only screen and (width <= 75em) {
  .search {
    right: 9rem;
  }
}

.search__button {
  cursor: pointer;
  background-color: #0000;
  border: none;
  align-items: center;
  transition: all .5s;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.search__button-visible {
  left: .5rem;
}

.search__button-show {
  transform: rotate(90deg)translateY(-1rem);
}

.search__input {
  pointer-events: none;
  opacity: 0;
  border: none;
  border-radius: 10rem;
  outline: none;
  width: 100%;
  height: 100%;
  padding-left: 3.5rem;
  font-family: inherit;
  font-size: 1.3rem;
  transition: all 50ms;
}

.search__input-visible {
  opacity: 1;
  pointer-events: initial;
  background-color: var(--main-color-2);
  color: #fff;
}

.search__input-show {
  pointer-events: initial;
  opacity: 1;
}

.search__input:-webkit-autofill {
  transition: background-color 5000s ease-in-out;
}

.search__input:-webkit-autofill:hover {
  transition: background-color 5000s ease-in-out;
}

.search__input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out;
}

.search__input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out;
}

.search__input::-webkit-input-placeholder {
  color: #8d8b8b;
  font-weight: 100;
}

.search__input:focus {
  outline: none;
}

.search__icon {
  cursor: pointer;
  fill: var(--color-primary);
  width: 2.8rem;
  height: 2.8rem;
  transition: all .3s;
}

@media only screen and (width <= 75em) {
  .search__icon {
    width: 3.6rem;
    height: 3.6rem;
    margin-left: -.2rem;
  }
}

.search__icon-visible {
  fill: var(--color-Grey-light-4);
  width: 2.1rem;
  height: 2.1rem;
  margin-left: -1.2rem !important;
}

@media only screen and (width <= 75em) {
  .search__icon-visible {
    fill: var(--color-Grey-light-4);
    width: 2.1rem;
    height: 2.1rem;
    margin-left: -2.2rem !important;
  }
}

.search__icon:hover {
  fill: var(--color-primary-light);
}

.result-box {
  background-color: var(--main-color-2);
  z-index: 20000;
  border-radius: .5rem;
  width: 35%;
  min-height: 25vh;
  transition: all .3s;
  position: fixed;
  top: 9%;
  right: 0;
}

@media only screen and (width <= 75em) {
  .result-box {
    width: 70%;
    right: 1rem;
  }
}

@media only screen and (width <= 37.5em) {
  .result-box {
    width: 60%;
    right: 1rem;
  }
}

.search-suggest {
  background-color: var(--main-color-2);
  width: 100%;
  padding: 3rem 1rem;
  position: absolute;
  top: 43px;
  left: 0;
}

.search-suggestions {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  display: flex;
}

.suggestion {
  background-color: var(--main-color);
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  list-style: none;
  transition: all .3s;
  display: flex;
}

.suggestion__photo {
  border-radius: .5rem;
  height: 9rem;
}

.suggestion__title {
  color: #fff;
  text-transform: capitalize;
  margin-left: .5rem;
  padding: .5rem;
  font-size: 1.4rem;
}

.suggestion-2 {
  margin: .5rem 0;
}

.suggestion-2:hover {
  box-shadow: 0 2rem 4rem #0000009b;
  transform: translateY(-.2rem) !important;
}

.suggestion:hover {
  opacity: .9;
  background-color: var(--color-primary);
  transform: translateY(-.5rem);
}

.slider {
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.slider-1 {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.slider-3 {
  width: 100%;
  height: 100%;
}

.slide {
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all 1s;
  display: flex;
  position: absolute;
  top: 0;
}

.slide-1 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
}

.slide__background {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide__background-static {
  position: relative;
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (width <= 56.25em) {
  .slide__background-height {
    width: auto;
    height: 100% !important;
  }
}

@media only screen and (width <= 37.5em) {
  .slide__background {
    width: auto;
    height: 100%;
  }
}

.slide__info {
  z-index: 3;
  opacity: 0;
  flex-direction: column;
  transition: all 1.8s ease-in-out;
  display: flex;
  position: absolute;
  top: 30%;
  left: 6rem;
  overflow: hidden;
  transform: translateY(-1rem);
}

@media only screen and (width <= 56.25em) {
  .slide__info {
    top: 56%;
  }
}

.slide__photo {
  object-fit: cover;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.slide__photo-2 {
  padding: 2rem;
  transform: scale(.98);
}

.slide__photo-3 {
  width: 100%;
  height: 100%;
}

.slide__photo-4 {
  filter: blur(3px);
  width: 100%;
  height: 100%;
}

.slide__photo-small {
  object-fit: cover;
  pointer-events: none;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
}

.slide__pagination {
  background-color: --main-color;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  padding: 3.5rem 0;
  display: flex;
}

@media only screen and (width <= 56.25em) {
  .slide__pagination {
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 3.5rem 1.5rem;
  }
}

.slide__button {
  cursor: pointer;
  opacity: 1;
  width: 25em;
  height: 13rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

@media only screen and (width <= 56.25em) {
  .slide__button {
    width: 23rem;
    height: 11rem;
  }
}

.slide__button:hover {
  box-shadow: var(--shadow-dark);
  opacity: .7;
  transform: translateY(-1rem);
}

.active {
  border: 3px solid var(--color-primary);
  box-shadow: var(--neon-light);
  border-radius: 2rem;
  padding: .2rem;
  transform: translateY(-1rem);
}

.load {
  opacity: .3;
  background-color: #ffffff14;
  background-color: var(--color-Grey-dark-3);
  height: 100%;
  animation: 5s linear infinite loading;
  position: absolute;
  left: 0;
  right: 0;
}

.infoico {
  top: 16% !important;
}

@media only screen and (width <= 56.25em) {
  .infoico {
    top: 30% !important;
  }
}

.gradient {
  z-index: 2;
  background: radial-gradient(#1717171f, #00000025, #000);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gradient-2 {
  background: radial-gradient(#1717171f, #00000058, #000) !important;
}

.game {
  background-color: #19223e;
  border-radius: .5rem;
  flex-direction: column;
  gap: 1rem;
  width: 28rem;
  padding: .2rem 1.5rem 2.25rem;
  transition: all .5s;
  animation: 1.5s linear up;
  display: flex;
}

@media only screen and (width <= 56.25em) {
  .game {
    width: 47%;
  }
}

@media only screen and (width <= 25em) {
  .game {
    width: 100%;
  }
}

.game-gen {
  background-color: var(--main-color-2);
  border-radius: 1rem;
  width: 40rem;
}

.game-gen-result {
  width: 44rem;
}

@media only screen and (width <= 75em) {
  .game-gen {
    width: 46%;
  }
}

@media only screen and (width <= 56.25em) {
  .game-gen {
    width: 44%;
  }
}

@media only screen and (width <= 37.5em) {
  .game-gen {
    width: 100%;
  }
}

@media only screen and (width <= 25em) {
  .game-gen {
    width: 90%;
  }
}

.game-gen:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem #0009 !important;
}

.game:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem #4b4b4b99;
}

.game__background {
  align-self: center;
  width: 27.5rem;
  height: 27rem;
  margin-bottom: .5rem;
  transition: all .3s;
}

@media only screen and (width <= 56.25em) {
  .game__background {
    width: 108%;
  }
}

@media only screen and (width <= 25em) {
  .game__background {
    width: 108%;
  }
}

.game__background:hover {
  filter: opacity(70%);
}

.game__background-gen {
  width: 40rem;
  height: 25rem;
}

.game__background-gen-result {
  width: 44.5rem;
}

@media only screen and (width <= 75em) {
  .game__background-gen {
    width: 100%;
  }
}

.game__pic {
  object-fit: cover;
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
}

.game__title {
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 1.4rem;
}

.game__description {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.game__button {
  justify-self: flex-end;
  z-index: 1 !important;
  color: #19223e !important;
  padding: .2rem 1.2rem !important;
}

.game__genre {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--color-primary);
  border-radius: 100rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: .2rem .6rem;
  font-size: 1.1rem;
  font-weight: 100;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 2rem 4rem #0009;
}

.game__genre:hover {
  transform: translateY(-.5rem);
}

.game__plattforms {
  color: var(--color-Grey-light-3);
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  gap: .5rem;
  margin-top: -5rem;
  margin-bottom: 1rem;
  margin-left: .7rem;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
}

.game__plattforms-1 {
  gap: 1rem;
  width: 60%;
  font-size: 1.4rem;
  margin-top: 0 !important;
}

.game__plattform {
  background-color: var(--main-color);
  border: 2px solid var(--color-primary);
  padding: .2rem .4rem;
}

.game__plattform-1 {
  background-color: #0000005d;
  border: 2px solid #ededed;
  align-items: center;
  font-size: 1.6rem;
  display: flex;
}

.date {
  color: var(--color-Grey-light-4);
  font-size: 1.1rem;
  font-weight: 800;
}

.date-1 {
  font-size: 1.8px;
}

.pagination__results {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem .5rem;
  padding: 2.5rem 1rem;
  display: flex;
}

.pagination__button {
  cursor: pointer;
  background-color: var(--color-primary-dark);
  box-shadow: 0 1.5rem 3rem var(--color-Grey-dark-1);
  border-radius: 113rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: .5rem;
  transition: all .3s;
  display: flex;
}

.pagination__button:hover {
  box-shadow: var(--neon-light);
  opacity: .9;
}

.pagination__number {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
}

.mini-slider {
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  grid-template-columns: repeat(20, 1fr);
  gap: 3rem;
  margin-left: 1rem;
  padding-bottom: 2rem;
  display: grid;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

.mini-slide {
  cursor: default;
  background-color: #000;
  border-radius: .5rem;
  flex-direction: column;
  gap: 1rem;
  width: 26rem;
  height: 41rem;
  padding: 0;
  transition: all .3s;
  animation: .5s linear up;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mini-slide:after {
  z-index: 1;
  content: "";
  background-color: var(--color-primary);
  opacity: 0;
  border-radius: .5rem;
  width: 0;
  height: 100%;
  padding: 1rem;
  transition: all .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.mini-slide:hover:after {
  opacity: 1;
  width: 100%;
}

.mini-slide__background {
  z-index: 2;
  align-self: center;
  height: 100%;
  transition: all .3s;
  display: block;
  overflow: hidden;
}

.mini-slide__background:hover {
  opacity: .9;
  transform: scale(1.1)rotate(-2deg);
}

.mini-slide__photo {
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
}

.mini-slide__info {
  align-items: center;
  padding-bottom: 4.25rem;
  display: flex;
  position: relative;
}

.mini-slide__title {
  color: #fff;
  z-index: 2;
  margin-left: .5rem;
  padding-top: 1.3rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  position: relative;
}

.slide__pagination2 {
  justify-content: center;
  display: flex;
}

.slide-btn {
  background-color: var(--color-primary);
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  padding: 2rem;
  transition: all .3s;
  display: flex;
}

.slide-btn:hover {
  opacity: .8;
}

.buttonprev {
  cursor: pointer;
  z-index: 10;
  border-radius: 10rem;
  font-size: 3rem;
  position: absolute;
  top: 70%;
  left: 2rem;
  transform: translate(2rem, -50%);
}

@media only screen and (width <= 25em) {
  .buttonprev {
    top: 81%;
  }
}

@media only screen and (width <= 75em) {
  .buttonprev {
    top: 75%;
  }
}

.buttonnext {
  cursor: pointer;
  z-index: 10;
  border-radius: 10rem;
  font-size: 3rem;
  position: absolute;
  top: 70%;
  right: 2rem;
  transform: translate(-2rem, -50%);
}

@media only screen and (width <= 25em) {
  .buttonnext {
    top: 81%;
  }
}

@media only screen and (width <= 75em) {
  .buttonnext {
    top: 75%;
  }
}

.dragging {
  cursor: grabbing;
  scroll-behavior: auto !important;
}

.no-trans {
  scroll-behavior: auto !important;
}

.options {
  -webkit-user-select: none;
  user-select: none;
  background-color: var(--main-color-2);
  border-radius: 3rem;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
  margin-left: 2rem;
  padding: 1rem 2.5rem;
  transition: all .3s;
  display: flex;
}

@media only screen and (width <= 56.25em) {
  .options {
    gap: .5rem;
  }
}

@media only screen and (width <= 37.5em) {
  .options {
    gap: .3rem;
    margin: 0;
    padding: .5rem .1rem;
  }
}

.option {
  cursor: pointer;
  transition: all .3s;
  position: relative;
  color: #fff !important;
}

.option-active {
  border-radius: 2.5rem;
  padding: .2rem .5rem;
  font-weight: 500;
  color: var(--color-Grey-light-2) !important;
  background-color: var(--color-primary-dark) !important;
}

.select {
  justify-content: center;
  align-items: center;
  transition: all .5s;
  display: flex;
}

.select > :hover {
  color: #fff;
  text-shadow: 0 .5rem 4rem #000000b3;
  border: #0000;
}

.menu {
  opacity: 1;
  z-index: 2147483647;
  background-color: #323741;
  border-radius: .5rem;
  height: 0%;
  padding: .2rem .5rem;
  list-style: none;
  transition: all 1s;
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 .5rem 1rem #000000b3;
}

.menu-active {
  height: 100%;
  display: table;
}

.menu__icon {
  margin-left: .5rem;
  transition: all .3s;
}

@media only screen and (width <= 37.5em) {
  .menu__icon {
    margin: .2rem;
  }
}

.menu__option {
  width: 100%;
  margin: .3rem 0;
  padding: .7rem .5rem;
  transition: all .3s;
  border-radius: .5rem !important;
}

@media only screen and (width <= 37.5em) {
  .menu__option {
    padding: 0;
  }
}

@media only screen and (width <= 25em) {
  .menu__option {
    padding: 0;
  }
}

.menu__option:hover {
  color: #fff;
  background-color: var(--main-color-2);
}

.options-active {
  box-shadow: 0 .5rem 1rem var(--color-primary-dark);
}

.icon-active {
  transform: rotate(180deg);
}

.search__titlee {
  z-index: -1;
  position: relative;
}

.top-results {
  transition: all .3s;
}

.top-results:hover {
  color: var(--color-primary);
}

.box {
  opacity: .4;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  font-family: Changa, sans-serif;
  transition: all 2s;
  display: flex;
  position: relative;
  transform: translateX(10rem);
}

@media only screen and (width <= 75em) {
  .box {
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
  }
}

.box-1 {
  background-color: var(--main-color);
  padding-bottom: 4rem;
}

.box__info {
  color: var(--color-Grey-light-1);
  text-transform: capitalize;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: -20rem;
  font-size: 2.2rem;
  display: flex;
}

@media only screen and (width <= 75em) {
  .box__info {
    margin: 0;
  }
}

@media only screen and (width <= 25em) {
  .box__info {
    font-size: 1.4rem;
  }
}

.box__title {
  color: var(--color-primary);
  font-size: 4.5rem;
  font-weight: 900;
}

@media only screen and (width <= 25em) {
  .box__title {
    align-self: center;
    font-size: 3.4rem;
  }
}

.box__title-2 {
  color: #0d830d;
}

.box__title-3 {
  color: #fff;
  background-repeat: no-repeat;
  padding: 1rem;
  font-size: 3.5rem;
  position: relative;
}

@media only screen and (width <= 37.5em) {
  .box__title-3 {
    font-size: 2rem;
  }
}

.box__title-3:after {
  content: "";
  z-index: -1;
  background-color: #bdbd5b;
  width: 10%;
  height: 4px;
  position: absolute;
  top: 4%;
  left: 1%;
  transform: rotate(45deg);
}

.box__title-3:before {
  content: "";
  z-index: -1;
  background-color: #bdbd5b;
  width: 10%;
  height: 4px;
  position: absolute;
  bottom: 4%;
  left: 20%;
  transform: rotate(45deg);
}

.box__back {
  height: 80rem;
}

@media only screen and (width <= 75em) {
  .box__back {
    height: 50rem;
  }
}

.box__back-2 {
  height: 60rem;
}

.box__pic {
  object-fit: contain;
  height: 100%;
}

.game__Slider {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  background-color: #0035dc;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  padding: 10rem 1rem;
  font-family: Changa, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.game__Slider-1 {
  background-image: linear-gradient(to top right, #46474794, #2b2c2ca4), url("psbackground2.adcd54c3.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.game__Slider-2 {
  background-color: var(--main-color);
  padding-top: 2rem;
}

.game-slide {
  background-color: var(--main-color-2);
  border-radius: 1.2rem;
  flex: 0 0 80rem;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: 35rem;
  transition: all .3s;
  display: flex;
  box-shadow: 1rem 2rem 6rem #0009;
}

.game-slide:hover {
  border: 2px var(--color-Grey-light-4) solid;
  transform: translateY(-1rem);
}

.game-slide-2 {
  flex: 0 0 53rem;
  height: 30rem;
  box-shadow: 1rem 2rem 6rem #0003;
}

.game-slide-2:hover {
  border: 1px var(--color-Grey-dark-2) solid;
  transform: scale(1.05);
}

.game-slide__background {
  z-index: 2;
  border-radius: 1.2rem;
  align-self: center;
  width: 50%;
  height: 100%;
  transition: all .3s;
  display: block;
  overflow: hidden;
}

.game-slide__info {
  color: var(--color-Grey-light-2);
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 3rem;
  display: flex;
}

@media only screen and (width <= 37.5em) {
  .game-slide__info {
    gap: .5rem;
  }
}

.game-slide__title {
  text-transform: uppercase;
  color: #fff;
  font-size: 2.3rem;
}

.game-slide__paragraph {
  border-top: var(--color-Grey-light-4) 1px solid;
  width: 40rem;
  padding: 1rem;
  font-size: 1.8rem;
}

@media only screen and (width <= 37.5em) {
  .game-slide__paragraph {
    width: 30rem;
    font-size: 1.6rem;
  }
}

.game-slide__photo {
  object-fit: cover;
  border-radius: 1.2rem;
  width: 100%;
  height: 100%;
}

.game-slide__iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.game-btn, .game-btn-2 {
  cursor: pointer;
  z-index: 20;
  font-size: 5rem;
  position: absolute;
}

.game-buttonprev {
  top: 70%;
  left: 4rem;
}

@media only screen and (width <= 56.25em) {
  .game-buttonprev {
    top: 79%;
  }
}

@media only screen and (width <= 25em) {
  .game-buttonprev {
    top: 81%;
  }
}

.game-buttonprev-2 {
  top: 88%;
}

@media only screen and (width <= 56.25em) {
  .game-buttonprev-2 {
    top: 92%;
  }
}

.game-buttonprev-3 {
  position: absolute;
  top: 50%;
  left: 5rem;
}

.game-buttonnext {
  top: 70%;
  right: 4rem;
}

@media only screen and (width <= 56.25em) {
  .game-buttonnext {
    top: 79%;
  }
}

@media only screen and (width <= 25em) {
  .game-buttonnext {
    top: 81%;
  }
}

.game-buttonnext-2 {
  top: 88%;
}

@media only screen and (width <= 56.25em) {
  .game-buttonnext-2 {
    top: 92%;
  }
}

.game-buttonnext-3 {
  position: absolute;
  top: 50%;
  right: 5rem;
}

.youtube__icon {
  color: #fd1c27;
  background-color: #fff;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 20%;
  margin: .5rem;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.youtube__icon:after {
  content: "youtube";
  color: #000;
  text-align: center;
  text-transform: capitalize;
  margin-left: .4rem;
  font-family: Poppins;
  font-size: 1.6rem;
  font-weight: 600;
}

.video {
  width: 100%;
  height: 100%;
  position: relative;
}

.video i {
  z-index: 20;
  cursor: pointer;
  font-size: 3rem;
}

.video__iframe {
  border-radius: 1.2rem;
  align-self: center;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: block;
  position: relative;
  overflow: hidden;
}

.video__player {
  visibility: hidden;
  display: none;
}

.circle {
  border: 1px var(--color-Grey-light-4) solid;
  background-color: var(--color-primary);
  border-radius: 104rem;
  padding: 1.5rem;
  transition: all .3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle:hover {
  box-shadow: 1rem 2rem 6rem #0009;
}

.cards {
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  display: flex;
}

@media only screen and (width <= 56.25em) {
  .cards {
    flex-direction: column;
  }
}

.card {
  background-color: #0009;
  flex-direction: column;
  flex-basis: 35%;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1rem;
  display: flex;
}

.card__product {
  width: 100%;
  height: 22rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

.card__details {
  text-transform: capitalize;
  color: var(--color-Grey-light-1);
  text-align: center;
  align-self: center;
  margin-top: 0;
  padding: .5rem;
  font-family: Poppins;
  font-size: 1.6rem;
  font-weight: 400;
}

.screenshot-slider {
  scroll-behavior: smooth;
  z-index: 2;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: -8rem;
  padding: 10rem 4rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.screen-slide__background {
  cursor: pointer;
  width: 50rem;
  transition: all .3s;
}

.screen-slide__background:hover {
  transform: scale(1.02);
}

.screen-slide__photo {
  object-fit: cover;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  box-shadow: 1rem 2rem 6rem #0009;
}

.game-info {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  font-family: Changa, sans-serif;
  display: flex;
  position: absolute;
  top: 15%;
  left: 6rem;
}

@media only screen and (width <= 37.5em) {
  .game-info {
    flex-direction: column;
  }
}

.game-info-2 {
  text-shadow: 2px 2px #232323;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  padding: 3rem;
  display: flex;
  top: 15%;
  left: 0;
}

@media only screen and (width <= 56.25em) {
  .game-info-2 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
  }
}

.game-info-3 {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
}

.game__icon {
  font-size: 1.8rem;
}

.tags {
  background-color: #232323;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  display: flex;
}

.game__tags {
  flex-wrap: wrap;
  flex-basis: 51%;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  height: 20vh;
  display: flex;
}

.screenshot-active {
  z-index: 200;
  width: 98%;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pagi-active {
  z-index: 201;
  transition: all .4s;
  position: fixed;
  bottom: -11rem;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (width <= 37.5em) {
  .pagi-active {
    flex-wrap: nowrap;
    bottom: -1rem;
  }
}

.pagi-active:hover {
  bottom: -6rem;
}

@media only screen and (width <= 37.5em) {
  .pagi-active:hover {
    bottom: 0;
  }
}

.outerslider {
  position: relative;
}

.wishlist2 {
  background: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1rem;
  cursor: pointer;
  border: none;
  margin: 0 2rem;
  padding: 1rem 3rem;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  position: relative;
}

@media only screen and (width <= 75em) {
  .wishlist2-2 {
    margin: 0;
    padding: .5rem 1.5rem;
    right: 40% !important;
  }
}

@media only screen and (width <= 25em) {
  .wishlist2-2 {
    right: 25% !important;
  }
}

@media only screen and (width <= 56.25em) {
  .wishlist2 {
    margin: 0;
    padding: .5rem 1.5rem;
    right: -7rem;
  }
}

@media only screen and (width <= 37.5em) {
  .wishlist2 {
    margin: 0;
    padding: .5rem 1.5rem;
    right: -4rem;
  }
}

.wishlist2:hover {
  letter-spacing: .2rem;
  background: var(--color-primary);
  color: var(--color-primary);
  padding: 1.1rem 3.1rem;
  animation: 3s infinite box;
}

.fontsize {
  font-size: 1.4rem;
}

.wishlist2:before {
  content: "";
  background: #272822;
  position: absolute;
  inset: 2px;
}

.wishlist2 span {
  z-index: 1;
  position: relative;
}

.wishlist2 i {
  display: block;
  position: absolute;
  inset: 0;
}

.wishlist2 i:before {
  content: "";
  border: 2px solid var(--color-primary);
  background: #272822;
  width: 10px;
  height: 2px;
  transition: all .2s;
  position: absolute;
  top: -2px;
  left: 80%;
}

.wishlist2:hover i:before {
  width: 15px;
  animation: 3s infinite move;
  left: 20%;
}

.wishlist2 i:after {
  content: "";
  border: 2px solid var(--color-primary);
  background: #272822;
  width: 10px;
  height: 2px;
  transition: all .2s;
  position: absolute;
  bottom: -2px;
  left: 20%;
}

.wishlist2:hover i:after {
  width: 15px;
  animation: 3s infinite move;
  left: 80%;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes box {
  0% {
    box-shadow: #27272c;
  }

  50% {
    box-shadow: 0 0 25px var(--color-primary);
  }

  100% {
    box-shadow: #27272c;
  }
}

.wishlist-box {
  background-color: var(--main-color-2);
  z-index: 2147483647;
  border-radius: .5rem;
  width: 40%;
  min-height: 25vh;
  padding: 2rem;
  transition: all .3s;
  position: fixed;
  top: 8%;
  right: 66px;
}

.wishlist-box-2 {
  right: 0;
}

@media only screen and (width <= 75em) {
  .wishlist-box {
    right: 32%;
  }
}

@media only screen and (width <= 37.5em) {
  .wishlist-box {
    right: 32%;
  }
}

.wishlist__title {
  font-size: 2.5rem !important;
}

@media only screen and (width <= 56.25em) {
  .wishlist__title {
    font-size: 2rem;
  }
}

.wishlist__title:after {
  background-color: var(--color-primary-light);
  left: 22%;
}

@media only screen and (width <= 37.5em) {
  .wishlist__title:after {
    width: 19rem;
    left: 1%;
  }
}

.delete-wish {
  margin-left: .5rem;
  padding: .5rem;
  font-size: 1.8rem;
}

.wish__container {
  align-items: center;
  display: flex;
}

.wishlist-wish.wishbutton {
  color: #f6f6f6;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}

@media only screen and (width <= 25em) {
  .wishlist-wish.wishbutton {
    font-size: 1rem;
  }
}

.btns {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media only screen and (width <= 25em) {
  .btns {
    justify-content: center;
    gap: 5rem;
  }
}

.d-2 {
  --c: #3373cc;
  --b: .1em;
  --d: 2.3rem;
  --h: 2.8em;
  --_s: calc(var(--d)  + var(--b));
  color: #0000;
  text-shadow: 0 calc(-1 * var(--_t, 0em)) var(--c), 0 calc(var(--h)  - var(--_t, 0em)) #fff;
  border: solid #0000;
  border-width: var(--b) var(--_s) var(--_s) var(--b);
  transform: translate(var(--d), var(--d));
  clip-path: polygon(0% 0%, calc(100% - var(--d)) 0%, calc(100% - var(--d)) 0%, calc(100% - var(--d)) calc(100% - var(--d)), 0 calc(100% - var(--d)), 0 calc(100% - var(--d)));
  padding: 1rem;
  font-size: 1.8rem;
  transition: all .5s;
  overflow: hidden;
}

@media only screen and (width <= 37.5em) {
  .d-2 {
    --d: 0;
    --h: 2.8em;
    font-size: 1.4rem;
  }
}

.d-2-2 {
  --d: 2rem;
  --h: 2.2em;
  padding: 0;
  font-size: 1.3rem;
}

.d-2:hover {
  clip-path: polygon(0% 0%, calc(100% - var(--d)) 0%, 100% var(--d), 100% 100%, var(--d) 100%, 0 calc(100% - var(--d)));
  --_t: var(--h);
  --_p: 105%;
  transform: translate(0);
}

.wishbutton {
  --border: 5px;
  --slant: .7em;
  --color: #2f8af3;
  cursor: pointer;
  color: var(--color);
  background: linear-gradient(to bottom left, var(--color) 50%, #0000 50.1%) top right, linear-gradient(to top right, var(--color) 50%, #0000 50.1%) bottom left;
  background-size: calc(var(--slant)  + 1.3 * var(--border)) calc(var(--slant)  + 1.3 * var(--border));
  box-shadow: 0 0 0 200px inset var(--s, #0000), 0 0 0 var(--border) inset var(--color);
  clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% var(--slant), 100% 100%, var(--slant) 100%, 0 calc(100% - var(--slant)));
  transition: color var(--t, .3s), background-size .3s;
  background-repeat: no-repeat;
  border: none;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  padding: .4em 1.2em;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  list-style: none;
  display: flex;
}

@media only screen and (width <= 25em) {
  .wishbutton {
    font-size: 1rem !important;
  }
}

.wishbutton:focus-visible {
  outline-offset: calc(-1 * var(--border));
  outline: var(--border) solid #000c;
  clip-path: none;
  background-size: 0 0;
}

.wishbutton:hover, .wishbutton:active {
  color: #fff;
  --t: .2s .1s;
  background-size: 100% 100%;
}

.wishbutton:active {
  --s: #0005;
  transition: none;
}

.meow {
  --i: var(--light, 0);
  --not-i: calc(1 - var(--i));
  --j: var(--press, 0);
  --not-j: calc(1 - var(--j));
  z-index: var(--i);
  transform: scale(calc(1 - var(--j) * .02));
  box-shadow: calc(var(--not-j) * -.25em) calc(var(--not-j) * -.25em) .25em rgba(240, 107, 107, var(--not-j)), calc(var(--not-j) * .25em) calc(var(--not-j) * .25em) .25em rgba(108, 164, 247, var(--not-j)), inset calc(var(--j) * .25em) calc(var(--j) * .25em) .25em rgba(108, 164, 247, var(--j)), inset calc(var(--j) * -.25em) calc(var(--j) * -.25em) .25em rgba(240, 107, 107, var(--j));
  cursor: pointer;
  background: #e8e8e8;
  border: none;
  border-radius: 15%;
  width: 2em;
  height: 2em;
  margin-left: 1rem;
  font-size: 2.5em;
  transition: box-shadow .3s, transform .3s cubic-bezier(.2, 4, 1, 3);
}

.meow:after {
  filter: Contrast(0) Sepia(var(--i)) Hue-Rotate(calc(var(--hue)  - 50deg)) Saturate(5) Opacity(calc(var(--i)  + .21 * var(--not-i))) Drop-Shadow(1px 1px hsla(0, 0%, 100%, var(--not-i)));
  content: attr(data-ico);
  transition: filter .3s;
}

.meow:focus {
  outline: none;
}

.meow:hover, .meow:focus {
  --light: 1;
}

.meow:active {
  --press: 1;
}

.glitch2 {
  color: #fff;
  letter-spacing: 3px;
  background: linear-gradient(45deg, #0000 5%, #016fff 5%);
  border: 0;
  outline: #0000;
  width: 245px;
  height: 80px;
  font-family: Bebas Neue, cursive;
  font-size: 3.6rem;
  line-height: 88px;
  position: relative;
  box-shadow: 6px 0 #f61d00;
}

@media only screen and (width <= 25em) {
  .glitch2 {
    width: 20rem;
    height: 7rem;
    line-height: 3.5rem;
  }
}

.glitch2:after {
  color: #fff;
  letter-spacing: 3px;
  --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: "AVAILABLE NOW";
  text-shadow: -3px -3px #f8f005, 3px 3px #00e6f6;
  clip-path: var(--slice-0);
  background: linear-gradient(45deg, #0000 3%, #00e6f6 3% 5%, #ff013c 5%);
  border: 0;
  outline: #0000;
  width: 245px;
  height: 80px;
  font-family: Bebas Neue, cursive;
  font-size: 36px;
  line-height: 88px;
  display: block;
  position: absolute;
  inset: 0;
  box-shadow: 6px 0 #00e6f6;
}

@media only screen and (width <= 25em) {
  .glitch2:after {
    width: 20rem;
    height: 7rem;
  }
}

.glitch2:hover:after {
  animation: 1s steps(2, end) glitch2;
}

@keyframes glitch2 {
  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(0, 5px);
  }

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

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

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

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

[class*="btn-glitch-"] {
  color: #fff;
  white-space: no-wrap;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #fff;
  min-width: 175px;
  padding: 10px 13px;
  font-family: VT323, monospace;
  font-size: 2.8rem;
  line-height: 1.5em;
  display: inline-block;
}

[class*="btn-glitch-"] .text, [class*="btn-glitch-"] .decoration {
  display: inline-block;
}

[class*="btn-glitch-"] .decoration {
  float: right;
  display: inline-block;
}

[class*="btn-glitch-"]:hover, [class*="btn-glitch-"]:focus {
  color: #000;
  background-color: #ff0;
  border: 1px solid #ff0;
  animation-name: glitch;
  animation-duration: .2s;
}

[class*="btn-glitch-"]:hover .text-decoration, [class*="btn-glitch-"]:focus .text-decoration, [class*="btn-glitch-"]:hover .decoration, [class*="btn-glitch-"]:focus .decoration {
  animation-name: blink;
  animation-duration: .1s;
  animation-iteration-count: infinite;
}

[class*="btn-glitch-"]:hover :before, [class*="btn-glitch-"]:focus :before {
  content: " ";
  border: 1px solid #000;
  width: 15px;
  position: absolute;
  bottom: 3px;
  right: 25%;
  transform: rotate(35deg);
}

[class*="btn-glitch-"]:hover :after, [class*="btn-glitch-"]:focus :after {
  content: " ";
  border: 1px solid #000;
  width: 75%;
  animation-name: shrink;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  position: absolute;
  bottom: 5px;
  left: 0;
}

[class*="btn-glitch-"]:active {
  color: #ff0;
  background: none;
}

[class*="btn-glitch-"]:active .text-decoration, [class*="btn-glitch-"]:active .decoration {
  animation-name: none;
}

[class*="btn-glitch-"]:active :before, [class*="btn-glitch-"]:active :after {
  display: none;
}

@keyframes glitch {
  25% {
    letter-spacing: 10px;
    background-color: red;
    transform: translateX(-10px);
  }

  35% {
    background-color: green;
    transform: translate(10px);
  }

  59% {
    opacity: 0;
  }

  60% {
    filter: blur(5px);
    background-color: #00f;
    transform: translate(-10px);
  }

  100% {
    blur: 5px;
    background-color: #ff0;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes shrink {
  100% {
    width: 10%;
  }
}

.navigation {
  display: none;
}

@media only screen and (width <= 75em) {
  .navigation {
    display: block;
  }
}

.navigation__checkbox {
  display: none;
}

.navigation__button {
  background-color: var(--color-primary);
  z-index: 2000;
  cursor: pointer;
  width: 7rem;
  height: 7rem;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: 0 1rem 3rem #0000004d;
}

.navigation__icon {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navigation__icon, .navigation__icon:before, .navigation__icon:after {
  background-color: #fff;
  width: 3rem;
  height: 3px;
  display: inline-block;
}

.navigation__icon:before, .navigation__icon:after {
  content: "";
  transition: all .2s;
  position: absolute;
  left: 0;
}

.navigation__icon:before {
  top: 1.2rem;
}

.navigation__icon:after {
  top: -1.2rem;
}

.navigation__background {
  background: var(--main-color-2);
  z-index: 1000;
  width: 0;
  height: 100%;
  transition: all .5s cubic-bezier(.86, 0, .07, 1);
  display: none;
  position: fixed;
  top: 0;
  right: 0;
}

.navigation__checkbox:checked ~ .navigation__background {
  width: 60%;
  height: 100%;
  transition: all .5s cubic-bezier(.86, 0, .07, 1);
  display: block;
  transform: translateX(6rem);
}

@media only screen and (width <= 75em) {
  .navigation__checkbox:checked ~ .navigation__background {
    width: 40%;
  }
}

@media only screen and (width <= 56.25em) {
  .navigation__checkbox:checked ~ .navigation__background {
    width: 45%;
  }
}

@media only screen and (width <= 37.5em) {
  .navigation__checkbox:checked ~ .navigation__background {
    width: 60%;
  }
}

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  display: block;
}

.navigation__nav {
  opacity: 0;
  z-index: 1500;
  width: 0;
  height: 100%;
  transition: all .4s;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
}

.navigation__list {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  display: flex;
  position: absolute;
  top: 50%;
  right: 13%;
  transform: translate(0%, -50%);
}

@media only screen and (width <= 56.25em) {
  .navigation__list {
    right: 15%;
  }
}

@media only screen and (width <= 75em) {
  .navigation__list {
    right: 9%;
  }
}

.navigation__item {
  display: block;
}

.navigation__item:not(:last-child) {
  margin-bottom: 2.5rem;
}

.navigation__link:link, .navigation__link:visited {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  position: relative;
}

.navigation__link:link:hover > span, .navigation__link:visited:hover > span {
  width: 100%;
}

.spider {
  cursor: pointer;
  box-shadow: var(--shadow-dark) !important;
  background-color: #ff4500 !important;
  border-radius: 3px !important;
  padding: 1.5rem 2.8rem !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
}

.spider:after {
  background-color: #ff4500 !important;
  border-radius: 3px !important;
}

.default {
  color: var(--color-Grey-dark-2) !important;
  background-color: var(--color-Grey-light-2) !important;
  margin: 0 !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  box-shadow: 0 1.2rem 4rem #000 !important;
}

.default:after {
  background-color: var(--color-Grey-light-2) !important;
}

.xbox {
  color: #fff !important;
  background-color: #0d830d !important;
  border-radius: 3px !important;
  padding: 1.5rem 2.8rem !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
}

.xbox:after {
  background-color: #0d830d !important;
  border-radius: 3px !important;
}

.count {
  color: var(--color-primary);
  margin-top: -.4rem;
  font-weight: 300;
}

.ps {
  border: 2px solid var(--color-primary-dark);
}

.xbox1 {
  border: 2px solid #0d830d;
}

.def {
  border: 2px solid #fff;
}

.moving-icon {
  margin-left: 3rem;
  animation: 3s ease-in-out infinite bounce;
}

#wrapper {
  height: 25rem;
  margin-bottom: 10px;
  position: relative;
}

#spiderman {
  -ms-animation: swinganimation 3.5s infinite alternate;
  width: 70px;
  height: 103px;
  margin: auto;
  animation: 3.5s infinite alternate swinganimation;
  position: absolute;
  inset: 0;
}

#spiderman:before {
  content: " ";
  z-index: -2;
  border: 1px solid #fff;
  width: 0;
  height: 20rem;
  margin-bottom: -18px;
  margin-left: -1px;
  position: absolute;
  bottom: 100%;
  left: 50%;
}

#spiderman .head {
  -ms-border-radius: 15px 5px 10px 10px;
  -o-border-radius: 15px 5px 10px 10px;
  background: #ff6d36;
  border: 1px solid #1b405f;
  border-radius: 15px 15px 10px 10px;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  position: absolute;
  bottom: 5px;
  left: 50%;
}

#spiderman .head:before {
  content: " ";
  background: #ff6d36;
  border: 1px solid #1b405f;
  width: 8px;
  height: 4px;
  margin-left: -5px;
  position: absolute;
  top: -6px;
  left: 50%;
}

#spiderman .head .ear-left, #spiderman .head .ear-right {
  border-style: solid;
  border-color: #1b405f #0000 #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
}

#spiderman .head .ear-left:before, #spiderman .head .ear-right:before {
  content: " ";
  border-style: solid;
  border-color: #ff6d36 #0000 #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: -6px;
}

#spiderman .head .ear-left {
  border-width: 6px 8px 0 0;
  left: -1px;
}

#spiderman .head .ear-left:before {
  border-width: 5px 5px 0 0;
  left: 1px;
}

#spiderman .head .ear-right {
  border-width: 6px 0 0 8px;
  right: -1px;
}

#spiderman .head .ear-right:before {
  border-width: 5px 0 0 5px;
  right: 1px;
}

#spiderman .head .eye-left, #spiderman .head .eye-right {
  -ms-animation: eyesanimation 1s infinite alternate;
  -moz-border-radius-topleft: 50%;
  -moz-border-radius-topright: 50%;
  background: #fff;
  border: 1px solid #1b405f;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  width: 9px;
  height: 2px;
  animation: 1s infinite alternate eyesanimation;
  position: absolute;
  bottom: 9px;
}

#spiderman .head .eye-left {
  left: 3px;
}

#spiderman .head .eye-right {
  right: 3px;
}

#spiderman .body {
  z-index: 2;
  background: #336687;
  border: 1px solid #1b405f;
  width: 32px;
  height: 34px;
  margin-left: -16px;
  position: absolute;
  top: 34px;
  left: 50%;
}

#spiderman .body:before {
  content: " ";
  background: #ff6d36;
  position: absolute;
  inset: 0 4px;
}

#spiderman .body:after {
  content: " ";
  z-index: 0;
  background: #ff6d36;
  border: 1px solid #1b405f;
  width: 36px;
  height: 6px;
  margin-left: -19px;
  position: absolute;
  top: -7px;
  left: 50%;
}

#spiderman .body .spider {
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #1b405f;
  border-radius: 50%;
  width: 4px;
  height: 10px;
  margin-left: -2px;
  position: absolute;
  bottom: 5px;
  left: 50%;
}

#spiderman .body .spider:before, #spiderman .body .spider:after {
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: " ";
  border-style: double;
  border-width: 1px;
  border-radius: 50%;
  width: 10px;
  height: 12px;
  margin-left: -6px;
  position: absolute;
  left: 50%;
}

#spiderman .body .spider:before {
  border-color: #1b405f #0000 #0000;
  top: 50%;
}

#spiderman .body .spider:after {
  border-color: #0000 #0000 #1b405f;
  bottom: 50%;
}

#spiderman .body .arm-left, #spiderman .body .arm-right {
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  -webkit-transform-origin: bottom center 0 50%;
  -moz-transform-origin: bottom center 0 50%;
  -ms-transform-origin: bottom center 0 50%;
  -o-transform-origin: bottom center 0 50%;
  transform-origin: bottom center 0 50%;
  z-index: 1;
  background: #336687;
  border: 1px solid #1b405f;
  border-radius: 6px;
  width: 12px;
  height: 54px;
  position: absolute;
  bottom: -2px;
}

#spiderman .body .arm-left:before, #spiderman .body .arm-right:before {
  -ms-border-radius: 6px 6px 0 0;
  -o-border-radius: 6px 6px 0 0;
  content: " ";
  background: #ff6d36;
  border: 1px solid #1b405f;
  border-radius: 6px 6px 0 0;
  position: absolute;
  inset: -1px -1px 50%;
}

#spiderman .body .arm-left {
  z-index: 2;
  left: -9px;
  transform: rotate(20deg);
}

#spiderman .body .arm-right {
  right: -9px;
  transform: rotate(-20deg);
}

#spiderman .legs {
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  z-index: 0;
  background: none;
  border: 10px solid #1b405f;
  border-radius: 35px;
  width: 70px;
  height: 28px;
  margin-left: -35px;
  position: absolute;
  top: 6px;
  left: 50%;
}

#spiderman .legs:before {
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  content: " ";
  z-index: 0;
  background: none;
  border: 8px solid #336687;
  border-radius: 35px;
  width: 52px;
  height: 10px;
  margin-left: -34px;
  position: absolute;
  top: -9px;
  left: 50%;
}

#spiderman .legs .boot-left, #spiderman .legs .boot-right {
  background: #ff6d36;
  border: 1px solid #1b405f;
  width: 19px;
  height: 12px;
  position: absolute;
  top: -11px;
}

#spiderman .legs .boot-left:before, #spiderman .legs .boot-left:after, #spiderman .legs .boot-right:before, #spiderman .legs .boot-right:after {
  content: " ";
  border-style: solid;
  width: 0;
  height: 0;
  position: absolute;
}

#spiderman .legs .boot-left {
  margin-right: 1px;
  right: 50%;
}

#spiderman .legs .boot-left:before {
  border-width: 0 0 7px 7px;
  border-color: #0000 #0000 #1b405f;
  top: -7px;
  right: -1px;
}

#spiderman .legs .boot-left:after {
  border-width: 0 0 5px 5px;
  border-color: #0000 #0000 #ff6d36;
  top: -5px;
  right: 0;
}

#spiderman .legs .boot-right {
  margin-left: 1px;
  left: 50%;
}

#spiderman .legs .boot-right:before {
  border-width: 0 7px 7px 0;
  border-color: #0000 #0000 #1b405f;
  top: -7px;
  left: -1px;
}

#spiderman .legs .boot-right:after {
  border-width: 0 5px 5px 0;
  border-color: #0000 #0000 #ff6d36;
  top: -5px;
  left: 0;
}

@keyframes eyesanimation {
  0% {
    height: 2px;
  }

  100% {
    height: 5px;
  }
}

@keyframes swinganimation {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=gamedetailed.47ca9330.css.map */
