:root {
  --bs-dark-rgb: 33, 37, 41;
}
* {
  font-family: "Rajdhani", sans-serif;
  margin: 0px;
  padding: 0px;
}
html{
  scroll-behavior: smooth;
}
.m-left-10 {
  margin-left: 50px;
}
.p-98 {
  padding: 98px 0;
}
.m-6 {
  margin: 6px;
}
.m-3 {
  margin: 3px;
}
.m-left-10 {
  margin-left: 20px;
}
.p-t-5 {
  padding-top: 5px;
}
body{
  background-color: #0B0E13;
  cursor: url("/view/css/images/cursor.svg"), auto;
  height: 100vh;
  /* font-family: 'Rajdhani',"popins",sans-serif; */
}
/* Circle that follows the cursor */
.circle {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #45f882; /* Match the color scheme */
  border-radius: 50%;
  pointer-events: none; /* Prevent interaction with the circle */
  transform: translate(-50%, -50%);
  z-index: 1000; /* Ensure it's above other elements */
  transition: transform 1s linear; /* Adjust the duration for smoother or faster movement */
}

/* navbar */

.beforeNav{
  display: flex;
  justify-content: center;
  height: 6vh;
  background-color: #151f19;
}

.innerNavContainer{
  height: 100%;
  width: 90vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(197, 196, 196);
}
.innerNavContainer p{
  word-spacing: 3px;
}
.innerNavContainer p span{
  color: #45f882;
}
.links div{
  color: rgb(197, 196, 196);
  word-spacing: 15px;
  display: flex;
}
.links p{
  margin-right: 15px;
  margin-left: 15px;
}
.links p:hover{
  color: #45f882;
  transition: 0.6s
}
nav{
  height: 13vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #000;
  align-items: center;
}

.box1{
  display: flex;
  justify-content: center;
  background-color: #151f19;
  align-items: center;
  height: 100%;
  width: 17vw;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}

.box2{
  height: 100%;
  width: 43vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box2 a{
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.6vw;
  transition: 0.5s;
}

.box2 a:hover{
  color: #45f882;
}

.box3{
  height: 100%;
  width: 10vw;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12%;
}
.box3 i{
  font-size: 20px;
  color: white;
}
/* navbar complited  */
/* loader */
.loader-parent {
  background-color: #151f19;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  color: #fff;
}

.loader:before,
.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: spin 1s linear infinite;
  font-size: 3rem;
}

.loader:after {
  color: #45f882;
  transform: rotateY(70deg);
  animation-delay: .4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: .2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .2em .2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.2em .2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.2em -.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: .2em -.2em 0 0 currentcolor;
  }
}

/* Loader Complited */
/*  */

/* line */
.parentLine{
  display: flex;
  margin-top: 20px ;
}
.line1{
  height: 4px;
  width: 30vw;
  background-color: #FFBE18;
  transform: rotate(-5deg);
  margin-top: 12.5px;
  z-index: 10;
  margin-bottom: -25px;
}
.line2{
  height: 4px;
  width: 100vw;
  background-color: #45f882;
}

/* Section One */
.sectionOne {
  position: relative;
  width: 100%;
  height: 150vh;
  background-color: #000; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.sectionOne::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://wordpress.themeholy.com/bame/wp-content/uploads/2023/12/hero-bg1-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.sectionOne > * {
  position: relative;
  z-index: 2;
}
.innerParent{
  height: 400px;
  width: 800px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  top: -25vh;

}
.innerParent h1{
  font-size: 1.8vw;
  color: #45f882;
  font-weight: 500;
}
.innerParent h2{
  font-size: 4.7vw;
  color: white;
  font-weight: 900;
}
.innerParent h2 span{
  color: #45f882;
}
.buttons{
  display: flex;
  gap: 25px;
}
.browseGames{
  background-color: #FFBE18;
}
.browseGames:hover {
  background-color: #45f882;
}
.secondSection{
  position: relative;
  top: -200px;
  height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #151f19;
  align-items: center;
}
.innerParentSecTwo{
  height: 350px;
  width: 90vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.innerParentSecTwo img{
  width: 20vw;
}
.innerParentSecTwo div{
  height: 250px;
  width: 45vw;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 20px;
}
.innerParentSecTwo div h1{
  font-size: 2.2rem;
  font-weight: 800;
}
.innerParentSecTwo div p{
  font-size: 1rem;
  font-weight: 500;
}
.BTNSEC2{
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}
.BTNSEC2:hover {
  background-color: #45f882;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0 100%, 0% 50%, 0 1%);
}


/* game section */



/* Game-Battle-Section */

* {
  margin: 0px;
  padding: 0px;
}


#game {
  background-color: black;
  width: 100%;
  height: auto;
}

