/* banner */
.arcade-banner {
  background-image: url('./wp-content/uploads/2023/08/service1/11.jpg') !important;
}

.multi-banner{
  background-image: url('./wp-content/uploads/2023/08/service3/3344-banner.jpg') !important;
  background-position: bottom;
}

.adventure-banner{
  background-image: url('./wp-content/uploads/2023/08/service-4/2-banner.jpg') !important;
}
.live-banner{
  background-image: url('./wp-content/uploads/2023/08/live-banner.jpg') !important;
}
/* .live-banner{
  background-image: url('./wp-content/uploads/2023/08/doomsday-scene-catastrophe-digital-illustration.jpg') !important;
} */
.online-banner{
  background-image: url('./wp-content/uploads/2023/08/service-5/onile-banner.jpg') !important;
}
.play-banner {
  background-image: url('./wp-content/uploads/2023/08/full-shot-gamer-sitting-chair.jpg') !important;
}
.contact-banner{
  /* background-image: url('./wp-content/uploads/2023/08/contact-banner.jpg') !important; */
    background-image: url('./wp-content/uploads/2023/08/doomsday-scene-catastrophe-digital-illustration.jpg') !important;

}
.appo-banner{
  background-image: url('./wp-content/uploads/2023/08/service3/333-banner.jpg') !important;
}
.unsub-banner{
  background-image: url('./wp-content/uploads/2023/08/apocalyptic-destruction-war-zone-landscape.jpg') !important;
}
.terms-banner{
  background-image: url('./wp-content/uploads/2023/08/cyberpunk-soldier-futuristic-battle-1.jpg') !important;
}
.privacy-banner{
  background-image: url('./wp-content/uploads/2023/08/apocalyptic-destruction-war-zone-landscape\ \(1\).jpg') !important;
}
.anti-banner{
  background-image: url('./wp-content/uploads/2023/08/play-banner1.jpg') !important;
}
/* ===== ABOUT SECTION ===== */

.breadcrumb {
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #00FFFF;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: white;
}

.about-section {
  background: linear-gradient(135deg, #0A0A0A, #1A0033);
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
}

.about-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 40px #9B30FF;
  }
  to {
    text-shadow: 0 0 20px #9B30FF, 0 0 40px #00FFFF, 0 0 80px #9B30FF;
  }
}

.divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  margin-bottom: 25px;
  border-radius: 2px;
  animation: glowDivider 3s infinite alternate;
}

@keyframes glowDivider {
  from { box-shadow: 0 0 10px #00FFFF; }
  to { box-shadow: 0 0 20px #9B30FF; }
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #ddd;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #9B30FF, 0 0 40px #00FFFF;
}

.about-image {
  flex: 1 1 500px;
  text-align: center;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-top:40px;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(155, 48, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-image img {
    max-width: 400px;
  }
}


/* ===== MISSION & VISION SECTION ===== */
.mission-vision-section {
  background: linear-gradient(135deg, #0b0b0b, #1b0033);
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
  text-align: center;
}

.mission-vision-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.mission-vision-header h2 {
    font-size: 2.8rem;
  font-weight: 700;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: glowText 2s ease-in-out infinite alternate;
}

.mission-vision-header p {
  margin-top: 15px;
  color: #ddd;
  font-size: 16px;
  line-height:1.7;
}

.divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  margin: 15px auto 30px;
  border-radius: 2px;
  animation: glowDivider 3s infinite alternate;
}

/* Mission & Vision Boxes */
.mission-vision-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.mv-box {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.mv-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3), 0 0 40px rgba(155, 48, 255, 0.3);
}

/* Icons */
.mv-icon {
  font-size: 3rem;
  color: #00FFFF;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.mv-box h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.mv-box p {
  color: #ddd;
  line-height: 1.7;
  font-size: 1rem;
}

/* Animations */
@keyframes glowText {
  from {
    text-shadow: 0 0 10px #00FFFF, 0 0 20px #9B30FF;
  }
  to {
    text-shadow: 0 0 20px #9B30FF, 0 0 40px #00FFFF;
  }
}

@keyframes glowDivider {
  from { box-shadow: 0 0 10px #00FFFF; }
  to { box-shadow: 0 0 20px #9B30FF; }
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision-content {
    flex-direction: column;
    align-items: center;
  }

  .mission-vision-header h2 {
    font-size: 2.2rem;
  }
}
.services-section {
  background: #0a0a0f;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.section-header h2 {
 font-size: 2.8rem;
  font-weight: 700;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: glowText 2s ease-in-out infinite alternate;
}

.section-header .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  margin: 15px auto;
  border-radius: 4px;
}

.section-header p {
  color: #ddd;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.services-section .section-header p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #ddd;
}
/* 3-in-a-row layout */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin:0px 20px;
}


@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin:0px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive: Mobile */
@media (max-width: 992px) {
  .services-grid {
    gap: 20px;
  }
}


.service-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: #00FFFF;
  box-shadow: 0 0 20px rgba(155, 48, 255, 0.5);
}

.service-box i {
  font-size: 2.5rem;
  color: #00FFFF;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-box:hover i {
  color: #9B30FF;
  transform: scale(1.2);
}

.service-box h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: capitalize;
}


