* {
      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;
      }
    }

/* === 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;
}

    /* Hot Games Section */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background: #071222;
      border: 2px solid #1a2b55;
      border-radius: 8px;
      margin: 20px 50px;
    }
    .section-header a {
  text-decoration: none;
}
    .section-left { display: flex; align-items: center; gap: 12px; }
    .nav-arrows { display: flex; gap: 6px; }
    .arrow-btn {
      background: #111c33; border: none; width: 28px; height: 28px; border-radius: 50%;
      color: #fff; cursor: pointer; font-size: 16px; display: flex; align-items: center;
      justify-content: center; transition: 0.2s;
    }
    .arrow-btn:hover { background: var(--accent1); }
.see-all-btn {
  background: linear-gradient(90deg, #4a3aff, #6f5bff);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.see-all-btn:hover { opacity: 0.85; transform: translateX(2px); }
    .see-all-btn::after { font-size: 14px; }

    /* === Carousel === */
    .carousel-wrapper { overflow: hidden; padding: 0 80px; }
    .games-carousel {
      display: flex;
      gap: 10px;
      transition: transform 0.4s ease-in-out;
      will-change: transform;
    }
    .game-card {
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 1 / 1;   /* ensures square shape */
  background: transparent;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center; /* optional: add background if image doesnâ€™t fill */
  border-radius: 8px; /* match your card style */
  display: block;
    transition: transform 0.3s ease;
}


.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 */
}
/* Default Grid View */
.grid-view {
  display: grid !important;
  gap: 10px;
  transform: none !important;
}

/* Slot Games navigation arrows */

.slotarrow-btn {
background: #111c33; border: none; width: 28px; height: 28px; border-radius: 50%;
color: #fff; cursor: pointer; font-size: 16px; display: flex; align-items: center;
justify-content: center; transition: 0.2s;
}
.slotarrow-btn:hover { background: var(--accent1); }
.slotsee-all-btn {
  background: linear-gradient(90deg, #4a3aff, #6f5bff);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.slotsee-all-btn:hover { opacity: 0.85; transform: translateX(2px); }
    .slotsee-all-btn::after { font-size: 14px; }


/* Slot Games Carousel */
.slotgames-carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* Slot Games Card - use the SAME style as hot games */
.slotgames-carousel .game-card {
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 1 / 1;   /* keep same square design */
  background: transparent;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slotgames-carousel .game-card img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;  /* same behavior as hot games */
  border-radius: 6px;
}

.slotgames-carousel .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 */
}

/* === Jackpot Buttons === */
.jackpotarrow-btn {
background: #111c33; border: none; width: 28px; height: 28px; border-radius: 50%;
color: #fff; cursor: pointer; font-size: 16px; display: flex; align-items: center;
justify-content: center; transition: 0.2s;
}
.jackpotarrow-btn:hover { background: var(--accent1); }
.jackpotsee-all-btn {
  background: linear-gradient(90deg, #4a3aff, #6f5bff);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.jackpotsee-all-btn:hover { opacity: 0.85; transform: translateX(2px); }
    .jackpotsee-all-btn::after { font-size: 14px; }

/* Jackpot Games Carousel */
.jackpotgames-carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* Slot Games Card - use the SAME style as hot games */
.jackpotgames-carousel .game-card {
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 1 / 1;   /* keep same square design */
  background: transparent;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jackpotgames-carousel .game-card img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;  /* same behavior as hot games */
  border-radius: 6px;
}

.jackpotgames-carousel .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 */
}

/* === All Games Buttons === */
.allarrow-btn {
background: #111c33; border: none; width: 28px; height: 28px; border-radius: 50%;
color: #fff; cursor: pointer; font-size: 16px; display: flex; align-items: center;
justify-content: center; transition: 0.2s;
}
.allarrow-btn:hover { background: var(--accent1); }
.allsee-all-btn {
  background: linear-gradient(90deg, #4a3aff, #6f5bff);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.allsee-all-btn:hover { opacity: 0.85; transform: translateX(2px); }
    .allsee-all-btn::after { font-size: 14px; }

/* All Games Carousel */
.allgames-carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* All Games Card - use the SAME style as hot games */
.allgames-carousel .game-card {
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 1 / 1;   /* keep same square design */
  background: transparent;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.allgames-carousel .game-card img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;  /* same behavior as hot games */
  border-radius: 6px;
}

.allgames-carousel .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 */
}


    /* === 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;
  }
}
/* Ã¢Å“â€¦ Responsive: Show only the right header */
@media (min-width: 769px) {
  .web-only { display: flex; }
  .mobile-only { display: none; }
  .solutions-mobile { display: none; }
  .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;
}
.grid-view {
  display: grid !important;
  grid-template-columns: repeat(8, 1fr); /* âœ… Add this line */
  gap: 10px;
  transform: none !important;
}
    .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;}
    .carousel-wrapper { overflow: hidden; padding: 20px 10px; }
      .section-header { margin: 15px; flex-direction: row; align-items: flex-start; margin-top: 20px; }
      .game-card {min-width: 140px; max-width: 140px; aspect-ratio: 1 / 1;   /* ensures square shape */}
      .see-all-btn {padding: 4px 10px; font-size: 12px; border-radius: 16px;}
      .slotsee-all-btn {padding: 4px 10px; font-size: 12px;}
      .jackpotsee-all-btn {padding: 4px 10px; font-size: 12px;}
      .allsee-all-btn {padding: 4px 10px; font-size: 12px;}
      .grid-view {grid-template-columns: repeat(3, 1fr);}
     #demoPlaceholder {font-size: 1.3rem; font-weight: 600; color: #fff; position: absolute;}
    .section-header h2 {font-size: 16px;}
    .game-card img {width: 100%; height: 100%;          /* leave space for title */ gap: 5px; object-fit: contain;    /* fills square nicely */ border-radius: 6px;}
    .games-carousel img {object-fit: contain;}
    .game-card { min-width: 115px; max-width: 115px; }
    .slotgames-carousel .game-card { min-width: 115px; max-width: 115px; }
    .jackpotgames-carousel .game-card { min-width: 115px; max-width: 115px; }
    .allgames-carousel .game-card { min-width: 115px; max-width: 115px; }
     .game-card h3 { font-size: 11px; margin-top: 5px; }
    .slotgames-carousel .game-card h3 { font-size: 11px; margin-top: 5px; }
    .jackpotgames-carousel .game-card h3 { font-size: 11px; margin-top: 5px; }
    .allgames-carousel .game-card h3 { font-size: 11px; margin-top: 5px;}
    


    .footer-links{ align-items: center;} }
/* Laptops / Small desktops: 1025px â€“ 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .web-header {
    padding: 15px 40px;
  }
  .web-header nav {
    gap: 22px;
  }
}