#top {
  display: flex !important;
  -webkit-box-pack: justify !important;
  justify-content: space-between !important;
}

#left {
  margin-top: 02%;
  margin-left: 02%;
}

#left span {
  display: block;
  font-size: 20px;
  margin-bottom: 24px;
  margin-top: -0.2em;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  text-transform: capitalize;
  line-height: 24px;
  letter-spacing: 02px;
  color: #45f882;
}

#left h1 {
  margin-top: -0.2em;
  color: white;
  letter-spacing: 02px;
  text-transform: capitalize;

}

#right {
  margin-right: 02%;
  justify-content: center;
  display: flex;
  align-items: center;
}

#box {
  width: 75% !important;
  height: 50px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #6240CF;
  gap: 50px !important;
  padding: 0 30px 0 45px;
  clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%);
}

#box a {
  text-decoration: none;
  background: transparent;
  border: 0px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  padding: 15px 0px;
  position: relative;
  letter-spacing: 01px;
}

#s1 {
  margin: 05% 02% 05% 02% !important;
  padding: 03%;
  border: 01px solid white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  --bs-gutter-x: 1.5rem;
  flex-wrap: wrap;
}

#li {
  width: 50%;
}

#r1 {
  width: 50%;
}

#t1 #b1 {
  margin: 03%;
  text-align: center;
  border: 0px;
  border-radius: 10px;
  width: 25% !important;
  height: 35px !important;
  background-color: #45f882;
  color: black;
  font-size: 15px;
  font-weight: 600;
}

#t1 #b2 {
  text-align: center;
  border: 01px solid white;
  border-radius: 10px;
  width: 15% !important;
  height: 35px !important;
  background-color: transparent;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

#r1 h1 {
  color: white;
  font-weight: 600;
  margin-left: 03%;
}

#r1 h3 {
  color: white;
  font-weight: 600;
  margin-top: 02%;
  word-spacing: 02px;
  margin-left: 03%;
}

#icon {
  margin-left: 03%;
  margin-top: 03%;
  display: flex;
}

#first{
  display: flex;
  color: white;
  font-size: 23px;
  margin-right: 05%;
}

#first #i1 {
  color: red;
  margin-right: 07% !important;
}

#first #i2 {
  color: #45f882;
  margin-right: 07% !important;
}

/* third section  */