.services-section .container{
   width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.service-box p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
    max-width: 400px;
  }
}




.battle-highlights {
  background: #0a0a0f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.battle-highlights .section-header h2 {
 font-size: 2.8rem;
  font-weight: 700;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: glowText 2s ease-in-out infinite alternate;
}

.battle-highlights .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  margin: 15px auto;
  border-radius: 4px;
}

.battle-highlights .section-header p {
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1rem;
  line-height: 1.7;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.highlight-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.highlight-image {
  position: relative;
  overflow: hidden;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: block;
  transition: transform 0.5s ease;
}

.highlight-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9));
  opacity: 0;
  transition: all 0.4s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.highlight-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 1.4rem;
  color: #00FFFF;
  margin-bottom: 8px;
}

.overlay p {
  color: #ddd;
  font-size: 16px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #9B30FF, #00FFFF);
  box-shadow: 0 0 15px rgba(155, 48, 255, 0.6);
}

.btn-center {
  margin-top: 50px;
}
.join-squad-alt {
  position: relative;
  background: radial-gradient(circle at top right, #9B30FF 0%, #000 100%);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.join-squad-alt .container {
  position: relative;
  z-index: 2;
}

.squad-inner h2 {
   font-size: 2.8rem;
  font-weight: 700;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: glowText 2s ease-in-out infinite alternate;
}

.squad-inner p {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: #d8eaff;
}

.btn-glow {
  display: inline-block;
  padding: 14px 45px;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  color: #111;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.btn-glow:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(155, 48, 255, 0.9);
  color: #fff;
}

/* Glowing animated background shapes */
.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: floatGlow 12s infinite alternate ease-in-out;
}

.glow1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 15%;
  background: #00FFFF;
  animation-delay: 0s;
}

.glow2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 10%;
  background: #9B30FF;
  animation-delay: 2s;
}

.glow3 {
  width: 250px;
  height: 250px;
  top: 60%;
  left: 50%;
  background: #00FFFF;
  animation-delay: 4s;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-40px) scale(1.2);
    opacity: 0.7;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .squad-inner h2 {
    font-size: 2.2rem;
  }
  .squad-inner p {
    font-size: 1rem;
  }
}
.play-win {
  position: relative;
  padding: 50px 20px;
  background: radial-gradient(circle at center, #000 60%, #090018 100%);
  color: #fff;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: glowText 2s ease-in-out infinite alternate;
}

.section-header .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.section-header p {
  /* color: #cfeeff; */
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 16px;
}

/* Content layout */
.challenge-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.challenge-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  transition: transform 0.4s ease;
}

.challenge-image img:hover {
  transform: scale(1.05);
}

.challenge-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00FFFF;
}

.challenge-text p {
  line-height: 1.7;
  margin-bottom: 35px;
  color: #e0e6ff;
}

.btn-glow {
  display: inline-block;
  padding: 14px 45px;
  background: linear-gradient(90deg, #00FFFF, #9B30FF);
  color: #111;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.btn-glow:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(155, 48, 255, 0.9);
  color: #fff;
}

/* Glowing background shapes */
.bg-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.5;
}

.glow-left {
  top: 10%;
  left: -100px;
  background: #00FFFF;
}

.glow-right {
  bottom: 10%;
  right: -100px;
  background: #9B30FF;
}

/* Responsive */
@media (max-width: 992px) {
  .challenge-content {
    flex-direction: column;
    text-align: center;
  }

  .challenge-text h3 {
    font-size: 1.8rem;
  }
}
.play-win-new {
  position: relative;
  padding: 60px 0;
  background: radial-gradient(circle at center, #000 60%, #090018 100%);
  color: #fff;
  overflow: hidden;
}
@media(max-width:479.98px){
  .play-win-new{
    padding:0px 20px;
  }
}
.play-win-new .section-header h2 {
    font-size: 2.8rem;
  font-weight: 700;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: glowText 2s ease-in-out infinite alternate;
}

.play-win-new .section-header p {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  color: #ddd;
}

.challenge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  gap: 40px;
}

.challenge-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6), 0 0 30px rgba(155, 48, 255, 0.5);
}

.challenge-card .card-image img {
  width: 100%;
  display: block;
  border-bottom: 2px solid #00FFFF;
}

.challenge-card .card-content {
  padding: 20px;
}

.challenge-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.challenge-card p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 15px;
  line-height:1.7;
}

.btn-glow {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(45deg, #00FFFF, #9B30FF);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 20px #00FFFF, 0 0 40px #9B30FF;
}

.bg-glow-new {
  position: absolute;
  width: 120%;
  height: 120%;
  /* background: radial-gradient(circle, rgba(0,255,255,0.2), rgba(155,48,255,0.2), transparent 70%); */
  animation: glowAnim 8s infinite alternate;
  z-index: 0;
}

.glow-top {
  top: -10%;
  left: -10%;
}

.glow-bottom {
  bottom: -10%;
  right: -10%;
}

@keyframes glowAnim {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -10px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

.challenge-grid .challenge-card {
  position: relative;
  z-index: 1;
}


/* Section Background */
.play-earn-gallery {
  /* background-image: url('images/about1-5.jpg'); */
    background-color: #0d0033;
    padding: 80px 20px;
    color: #fff;
}

/* Section Header */
.play-earn-gallery .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.play-earn-gallery .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #00FFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0,255,255,0.7);
}

.play-earn-gallery .section-header p {
    max-width: 700px;
    margin: 0 auto;
    /* color: #9B30FF; */
    font-size: 16px;
    line-height: 1.7;
}

/* Gallery Grid */
.play-earn-gallery .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Cutting-edge Card */
.cut-card {
    position: relative;
    /* flex: 1 1 300px; */
    max-width: 350px;
    display: flex;
    flex-direction: column;
    /* background: linear-gradient(135deg, rgba(0,255,255,0.1), rgba(155,48,255,0.1)); */
    background: linear-gradient(135deg, #0A0A0A, #1A0033);
    border-left: 5px solid #00FFFF;
    border-right: 5px solid #9B30FF;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.cut-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

/* Card Image */
.cut-card-image img {
    width: 100%;
    display: block;
    transform: skewY(-3deg);
    transition: transform 0.5s;
}

.cut-card:hover .cut-card-image img {
    transform: scale(1.05) skewY(-3deg);
}

/* Card Content */
.cut-card-content {
    padding: 20px;
    text-align: center;
}

.cut-card-content h3 {
    font-size: 1.5rem;
    /* color: #00FFFF; */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cut-card-content p {
    font-size: 1rem;
    /* color: #9B30FF; */
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .cut-card {
        max-width: 90%;
        /* flex:0 0 200px; */
    }
}
.features-benefits {
    background-image: url('./wp-content/uploads/2023/08/about1-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px 0px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.features-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* adjust opacity as needed */
    z-index: 0;
}

/* Ensure content is above overlay */
.features-benefits .container {
    position: relative;
    z-index: 1;
}


/* Section header */
.features-benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-benefits .section-header h2 {
    font-size: 3rem;
    color: #00FFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0,255,255,0.7);
}

.features-benefits .section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    /* color: #9B30FF; */
    line-height: 1.7;
}

/* Feature items */
.features-benefits .feature {
    max-width: 800px;
    margin: 60px auto;
    position: relative;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.7;
}

/* Left and Right alignment */
.features-benefits .feature.left {
    text-align: left;
}

.features-benefits .feature.right {
    text-align: right;
}

/* Headings */
.features-benefits .feature h3 {
    font-size: 2rem;
    /* color: #00FFFF; */
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

/* Decorative line after heading */
.features-benefits .feature h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #9B30FF;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .features-benefits .feature {
        text-align: center !important;
    }

    .features-benefits .feature h3::after {
        margin: 10px auto 0;
    }
}
.how-it-works-timeline-split {
    background-color: #0d0033;
    color: #fff;
    padding: 100px 20px 30px;
}

.how-it-works-timeline-split .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-timeline-split .section-header h2 {
    font-size: 3rem;
    color: #00FFFF;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0,255,255,0.7);
    margin-bottom: 15px;
}

.how-it-works-timeline-split .section-header p {
    /* color: #9B30FF; */
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Split layout */
.how-it-works-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline left */
.timeline-left {
  position: relative;
  padding-left: 50px; /* space for the line */
}

.timeline-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px; /* line stays 20px from left */
  width: 4px;
  height: 100%;
  background-color: #9B30FF;
}

/* Mobile View */
@media (max-width: 768px) {
  .timeline-left {
    padding-left: 50px; /* keep same padding for content */
  }

  .timeline-left::before {
    left: -10px; 
  }
}


/* Timeline steps */
.timeline-step {
  display: flex;
    position: relative;
    margin-bottom: 40px;
}

.timeline-step .circle {
    width: 20px;
    height: 20px;
    background-color: #00FFFF;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 0;
    box-shadow: 0 0 10px rgba(0,255,255,0.7);
}

.timeline-step .step-content h3 {
    font-size: 1.6rem;
    /* color: #00FFFF; */
    margin-bottom: 10px;
}

.timeline-step .step-content p {
    font-size: 16px;
    /* color: #9B30FF; */
    line-height: 1.7;
}

/* Right side image */
.image-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .how-it-works-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .timeline-left {
        padding-left: 0;
    }

    .timeline-left::before {
        /* left: 50%; */
    }

    .timeline-step .circle {
        left: 50%;
        transform: translateX(-50%);
    }
}
.play-earn-video {
    background-color: #0d0033;
    color: #fff;
    padding: 50px 20px 0px;
    text-align: center;
}

.play-earn-video .section-header h2 {
    font-size: 3rem;
    color: #00FFFF;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0,255,255,0.7);
    margin-bottom: 15px;
}

.play-earn-video .section-header p {
    font-size: 16px;
    /* color: #333; */
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* Swiper images */
.video-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    border: 2px solid #9B30FF;
}

/* Responsive */
@media (max-width: 768px) {
    .play-earn-video .section-header h2 {
        font-size: 2.2rem;
    }

    .play-earn-video .section-header p {
        font-size: 1rem;
    }
}
 .play-earn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* a bit more breathing space */
  justify-content: center;
}

.play-earn-item {
  flex: 0 0 calc(50% - 20px); /* exactly 2 per row, accounting for gap */
  max-width: 600px; /* prevents them from stretching too much */
}

.play-earn-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive - single image per row on smaller screens */
@media (max-width: 991px) {
  .play-earn-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



    /* Mobile View Padding */
    @media (max-width: 768px) {
      .play-earn-item {
        padding: 0 15px; /* Left & Right padding only on mobile */
        flex: 0 0 100%; /* Make images full-width for mobile */
      }
    }
    /* Container */
.pricing-section {
  padding: 60px 0;
  /* background-color: #121212; */
}

.pricing-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #00FFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.section-header p {
  font-size: 16px;
  color: #ddd;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual Card */
.pricing-card {
  flex: 0 0 300px;
  background-color: #000; /* Black background */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  text-align: center;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.8); */
  border: 2px solid #00FFFF;
  box-shadow: 0 6px 15px rgba(0,255,255,0.2);
}

/* Pro Plan Highlight */
/* .pricing-card.pro {
  border: 2px solid #00FFFF;
  box-shadow: 0 6px 15px rgba(0,255,255,0.2);
} */

/* Card Text */
.pricing-card h3 {
  font-size: 1.8rem;
  color: #00FFFF;
  margin-bottom: 10px;
  text-align: left;
}

.pricing-card .price {
  font-size: 1.5rem;
  color: #00CCCC;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin-bottom: 8px;
  text-align: left;
}

/* Button */
.pricing-card .btn {
  text-align: left;
  display: inline-block;
  background-color: #00CCCC;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.pricing-card .btn:hover {
  background-color: #00FFFF;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-card {
    flex: 0 0 100%;
  }
}
.how-it-works-content {
  display: flex;
  flex-wrap: wrap; /* Allows stacking on small screens */
  gap: 30px;
  align-items: flex-start; /* keeps both sides aligned at top */
}

.timeline-left {
  flex: 1 1 650px; /* left column takes available space */
  max-width: 750px; /* optional max width */
}

.image-right {
  flex: 0 0 400px; /* right column fixed width */
}

.image-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Mobile view */
@media (max-width: 768px) {
  .how-it-works-content {
    flex-direction: column; /* stack timeline above image */
  }

  .image-right {
    flex: 1 1 100%;
  }
}
.contact-section {
  padding: 80px 40px;
  background: #0a0a0a;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #00FFFF;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.section-header p {
  color: #aaa;
  max-width: 700px;
  margin: 10px auto 0;
}

/* Layout */
.contact-content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

/* Form Styling */
.contact-form {
  flex: 0.5;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 86, 179, 0.3);
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  text-align: left;
  margin-top: 20px;
}

