    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #071022;
      font-family: "Poppins", sans-serif;
      color: #fff;
      overflow-x: hidden;
    }

    /* ===== HEADER (Desktop) ===== */
    header {
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 50px;
      position: relative;
      z-index: 10;
    }

    .logo img {
      height: 50px;
    }

    .right-section {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 22px;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #fff;
    }

    .games-btn {
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 18px;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .games-btn:hover {
      opacity: 0.85;
    }

    /* ===== LANGUAGE SELECTOR ===== */
    .lang-selector {
      position: relative;
      display: flex;
      align-items: center;
      background: #181820;
      border-radius: 30px;
      padding: 6px 12px;
      cursor: pointer;
      font-size: 16px;
      gap: 6px;
    }

    .lang-selector img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    .lang-selector span {
      color: #ddd;
    }

    .lang-options {
      display: none;
      position: absolute;
      top: 38px;
      right: 0;
      background: #181820;
      border-radius: 10px;
      overflow: hidden;
      min-width: 80px;
      z-index: 10;
    }

    .lang-options div {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      cursor: pointer;
      font-size: 13px;
      color: #ccc;
    }

    .lang-options div:hover {
      background: #2b2b40;
      color: #fff;
    }

    .lang-options img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    /* ===== MOBILE HEADER ===== */
    .mobile-header {
      display: none;
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      padding: 12px 20px;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 15;
    }

    .menu-icon {
      font-size: 26px;
      cursor: pointer;
    }

    .mobile-logo img {
      height: 35px;
    }

    .mobile-icon img {
      width: 32px;
      height: 32px;
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      border-radius: 50%;
      padding: 6px;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 16px;
      background: #0b0b20;
      padding: 20px;
      z-index: 1000;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #ccc;
      font-size: 15px;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: #fff;
    }

    .mobile-menu .lang-selector {
      width: fit-content;
    }

    /* ===== VIDEO SECTION ===== */
    .video-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: linear-gradient(90deg, #050510, #0b0b20);
    }

    .video-section video {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      header {
        display: none;
      }

      .mobile-header {
        display: flex;
      }

      .video-section video {
        height: 240px;
        object-fit: contain;
      }
    }
    
    .power-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px 10%;
      gap: 20px;
    }

    .power-text {
      flex: 1;
    }

    .power-text h1 {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 25px;
    }

    .power-text p {
      font-size: 16px;
      line-height: 1.6;
      color: #d0d0d0;
      margin-bottom: 15px;
    }

    .power-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .power-image img {
      width: 100%;
      max-width: 500px;
      height: auto;
    }

    /* ===== Responsive (Mobile) ===== */
    @media (max-width: 768px) {
      .power-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
      }

      .power-text h1 {
        font-size: 32px;
      }

      .power-image {
        order: -1; /* Image appears on top */
        margin-bottom: 30px;
      }
    }
    
    /* ===== WHY CHOOSE SECTION ===== */
.why-choose-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  position: relative;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  z-index: 1;
}

/* Glow effect behind cards */
.why-choose::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
}
.why-choose h2{
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
}
/* Wrapper for cards */
.why-wrapper {
  position: relative;
  z-index: 1;
}

/* Rows */
.why-top, .why-bottom {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Cards */
.why-card {
  background: #101E28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: 300px;
  max-width: 90%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
}

/* Videos inside cards */
.why-card video {
  width: 230px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

/* Headings and text */
.why-card h3 {
  font-size: 1.1rem;
  color: #4fa3ff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .why-top, .why-bottom {
    justify-content: center;
    gap: 30px;
  }
}

/* Mobile: switch to normal flow */
@media (max-width: 768px) {
  .why-choose-wrapper {
    height: auto; /* allow it to expand naturally */
    display: block; /* stack content normally */
    padding: 40px 20px;
  }

  .why-choose {
    padding: 0;
  }

  .why-top, .why-bottom {
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .why-card video {
    width: 90%; /* scale videos to mobile screen */
    max-width: 300px;
    height: auto;
  }
}

/* FAQ SECTION */
.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px; /* changed from 25px */
  letter-spacing: 1px;
}
.faq-section h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 15px;
}

.faq-item {
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #fff;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
}

.faq-question:hover {
  background: black;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: black;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  color: #cfd3e6;
  font-size: 15px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item .icon {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
  padding: 10px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
  content: "−";
}

/* CTA Container */
.cta {
  max-width: 850px;
  margin: 70px auto;
  padding: 40px 30px;
  text-align: center;
  background: radial-gradient(circle at top, rgba(106, 90, 249, 0.25), rgba(12, 22, 50, 0.95) 80%);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(106, 90, 249, 0.4);

  /* Centering */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Heading */
.cta h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

/* Paragraph */
.cta p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #cfd3e6;
  max-width: 600px;
  line-height: 1.6;
}

/* Button */
.cta-btn {
  background: linear-gradient(90deg, #6a5af9, #4a8cff);
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(106, 90, 249, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .cta {
    margin: 0 20px;
    padding: 30px 20px;
    margin-bottom: 100px;
  }

  .cta h2 {
    font-size: 20px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  .faq-section {
    margin: 30px auto;
  }
}

    /* === Footer === */
    .footer {
      background: #08184A;
      color: #aaa;
      padding: 60px 40px 20px;
      font-size: 14px;
    }

    .footer-top { text-align: center; margin-bottom: 30px; }
    .footer-top .social-icons { display: flex; justify-content: center; gap: 25px; }

    .footer-top img {
      width: 28px; height: 28px;
      filter: brightness(0) invert(1);
      transition: 0.3s;
    }

    .footer-top img:hover { filter: brightness(0) invert(0.6); }

    .footer-main {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1400px;
      margin: auto;
    }

    .footer-left { flex: 1; min-width: 280px; }
    .footer-left p { margin: 10px 0; line-height: 1.6; }
    .footer-left .desc {
      border-left: 2px solid #3b4a6b;
      padding-left: 15px;
      margin-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }

    .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: #bbb; text-decoration: none; transition: 0.3s;
    }

    .footer-links a:hover { color: #6a5af9; }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #1b2a50;
      padding-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }