 
    * {
      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: 10px 15px;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 15;
    }

    .menu-icon {
      font-size: 30px;
      cursor: pointer;
    }

    .mobile-logo img {
      height: 42px;
    }

    .mobile-icon img {
      width: 38px;
      height: 38px;
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      border-radius: 50%;
    }
.mobile-icon img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #304BC6 0%, #6E42E8 30.29%, #5658C0 62.5%, #092298 100%);
  border: 3.333px solid #1140FF;
}

    /* ===== 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;
      }
    }

/* === Category Bar === */
.category-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #c7d6ff;
  gap: 10px;
}

.left-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.left-links a.active {
  color: #66a1ff; /* highlighted text color */
  font-weight: 600;
  background: rgba(102, 161, 255, 0.15); /* subtle background */
  border-radius: 20px;
  padding: 6px 12px;
  transform: scale(1.05);
}


/* --- Make swipeable on mobile --- */
@media (max-width: 768px) {
  .category-bar {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .left-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    padding-bottom: 6px;
  }

  .left-links::-webkit-scrollbar {
    display: none;
  }
  
}

.left-links a {
  text-decoration: none;
  color: #c7d6ff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px; /* spacing between icon and text */
  transition: color 0.3s, transform 0.3s;
}

.left-links a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.left-links a:hover {
  color: #66a1ff;
  transform: scale(1.02);
}

.left-links a i {
  font-size: 16px;
}

/* === Right Tools === */
.right-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* === Custom Currency Dropdown === */
.currency-dropdown {
  position: relative;
}

.currency-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.currency-dropdown .dropdown-toggle img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.currency-dropdown .dropdown-toggle i {
  font-size: 10px;
  margin-left: 4px;
}

/* Dropdown menu */
.currency-dropdown .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #0c1440;
  border: 1px solid rgba(55, 115, 255, 0.3);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-radius: 10px;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  display: none;
  width: 120px;
  z-index: 100;
}

.currency-dropdown .dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c7d6ff;
  font-size: 13px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.currency-dropdown .dropdown-menu li:hover {
  background: rgba(255,255,255,0.1);
  color: #66a1ff;
}

.currency-dropdown .dropdown-menu li img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
}

/* === Buttons === */
.right-tools .demo-btn {
  background: linear-gradient(90deg, #293cff, #1a5bff);
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.right-tools .demo-btn:hover {
  background: #426eff;
}

.right-tools .refresh {
  color: #7faaff;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s;
}

.right-tools .refresh:hover {
  transform: rotate(120deg);
}


/* === Search Box === */
.search-box {
  margin-top: 15px;
  display: flex;
  align-items: center;
  background: #081630;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
  color: #a3b8ff;
}
.search-box img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.search-box i {
  color: #4f8cff;
  font-size: 16px;
  margin-right: 10px;
}

.search-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}


/* === Games Section === */
/* === Games Section (Centers Everything) === */
.games-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* === Section Header === */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

.section-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.see-all-btn {
  background: linear-gradient(90deg, #5a45ff, #7b61ff);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.see-all-btn:hover {
  background: linear-gradient(90deg, #7b61ff, #5a45ff);
}

/* === All Games Grid (Centered) === */
/* === All Games Grid (Centered) === */
.games-carousel {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* default desktop view */
  gap: 20px;
  justify-content: center;
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
}

/* === Game Card === */
.game-card {
  width: 100%;
  max-width: 240px;
  text-align: center;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
}

/* ✅ Mobile (≤600px): 3 columns */
@media (max-width: 600px) {
  .games-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px 10px;
  }
  .game-card h3 {
    font-size: 13px;
    margin-top: 5px;
  }
}

/* ✅ Tablet (601px–1024px): 5 columns */
@media (min-width: 601px) and (max-width: 1024px) {
  .games-carousel {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 30px 20px;
  }
}

/* ✅ Laptop small (1025px–1440px): 6 columns */
@media (min-width: 1025px) and (max-width: 1440px) {
  .games-carousel {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
}

/* ✅ Large Desktop (1441px+): 8 columns */
@media (min-width: 1441px) {
  .games-carousel {
    grid-template-columns: repeat(8, 1fr);
  }
}


.game-card h3 {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
  white-space: normal; /* ✅ allows wrapping */
  overflow: visible;
  text-overflow: unset;
  line-height: 1.2;
  min-height: 2.6em; /* keeps consistent card height */
  margin-bottom: 20px;
}

/* === Responsive Layouts === */
@media (max-width: 1200px) {
  .games-carousel {
    grid-template-columns: repeat(6, minmax(160px, 1fr));
  }
}

@media (max-width: 1024px) {
  .games-carousel {
    grid-template-columns: repeat(3, minmax(160px, 1fr)); /* ✅ Tablet */
  }
}

@media (max-width: 600px) {
  .games-carousel {
    grid-template-columns: repeat(1, minmax(250px, 1fr)); /* ✅ Mobile */
    gap: 10px;
  }

  .game-card {
    max-width: 320px;
  }

  .game-card h3 {
    font-size: 16px;
  }
}


    /* === Footer === */
    .footer {
      background: #08184A;
      color: #aaa;
      padding: 60px 40px 20px;
      font-size: 14px;
      margin-top: 50px;
    }
    .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;
    }
    
/* ✅ Tablet Responsiveness */
@media (max-width: 992px) and (min-width: 601px) {
  /* Footer adjustments */
  .footer-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    gap: 40px;
  }
}
    @media (min-width: 1024px) {
  .grid-view {grid-template-columns: repeat(8, 1fr);}
  
    }
    /* âœ… Responsive: Show only the right header */
    @media (min-width: 769px) {
  .web-only { display: flex; }
  .mobile-only { display: none; }
    .solutions-mobile { display: none; }
        .section-header { margin: 15px; flex-direction: row; align-items: flex-start; border: 2px solid #1a2b55; border-radius: 8px; margin: 15px; padding: 10px 15px; }
.search-wrapper {
  width: calc(100% - 500px); /* ✅ accounts for 50px margin on each side */
  padding: 20px;
  margin-left: 250px;
  margin-right: 250px;
  box-sizing: border-box; /* ✅ ensures padding doesn’t break width */
  margin-top: 50px;
}
.banner-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 60px;
  font-size: 1.5rem;
  border-radius: 40px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
    }
/* âœ… Responsive: Show only the right header */
@media (max-width: 768px) {
    .web-only { display: none; }
    .mobile-only { display: flex;  }
    .search-wrapper {width: 100%; padding: 15px; margin-top: 15px;}
    .section-header { margin: 15px; flex-direction: row; align-items: flex-start; border: 2px solid #1a2b55; border-radius: 8px; margin: 15px; padding: 10px 15px; border-radius: 10px; }
    .footer-links{ align-items: center;}
    .games-section {  padding: 0 10px;}
    .games-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr)); /* ✅ 8 columns desktop */
    gap: 10px;
    justify-content: center;      /* ✅ center grid items */
    justify-items: center;        /* ✅ center each card inside its cell */
    align-items: start;
    width: 100%;
    max-width: 1600px;
      padding: 0 0;
    margin: 0 auto;               /* ✅ centers grid container */
    box-sizing: border-box;
  }

  .game-card {
    max-width: 100%;
  }

  .game-card img {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    object-fit: cover; /* ✅ fills nicely without stretching */
  }

  .game-card h3 {
    font-size: 13px;
    margin-top: 4px;
    margin-bottom: 10px;
  }
/* Laptops / Small desktops: 1025px – 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .web-header {
    padding: 15px 40px;
  }
  .web-header nav {
    gap: 22px;
  }
}