.form-group.full {
  width: 100%;
}

.form-group label {
  display: block;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
  font-size:16px;
}
.form-group select{
  width: 100%;
  padding: 12px 15px;
  background: #111;
  color: #ddd;
  border-radius: 8px;
  border: 1px solid #565656;
  outline: none;
  transition: 0.3s;
}
/* Style select fields */
.appointment-form select {
  appearance: none; /* Removes default browser arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #444;
  padding: 10px 40px 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
  position: relative;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23e6d7d7' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center; /* default */
  background-size: 16px;
}


.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #111;
  color: #ddd;
  border-radius: 8px;
  border: 1px solid #565656;
  outline: none;
  transition: 0.3s;
}
/* Placeholder text color */
form input::placeholder,
form textarea::placeholder,
form select::placeholder {
  color: #ddd !important;
  opacity: 1; /* Ensures consistent color in all browsers */
}


/* Submit Button */
.btn-submit {
  background: linear-gradient(90deg, #0056b3, #00ffff);
  border: none;
  padding: 14px 40px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s ease;
  margin-top: 20px;
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffff;
}

.text-center1 {
  text-align: center;
}

/* Contact Info */
.contact-info {
  flex: 0.5;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 450px;
}

.contact-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: left;
}

.info-overlay h3 {
  font-size: 2rem;
  /* color: #00FFF; */
  margin-bottom: 25px;
  text-transform: uppercase;
  /* text-shadow: 0 0 12px rgba(0, 255, 255, 0.6); */
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.info-item i {
  font-size: 1.4rem;
  color: white;
  min-width: 25px;
  margin-top: 5px;
}

.info-text p {
  margin: 0;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  margin-bottom:10px;
}

.info-text span {
  display: block;
  margin-left: 0;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .info-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .info-text p,
  .info-text span {
    font-size: 0.95rem;
  }

  .info-overlay {
    padding: 25px 20px;
  }
}

/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    flex: 1;
    width: 100%;
  }

  .contact-info {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 40px 20px 0px;
  }

  .contact-form {
    padding: 25px 25px 0px;
  }