.thirdSection{
  height: 550px;
  width: 100%;
  display: flex;
  justify-content: center;

}
.thirdSecContainer{
  height: 100%;
  width: 85vw;
  display: flex;
  justify-content: space-between;
}
.imageThirdSec{
  width: 100%;
}
.contentThirdSec{
  width: 95%;
  display: flex;
  justify-content: start;
  flex-direction: column;
}
.innerSecThree{
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  color: white;
  gap: 20px;
}
.secthreeInnerContent{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.secthreeInnerContent p{
  color: #45f882;
  font-size: 1.5vw;
  font-weight: 700;
}
.secthreeInnerContent h1{
  color: white;
  font-size: 2.5vw;
  font-weight: 800;
}
.contentSecThree h2{
  color: white;
  font-size: 2vw;
  font-weight: 700;
  margin-top: -10px;
}
.contentSecThree h3{
  margin-top: 5px;
  font-size: 1.3vw;
  color: #b4b6b5;
}
/* third section complited  */

/* Releases The Latest Game */
.mainRelease{
  height: 650px;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5%;
  margin-top: 5%;
}
.titleRelease{
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  height: fit-content;
  gap: 5%;
}
.titleRelease h2{
  color: #45f882;
  font-size: 2vw;
}
.titleRelease h1{
  color: white;
  font-size: 3vw;
  font-weight: 800;
  margin-top: 2%;
}

/* Releases The Latest Game complited */

/* World Best Facilities Game  */
.title-area {
  height: 100px;
  /* background-color: #6240CF; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15%;
  margin-bottom: 10%;
}
.parentWorldBestFacilitiesGame{
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  margin-top: 10%;
}
.e-con.e-con>.e-con-inner>.elementor-widget, .elementor.elementor .e-con>.elementor-widget {
  max-width: 100%;
}
.elementor-1911 .elementor-element.elementor-element-4b43653e>.elementor-widget-container {
  margin: 0px 0px 0px 0px;
  padding: 0px 12px 0px 12px;
}

.elementor-1911 .elementor-element.elementor-element-4b43653e.elementor-element {
  --align-self: stretch;
}
/* General Styles */
.feature-sec-wrap1 {
  width: 1225px;
  border-radius: 70px 0 0 70px;
}

.background-image {
  background-image: url(https://wordpress.themeholy.com/bame/wp-content/uploads/2024/01/feature-sec1-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.feature-card {
  text-align: center;
  border-radius: 40px;
  background: #0F1C23;
  padding: 35px;
  max-width: 575px;
}

.feature-card-border {
  margin-bottom: 150px;
  padding: 50px;
  border-radius: 40px;
  background: #0B0E13;
  display: inline-block;
  position: relative;
}

.feature-card-border:before,
.feature-card-border:after {
  content: '';
  position: absolute;
  left: -78px;
  top: 0;
  height: 80px;
  width: 80px;
  background: #0B0E13;
  clip-path: path("M0 0H79.9695V76.3123C80.0103 77.5714 80.0101 78.8022 79.9695 80V76.3123C79.0054 46.5602 55.1443 0.959397 0 0Z");
}

.feature-card-border:before {
  left: auto;
  right: -1px;
  top: auto;
  bottom: -79px;
}

.feature-card-wrap {
  display: flex;
}

.feature-card-wrap:nth-of-type(odd) {
  justify-content: end;
}

.feature-card-wrap:nth-of-type(odd) .feature-card-border {
  padding-right: 0;
  border-radius: 70px 0px 0px 70px;
}

.feature-card-wrap:nth-of-type(odd) .feature-card-border:after {
  right: -1px;
  left: auto;
  top: -78px;
  transform: rotate(90deg);
}

.feature-card-wrap:nth-of-type(even) .feature-card-border {
  padding-left: 0;
  border-radius: 0 70px 70px 0;
}

.feature-card-wrap:nth-of-type(even) .feature-card-border:after {
  transform: rotate(180deg);
  top: -79px;
  left: 0;
}

.feature-card-wrap:nth-of-type(even) .feature-card-border:before {
  left: 0;
  right: auto;
  transform: rotate(-90deg);
  bottom: -80px;
}

.feature-card-wrap:first-child .feature-card-border {
  padding-top: 0;
  border-radius: 0 0 0px 70px;
}

.feature-card-wrap:first-child .feature-card-border:after {
  right: auto;
  left: -79px;
  top: -1px;
  transform: none;
}

.feature-card-wrap:last-child .feature-card-border {
  margin-bottom: 0;
  padding-bottom: 0;
  border-radius: 70px 0px 0 0;
}

.feature-card-wrap:last-child .feature-card-border:before {
  left: -80px;
  right: auto;
  top: auto;
  bottom: 0;
  transform: rotate(90deg);
}

.feature-card .feature-card-icon {
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.feature-card .feature-card-icon .feature-card-icon-mask {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  /* background: #45F882; */
}

.feature-card .feature-card-title {
  color: #ffffff;
  font-size: 30px;
  margin-top: -0.3em;
  margin-bottom: 15px;
}

.feature-card .feature-card-text {
  margin-bottom: -0.4em;
}

.feature-card:hover .feature-card-icon {
  transform: rotateY(180deg);
}

/* World Best Facilities Game complited  */









/* Footer  */
.social-icons a{
  padding: 7px 7px;
  background-color: #343a40;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.footer {
  padding: 40px 0;
  position: relative;
}
.footer::before{
  margin-bottom: 5vh;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #444;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  margin: 0 10px;
}

.footer-logo {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-section h2 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #45f882;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #bbb;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #45f882;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
  flex: 1;
}

.newsletter-form button {
  padding: 10px;
  background-color: #333;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #444;
}

.app-links img {
  height: 40px;
  margin-top: 10px;
  margin-right: 10px;
}
.copyrightMain{
  height: 50px;
  background-color: #343a40;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -10px;
}
.innerWithClipPath{
  height: 70px;
  background-color: #343a40;
  border: none;
  width: 500px;
  margin: auto;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
/* Footer Complited  */