@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --primary: 255, 16, 80;
  --primary-active: 255, 65, 116;
  --dark: 15, 23, 42;
  --dark-2: 0, 63, 111;

  --heroHeight: 400px;
}

/* reset everything */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
  font-family: "Lato", sans-serif;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  line-height: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
[role="button"] {
  cursor: pointer;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  &:focus {
    outline: 0;
  }
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: inherit;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol,
ul {
  list-style: none;
}

[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  &:focus {
    outline: 0;
  }
}

::-moz-placeholder {
  opacity: 1;
}

textarea {
  /* // move the label to the top */
  vertical-align: top;

  /* // turn off scroll bars in IE unless needed */
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  &:focus {
    outline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(var(--primary));
  outline: 1px solid slategrey;
  border-radius: 1rem;
}

.text-white {
  color: white;
}
.text-dark-2 {
  color: rgba(var(--dark-2));
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-primary {
  background-color: rgba(var(--primary));
  border-radius: 1rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0px 4px 0px 0px #990029;
  transition: all 50ms ease;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: rgba(var(--primary-active));
}

.btn-primary:active {
  box-shadow: none;
  transform: translateY(4px);
}

.btn-secondary {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-secondary:hover {
  background-color: rgba(var(--primary));
}

.btn-secondary:active {
  background-color: rgba(var(--primary-active));
}

.btn-secondary.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.btn-rounded {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-rounded:disabled {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}
.btn-rounded:hover {
  background-color: rgba(var(--primary));
}

.app {
  background: linear-gradient(117deg, #070f1c 0.74%, #192837 100%);
  min-height: 100vh;
  color: #fff;
}

.app .app-content {
  margin-left: auto;
  margin-right: auto;
}

.app-header {
  padding-top: 23px;
  padding-bottom: 23px;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}

.header-content {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  backdrop-filter: blur(21px);
  padding: 20px;
  display: flex;
  align-items: center;
  width: 95%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.headerBtns {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-content .headerBtns {
  margin-left: auto;
}

.headerBtn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.headerBtn:hover {
  color: rgba(var(--primary));
}

main {
  padding-top: 110px;
}

@media screen and (min-width: 480px) {
  .hero-section {
    background-image: url(./Img/BannerFireup.png);
    background-size: cover;
  }

  .swiperWrapper1 {
    width: 95%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-section {
  position: relative;
}
.swiper-slide-active .hero-section {
  opacity: 1;
}
.hero-section {
  opacity: 0;
}

.hero-section .banner-bg .banner-shadow {
  position: absolute;
  top: 0;
  bottom: 30px;
  right: -10%;
  border-radius: 50%;
  transform: scale(0.7);
  transform-origin: bottom center;
  z-index: 0;
}
.hero-section .banner-bg .banner-shadow img {
  filter: blur(31.5px);
}
/* .hero-section .banner-bg .banner-shadow img {
  position: absolute;
  bottom: -5px;
  filter: blur(31.5px);
  opacity: 0.6;
  z-index: -1;
  right: 0;
  border-radius: 50%;
} */

.hero-section .banner-bg .banner-wrap {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  border-radius: 1.5rem;
}
.hero-section .banner-bg .banner-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
}
.hero-content {
  height: calc(100% - 70px);
  display: flex;
  align-items: center;
  padding-left: 4rem;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
}
.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.hero-content .btn-primary {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 19px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.sub-head {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

.badge-v1 {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0.75rem;
  color: rgba(var(--primary));
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.1px;
  display: inline-block;
}

.badge-v1.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.badge-v1.blue {
  color: rgba(var(--dark-2));
  background-color: rgba(255, 255, 255, 0.2);
}

.text-white.text-white {
  color: white;
}

.badge-v2 {
  color: rgba(var(--dark));
  /* color: #0F172A; */
  font-size: 14px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 12px;
  background: #edd051;
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.swiperWrapper1 .swiper {
  width: 100%;
}
.swiperWrapper1 {
  position: relative;
}

.swiperWrapper1 .slideBtns {
  position: absolute;
  bottom: 80px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  z-index: 1;
}
.swiperWrapper1 .slideBtns > div {
  position: relative;
  cursor: pointer;
  inset: 0;
}

.swiper-button-prev:hover:not(:disabled) + .btn-rounded,
.swiper-button-next:hover:not(:disabled) + .btn-rounded {
  background-color: rgba(var(--primary));
  border-color: rgba(var(--primary));
}
.swiper-button-prev:active:not(:disabled) + .btn-rounded,
.swiper-button-next:active:not(:disabled) + .btn-rounded {
  background-color: rgba(var(--primary-active));
  border-color: rgba(var(--primary-active));
}
.swiperWrapper1 .swiper-button-prev,
.swiperWrapper1 .swiper-button-next {
  border: 1px solid #fff;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  border-radius: 50%;
  inset: 0;
  margin: 0;
}

.gamesWrapper:not(:first-child) {
  padding-top: 4rem;
}
.gameNameHeading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gameNameHeading img.icon {
  width: 36px;
}

.gamesWrapper .gamesHeadingWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.gamesWrapper .GamesWrap {
  padding-top: 60px;
}

.game-card {
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  width: 100%;
}

.game-card:hover {
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.game-card .cardImg1 {
  transition: all 0.6s linear;
  transform: rotate(0deg);
  transform-origin: bottom left;
}

.game-card:hover .cardImg1 {
  transform: rotate(-10deg);
}

/* .gamesWrapper .game-card::after{
  content: '';
 
  background-color: white;
  z-index: -999;
} */
.game-card .cardImg1 {
  width: 63px;
  min-width: 63px;
  height: 63px;
  min-height: 63px;
  border-radius: 1rem;
  margin-top: -50px;
  position: relative;
}

.game-card .cardImg1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.game-card .cardImg1 .shadow-img {
  position: absolute;
  bottom: -2px;
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 50%;
  z-index: -1;
  filter: blur(14px);
}

.game-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 19px;
  margin-bottom: 2px;
}
.game-card .list-subheading {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 500;
}
.game-card .list-subheading > li {
  position: relative;
}

.game-card .list-subheading > li:not(:first-child)::after {
  content: "";
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 50%;
  left: -14px;
  transform: translate(0%, -40%);
}

.gamesWrapper .GamesWrap {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px; /* Adjust the max width as needed */
  margin: 0 auto;
  padding: 20px;
}

.game-card .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 1.625rem;
  width: 100%;
}

.gamesWrapper .swiperGames {
  padding-top: 3rem;
  padding-left: 13px;
  padding-right: 13px;
}
.game-card .badge-v2 {
  margin-top: 1rem;
}

.swiperGamesFunctions {
  position: relative;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}

.swiperGames .swiperButtonNext,
.swiperGames .swiperButtonPrev {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  z-index: 9999;
  flex: 0 0 auto;
}

.swiperButtonNext.swiper-button-disabled,
.swiperButtonPrev.swiper-button-disabled {
  color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

.swiperGames .swiper-pagination {
  position: relative;
  margin-top: 13px;
}

.swiperGamesFunctions
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiperGamesFunctions
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  background-color: white;
}

.swiperWrapper1 .swiper-slide {
  padding-bottom: 4rem;
}
.swiperGames .swiper-wrapper {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.loginContent .swiperWrapper1 {
  margin-top: 1.5rem;
}

.loginOuter {
  width: 95%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.loginFormWrap {
  border-radius: 24px;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(21px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 2rem;
}

.loginFormWrap h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.loginFormWrap h2 span {
  color: rgba(var(--primary));
}

.loginFormWrap .loginForm {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.loginFormWrap .loginForm input {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1rem 1rem 4rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px; /* 120% */
}

.loginFormWrap .loginForm .btn-primary {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 45px;
}

.numberInput {
  position: relative;
}

.numberInput .numberExtension {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}

.AllgamesOuter {
  width: 95%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.allGameWrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px 15px;
  margin: 0 auto;
  padding: 62px 0px 20px 0px;
  width: 100%;
}

@media screen and (min-width: 608px) {
  .allGameWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 900px) {
  .allGameWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1150px) {
  .allGameWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1300px) {
  .allGameWrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

.categoryInside .swiperWrapper1 {
  margin-bottom: 0rem;
}

.categoriesDropdownWrapper {
  position: relative;
}
.categoriesDropdownOuter {
  position: relative;
}

.categoriesDropdownOuter + .categoriesDropdown .categoriesDropdownItem {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 10px;
}

.categoriesDropdownItem .icon {
  width: 36px;
}
.categoriesDropdownOuter + .categoriesDropdown .categoriesDropdownItem:hover {
  color: rgba(var(--primary));
}

.categoriesDropdownOuter
  + .categoriesDropdown
  .categoriesDropdownItem
  .iconImg {
  flex: 0 0 auto;
  min-width: 40px;
}
.categoriesDropdownOuter
  .categoriesDropdown
  .categoriesDropdownItem
  .iconImg
  img {
  width: 24px;
  height: 30px;
}
.categoriesDropdownOuter + .categoriesDropdown {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: calc(100% + 30px);
  left: 50%;
  border-radius: 1.5rem;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  backdrop-filter: blur(21px);
  min-width: 250px;
  font-size: 18px;
  line-height: 24px; /* 133.333% */
  color: white;
}

.categoriesDropdownOuter.selected + .categoriesDropdown {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0%);
  cursor: pointer;
}

.categoriesDropdownOuter.selected .dropdownIcon {
  rotate: 180deg;
}
.gameModal {
  border-radius: 24px;
  background: linear-gradient(117deg, #070f1c 0.74%, #192837 100%);
  padding: 1.5rem;
  width: 95%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  top: 25%;
}

.gameModal h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 21px;
  margin-bottom: 8px;
}

.gameModal .subHeading {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 13px;
}

.gameModal .badge-v2 {
  margin-left: auto;
  margin-right: auto;
}
.gameModal .mainContent {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.modalImg1 {
  width: 100px;
  min-width: 100px;
  height: 100px;
  min-height: 100px;
  border-radius: 1.5rem;
  margin-top: -50px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.modalImg1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.modalImg1 .shadow-img {
  position: absolute;
  bottom: -2px;
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 50%;
  z-index: -1;
  filter: blur(14px);
}

.gameModal .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.gameModal .closeBtn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(7.5px);
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.headerNavBtn {
  display: none;
  flex: 0 0 auto;
  margin-right: 20px;
}

.xsScreenBanner {
  display: none;
  width: 90%;
  object-fit: cover;
}

nav {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(7.5px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
  overflow: auto;
}

nav .nav-toggle{
  display: block;
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 7rem;
  padding-left: 2rem;
  max-width: 430px;
}

.nav__link {
  color: inherit;
  font-weight: var(--fw-bold);
  font-size: var(--fs-h2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__link-categories + .nav__link-categories__content {
  opacity: 0;
  pointer-events: none;
}

.nav__link.selected + .nav__link-categories__content {
  opacity: 1;
  pointer-events: all;
}
.nav__link:hover {
  color: rgba(var(--primary));
}

.nav-open nav {
  transform: translateX(0);
}

/* .nav-open .nav-toggle{
  position: fixed;
} */

.nav-open .hamburger {
  transform: rotate(0.625turn);
}

.nav-open .hamburger::before {
  transform: rotate(90deg) translateX(-6px);
}

.nav-open .hamburger::after {
  /* opacity: 0; */
  display: none;
}

.hamburger {
  display: block;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  background: green;
  width: 2em;
  height: 3px;
  border-radius: 1em;
  transition: transform 250ms ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.hamburger::before {
  top: 6px;
}

.hamburger::after {
  bottom: 6px;
}

.nav-toggle {
  position: absolute;
  top: 44px;
  left: 32px;
  display: none;
  z-index: 101;
}

.nav-toggle .closeBtn {
  display: none;
}

body.nav-open .nav-toggle .threeLineHamburgur {
  display: none;
}

body.nav-open .nav-toggle .closeBtn {
  display: block;
}

.heroBtnMobile {
  display: none;
}

.swiper-pagination-mobileScreen {
  display: none;
}

.swiperWrapper1 .slideBtns .lgScreen {
  display: flex;
}

.swiperWrapper1 .slideBtns .xsScreen {
  display: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.5rem 1.5rem;
  flex: 0 0 auto;
  min-width: 65px;
  max-height: 30px;
  color: white;
}

@media screen and (max-width: 900px) and (min-width: 800px) {
  .hero-content {
    padding: 0 1rem 0rem 4rem;
  }
}


@media screen and (max-width: 900px) {
  .swiperWrapper1 .slideBtns {
    margin-left: 1rem;
  }

  .hero-content {
    padding-left: 1.5rem;
  }
  .hero-section .banner-bg .banner-wrap {
    /* min-height: 400px; */
  }
  .hero-section .banner-bg .banner-wrap img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* min-height: 400px; */
    /* object-position: 100% 100%; */
  }
}

.mainIconMObile{
  display: none;
}

@media screen and (max-width: 800px) {
  .btn-secondary {
    font-size: 14px;
  }
  .headerNavBtn {
    display: block;
  }

  .headerBtns {
    display: none;
  }

  .mainLogo {
    margin-left: auto;
    margin-right: auto;
  }

  .banner-wrap {
    max-width: 100%;
    min-height: 407px;
    padding: 1rem;
  }

  .banner-wrap img {
    object-fit: cover;
    object-position: right top;
    border-radius: 12px;
  }

  .lgScreenBanner {
    display: none;
  }

  .xsScreenBanner {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    align-items: flex-end;
    height: 100%;
    padding: 0 1rem 4rem 4rem;
  }

  .swiperWrapper1 .slideBtns {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: max-content;
  }

  .banner-wrap {
    margin-bottom: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav .categoriesDropdownWrapper .categoriesDropdownOuter.selected {
    color: rgba(255, 255, 255, 0.5);
  }

  .nav .categoriesDropdownWrapper .dropdownIcon {
    display: none;
  }
  .nav
    .categoriesDropdownWrapper
    .categoriesDropdownOuter.selected
    + .categoriesDropdown {
    border-color: transparent;
    background-color: transparent;
    background: transparent;
    backdrop-filter: blur(0px);
    transform: translate(-55%, -6%);
  }

  .categoriesDropdownOuter
    + .categoriesDropdown
    .categoriesDropdownItem
    .iconImg {
    min-width: 24px;
    width: 24px;
  }

  .categoriesDropdownOuter + .categoriesDropdown {
    transition: none;
  }

  .loginForm {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .loginFormWrap h2 {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .swiperWrapper1 .slideBtns.heroBtnLgScreen {
    display: none;
  }

  .heroBtnMobile {
    display: block;
  }

  .swiperWrapper1 .slideBtns .swiperBtnMobile {
    border-color: transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    z-index: 9999;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    color: white;
    max-height: 30px;
  }

  .swiper-pagination-lgScreen {
    display: none;
  }

  .swiper-pagination-mobileScreen {
    display: block;
  }

  .swiperWrapper1 .slideBtns .lgScreen {
    display: none;
  }

  .swiperWrapper1 .slideBtns .xsScreen {
    display: flex;
  }

  .swiperWrapper1 .swiper-slide {
    padding-bottom: 1.5rem;
  }

  .categoryInside .swiperWrapper1 {
    margin-bottom: 3rem;
  }
  .gamesWrapper {
    padding-top: 4rem;
  }

  body.nav-open .mainIconMObile{
    display: block;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 3rem;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 800px) {
  .swiperWrapper1 .swiper-button-prev,
  .swiperWrapper1 .swiper-button-next {
    width: 4vw;
    height: 4vw;
  }

  .swiperWrapper1 .swiper-button-prev img,
  .swiperWrapper1 .swiper-button-next img {
    width: 60%;
    height: 60%;
  }

  .swiperWrapper1 .slideBtns {
    gap: 1vw;
    bottom: 74px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  background-color: white;
}