.form-group{
  margin-top:20px;
}
  .form-row {
    flex-direction: column;
    margin-top:0px;
    gap:0px;
  }

  .btn-submit {
    /* width: 100%; */
    padding: 14px 24px;
  }

  .info-overlay {
    padding: 25px;
    text-align: left;
  }

  .info-overlay h3 {
    font-size: 1.5rem;
  }

}

.iti{
  width:100%;
}

.appointment-section {
  padding: 80px 40px;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  justify-content: center;
}
/* Popup Background */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

/* Popup Box */
.popup-content {
  background: #0a0a0a;
  border: 2px solid #00FFFF;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  width: 340px;
  position: relative;
  animation: popupAppear 0.4s ease;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #00FFFF;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.3s;
}

.close-popup:hover {
  color: #fff;
  text-shadow: 0 0 10px #00FFFF;
}

/* Joystick Icon (custom shape) */
.joystick-icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}


/* Text */
.popup-content h3 {
  /* color: #00FFFF; */
  font-size: 1rem;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
  /* text-shadow: 0 0 12px rgba(0, 255, 255, 0.6); */
}

.popup-content p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Button */
.btn-popup {
  background: #00ffff;
  /* background: linear-gradient(90deg, #0056b3, #00ffff); */
  border: none;
  color: black;
  padding: 12px 40px;
  /* border-radius: 10px; */
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: bold;
  /* box-shadow: 0 0 15px rgba(0, 255, 255, 0.6); */
}

.btn-popup:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px #9B30FF;
  background-color: #9B30FF;
}

/* Animations */
@keyframes popupAppear {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes stickMove {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-3px); }
}

/* Responsive */
@media (max-width: 500px) {
  .popup-content {
    width: 90%;
    padding: 30px 20px;
  }
}
/* Our Games Section */
.our-games-section {
  background: #0a0a0a;
  padding: 40px 40px;
  color: #fff;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  text-transform: uppercase;
  color: #00FFFF;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.section-header p {
  color: #ddd;
  font-size: 1.1rem;
  margin-top: 10px;
}

.games-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.game-item {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
  transition: opacity 0.4s ease;
  opacity: 0.6;
}

.game-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.game-item:hover::before {
  opacity: 0.9;
}

.overlay {
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
  transition: 0.4s ease;
}

.overlay h3 {
  font-size: 1.6rem;
  color: #00ffff;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.overlay p {
  font-size: 0.95rem;
  color: #e6d7d7;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .game-item {
    height: 250px;
  }

  .overlay h3 {
    font-size: 1.3rem;
  }
}
.terms-section {
  padding: 40px 60px;
  background: #0b0b0f;
  color: #f1f1f1;
  /* font-family: 'Poppins', sans-serif; */
}

@media(max-width:479.98px){
  .terms-section {
  padding: 40px 20px;
  background: #0b0b0f;
  color: #f1f1f1;
  /* font-family: 'Poppins', sans-serif; */
}
}
.terms-section h2 {
  color: #00ffff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00ffff;
}
.terms-section p,
.terms-section li {
  color: #ddd;
  line-height: 1.7;
  font-size:16px;
  font-weight:400;
}
.terms-content h3 {
  color: white;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.terms-content ul {
  margin: 10px 0 20px 25px;
}
.terms-content a {
  color: #00ffff;
  text-decoration: underline;
}

.email-link{
  color:#ddd !important;
  font-size:16px;
  text-decoration: none !important;
}
.email-link:hover{
  color:#00FFFF !important;
  text-decoration: none;
}

.header-element{
  justify-content: space-between;
}



.jkit-button-wrapper1{
  	  border:1px solid white; 
      color: white; 
      padding: 14px 25px; 
      font-weight: 600; 
      text-decoration: none; 
      transition: all 0.3s;
}
.jkit-button-wrapper1:hover{
  background-color: #00FFFF;
}
.gap-footer{
  justify-content: space-between;
}
.jkit-button-wrapper2{
  border:1px solid white!important;
  color: white !important;;
}

.mob-appo{
														display:none !important;
													}
													@media(max-width:789.98px){
														.mob-appo{
															display: block !important;;
														}
                                                      #contact .section-header{
margin-bottom:30px;
                          }
													}

