/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins';
  background-color: #000;
}
h1 {
  font-weight: 600; /* Bold style */
}

p {
  font-weight: 400; /* Regular style */
}


/* Preloader styles */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #22222F; /* Background color for preloader */
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-gif {
  width: 150px; /* Size for desktop */
  height: 150px; /* Size for desktop */
}

@media (max-width: 1024px) {
  .preloader-gif {
      width: 130px; /* Size for tablets and mobile */
      height: 130px; /* Size for tablets and mobile */
  }
}

@media (max-width: 768px) {
  .preloader-gif {
      width: 100px; /* Size for tablets and mobile */
      height: 100px; /* Size for tablets and mobile */
  }
}

.customs-section {
  position: fixed; /* Keeps it at the top */
  top: 0;
  height: 5px;
  margin: 0 10px 0 275px;
  background-color: rgb(0, 0, 0);
  width: calc(100% - 285px); /* Adjust width to fit margins */
  z-index: 1000; /* Ensures it stays above other elements */
}

@media (max-width: 1024px) {
  .customs-section {
    display: none;
  }
}



/* Desktop Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #22222F;
  padding: 5px 20px;
  border-radius: 10px;
  height: 60px;
  margin: 5px 5px 0 275px;
  position: sticky; /* Sticky positioning for desktop */
  top: 5px; /* Stick to the top of the viewport */
  z-index: 100; /* Keep navbar above other content */
}

.navbar-links {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto; /* Add horizontal scroll */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: hsla(240, 93%, 48%, 0) transparent; /* For Firefox */
  margin-bottom: -11px;
  align-items: center; /* Center align items vertically */
}

/* Scrollbar Styling for Webkit Browsers */
.navbar-links::-webkit-scrollbar {
  height: 1px;
}

.navbar-links::-webkit-scrollbar-thumb {
  background-color: #f56a35;
  border-radius: 10px;
}

.navbar-links::-webkit-scrollbar-track {
  background: transparent;
}

.navbar-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0; /* Prevent items from shrinking */
  cursor: pointer;
  margin-left: 30px;
}

.navbar-links a:hover {
  color: #ff6d00;
}

.navbar-links a img {
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
}

.navbar-buttons {
  display: flex;
  flex-shrink: 0;
  gap: 0; /* Ensure no gap between buttons */
  margin: 0; /* Remove any inherited margins */
}

.navbar-buttons a {
  text-decoration: none;
  margin: 0; /* Remove any inherited margins */
}

.navbar-buttons .login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 2px solid #f56a35;
  background-color: #22222F;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 50px;  
  width: 90px; /* Set width */
  margin: 0; /* Explicitly remove any margin */
  border-radius: 0; /* Remove all corners */
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navbar-buttons .signup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background-color: #f56a35;
  border: 2px solid #f56a35;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 90px; /* Set width */
  height: 50px;
  margin: 0; /* Explicitly remove any margin */
  border-radius: 0; /* Remove all corners */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.navbar-buttons .login img,
.navbar-buttons .signup img {
  width: 20px;
  height: 20px;
  margin-right: 8px; /* Add space between icon and text */
}

.navbar-buttons .login:hover {
  background-color: #1a1a22;
  color: #ffffff;
}

.navbar-buttons .signup:hover {
  background-color: #ff6d00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    display: none;
  }
}

/* Mobile/Tablet Navbar Styles */
.magicwin-navbar-mobile {
  display: none; /* Hidden by default for desktop */
  background-color: #16161f;
  padding: 5px;
  position: sticky; /* Sticky positioning for mobile/tablet */
  top: 0; /* Stick to the top of the viewport */
  z-index: 100; /* Keep navbar above other content */
}

/* New Section Above Links */
.magicwin-navbar-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #22222F; /* Grey Background */
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.magicwin-logo img {
  width: 80px;
  margin-left: 40px; /* Added left margin */
}

.magicwin-auth-buttons2 {
  display: flex;
  gap: 0; /* Removed the gap */
}

/* Login and Signup Buttons */
.magicwin-login, .magicwin-signup {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #f56a35;
  background-color: transparent;
  color: #fff;
  height: 40px; /* Set height */
  width: 70px; /* Adjust width to fit content */
  cursor: pointer;
  transition: all 0.3s ease;
}

.magicwin-login {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;

}

.magicwin-signup {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  
}

.magicwin-login:hover {
  background-color: #1a1a22;
  color: #ffffff;
}

.magicwin-signup {
  background-color: #f56a35;
}

.magicwin-signup:hover {
  background-color: #ff6d00;
}

/* Fix for Login and Signup Icons */
.magicwin-login img,
.magicwin-signup img {
  width: 15px;
  height: 15px;
  margin-bottom: 5px; /* Space between icon and text */
}

/* Links Section */
.magicwin-navbar-links {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; /* Add horizontal scroll */
  background-color: #16161f;
  padding: 5px;
  border-radius: 5px;
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #22222F transparent; /* For Firefox */
}

/* Scrollbar Styling for Webkit Browsers */
.magicwin-navbar-links::-webkit-scrollbar {
  height: 8px;
}

.magicwin-navbar-links::-webkit-scrollbar-thumb {
  background-color: #f56a35;
  border-radius: 10px;
}

.magicwin-navbar-links::-webkit-scrollbar-track {
  background: transparent;
}

/* Updated Styles for Mobile Links */
.magicwin-navbar-links a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align image and text horizontally */
  gap: 10px; /* Add spacing between image and text */
  margin-right: 15px; /* Add space between items */
  flex-shrink: 0; /* Prevent items from shrinking */
}

.magicwin-navbar-links a img {
  display: inline-block;
  margin: 0; /* Remove extra margin */
  width: 25px;
  height: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
      display: none;
  }

  .magicwin-navbar-mobile {
      display: block;
  }

  .magicwin-logo img {
      height: 30px;
  }
}

@media (min-width: 1025px) {
  .magicwin-navbar-mobile {
      display: none;
  }
}


/* Sidebar Styles */
.sidebar {
  width: 260px;
  height: 100vh; /* Full height of the viewport */
  background-color: #22222F; /* Sidebar color */
  position: fixed; /* Ensure the sidebar stays fixed */
  top: 5px; /* Top margin */
  left: 10px; /* Left margin */
  padding: 10px;
  overflow-y: auto; /* Allows vertical scrolling */
  transition: left 0.3s ease; /* Smooth toggle effect for mobile */
  border-radius: 5px; /* Curve the corners */
}

/* Logo Section */
@media (max-width: 1024px) {
  .logo {
      margin-left: 120px;
  }

  .navbar-mobile {
      display: block;
  }
}

@media (max-width: 1024px) {
  .logo-img {
      display: none;
  }
}
.logo-img {
  width: 220px;
  height: auto;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 20px;
}

/* Section Styles */
.section {
  background-color: #16161f; /* Section color */
  margin: 5px;
  border-radius: 5px; /* Curve the corners of sections */
  padding: 10px;
}

.section ul {
  list-style: none;
}

.section li {
  margin-bottom: 10px;
  position: relative; /* Necessary for pseudo-element positioning */
}

.section li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.section li a:hover {
  color: #ff6d00; /* Optional hover effect */
}

.section li img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

/* Line Under Each Link */
.section li:not(:last-child)::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #393c4f;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px; /* Adjust spacing below the text */
}

/* Hamburger Menu */
.hamburger {
  display: none; /* Hidden on desktop */
  width: 20px;
  height: 20px;
  position: fixed; /* Ensures it stays in a fixed position */
  top: 20px; /* Adjust the position */
  left: 15px; /* Adjust the position */
  cursor: pointer;
  background-image: url('assets/img/hamburger.svg'); /* Hamburger image */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1100; /* Ensure it appears above both the sidebar and navbar */
}
/* Close Button */
.close-btn {
  display: none; /* Hidden on desktop */
  position: absolute;
  margin-left: 15px;
  margin-top: -150px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sidebar {
      width: 200px;
      left: -210px; /* Hidden by default for mobile */
      margin-top: 51px; /* Adjusted top margin */
      margin-left: 5px;
      padding-top: 10px; /* Sections start 10px from top */
      z-index: 1000;
  }

  .hamburger {
      display: block; /* Show hamburger on mobile */
      color: #ffffff00;
  }

  .close-btn {
      display: block; /* Show close button on mobile */
      color: #fff;
  }
}

/* News ticker section */
.news-ticker {
  background-color: #09b55a;
  color: white;
  padding: 0 10px;
  font-size: 14px;
  position: relative;
  width: auto;
  height: 30px;
  margin-top: 5px;
  margin-left: 275px;
  margin-right: 5px;
  margin-bottom: -5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-ticker span {
  display: inline-block;
  white-space: nowrap;
  animation: moveNews 20s linear infinite;
}

@keyframes moveNews {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Slider Section */
.magicwin-slider-container {
  position: relative;
  overflow: hidden;
  margin: 10px auto;
  border-radius: 2px; /* Corner curve */
}

.magicwin-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.magicwin-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.magicwin-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.magicwin-register-btn {
  position: absolute;
  bottom: 5%;
  left: 5%;
  padding: 10px 20px;
  background-color: #ff6d00;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.magicwin-register-btn:hover {
  background-color: #e65c00;
}

@media screen and (max-width: 1024px) {
  .magicwin-register-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 600px) {
  .magicwin-register-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media screen and (min-width: 1025px) {
  .magicwin-slider-container {
    margin: 5px 5px 0px 275px;
  }
}

@media screen and (max-width: 1024px) {
  .magicwin-slider-container {
    margin: 5px;
  }
}


/* Buttons Section */
.button-section {
  margin: 5px 5px 0 275px; /* Desktop margin */
}

.button-row, .button-row2 {
  display: flex;
  justify-content: space-between; /* Align buttons properly on desktop */
  margin-bottom: 0px; /* Reduced gap between rows */
}

.button-row2 {
    margin-top: 5px;
  }

/* Custom class for specific buttons */
.custom-button {
  flex: 1;
  margin: 0 2px; /* Reduced horizontal gap */
  padding: 10px;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: flex; /* Maintain flex layout */
  align-items: center; /* Align items vertically */
  justify-content: space-between; /* Align text to left and image to right */
  gap: 5px; /* Add spacing between image and text */
  text-decoration: none; /* Remove underline */
  height: 60px; /* Default height for desktop */
  font-size: 15px;
}

.custom-button img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: inline-block;
  margin: 0; /* Ensure image stays close to edge */
  order: 2; /* Place image on the right */
}

.custom-button a {
  flex: 1; /* Allow text to take remaining space */
  text-align: left; /* Align text to the left */
}

/* Anchor tag fixes */
a {
  text-decoration: none; /* Remove underline from anchor links */
  color: #fff; /* Ensure text color remains white */
}

/* Gradient Buttons */
.button-row .custom-button:nth-child(1) { background: linear-gradient(270deg, #c435ef 0%, #662ef3 100%); }
.button-row .custom-button:nth-child(2) { background: linear-gradient(91deg, rgb(7, 171, 208) 0.66%, rgb(149, 215, 230) 99.47%); }
.button-row .custom-button:nth-child(3) { background: linear-gradient(91deg, #f7a545 0.66%, #d8560c 99.47%); }
.button-row .custom-button:nth-child(4) { background: linear-gradient(91deg, rgb(236, 98, 226) 0.66%, rgb(156, 49, 240) 99.47%); }
.button-row .custom-button:nth-child(5) { background: linear-gradient(91deg, rgb(7, 171, 208) 0.66%, rgb(149, 215, 230) 99.47%); }
.button-row .custom-button:nth-child(6) { background: linear-gradient(270deg, rgb(196, 53, 239) 0%, rgb(102, 46, 243) 100%); }

.button-row2 .custom-button:nth-child(1) { background: linear-gradient(91deg, #07abd0 0.66%, #95d7e6 99.47%); }
.button-row2 .custom-button:nth-child(2) { background: linear-gradient(91deg, rgb(236, 98, 226) 0.66%, rgb(156, 49, 240) 99.47%); }
.button-row2 .custom-button:nth-child(3) { background: linear-gradient(91deg, #f7a545 0.66%, #d8560c 99.47%); }
.button-row2 .custom-button:nth-child(4) { background: linear-gradient(91deg, #07abd0 0.66%, #95d7e6 99.47%); }
.button-row2 .custom-button:nth-child(5) { background: linear-gradient(91deg, #ec62e2 0.66%, #9c31f0 99.47%); }
.button-row2 .custom-button:nth-child(6) { background: linear-gradient(91deg, #f7a545 0.66%, #d8560c 99.47%); }

/* Responsive Design for Tablet and Mobile */
@media (max-width: 1024px) {
  .button-section {
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
  }
  .button-row2 {
    margin-top: 3px;
  }

  .button-row, .button-row2 {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Enable horizontal scrolling */
    justify-content: flex-start; /* Align buttons to start */
  }

  .custom-button {
    flex: 0 0 auto; /* Prevent buttons from shrinking */
    height: 50px; /* Tablet height */
    min-width: 160px; /* Ensure buttons remain visible in scroll */
    font-size: 14px;
  }
  .custom-button img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .button-section {
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .button-row, .button-row2 {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: scroll; /* Enable horizontal scrolling */
    -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }

  /* Hide scrollbar for Webkit browsers (Chrome, Safari) */
  .button-row::-webkit-scrollbar,
  .button-row2::-webkit-scrollbar {
    display: none;
  }

  .custom-button {
    flex: 0 0 auto; /* Prevent buttons from shrinking */
    height: 35px; /* Mobile height */
    min-width: 147px; /* Ensure buttons remain visible in scroll */
    font-size: 12px;
  }
  .custom-button img {
    width: 23px;
    height: 23px;
  }
}


/* Tablet and Mobile Styles */
@media screen and (max-width: 1024px) {
  .news-ticker, .button-section {
      margin-left: 5px;
      margin-right: 5px;
  }

  .image-slider {
      height: 300px;
  }

  .play-now {
      padding: 5px 10px; /* Reduce padding for smaller button */
  }


      /* News ticker section */
.news-ticker {
  background-color: #0fc52d;
  color: white;
  padding: 0 10px;
  font-size: 10px;
  position: relative;
  width: auto;
  height: 20px;
  margin-top: 0px;
}

@media screen and (max-width: 540px) {
  .news-ticker, .button-section {
      margin-left: 5px;
      margin-right: 5px;
  }

  .image-slider {
      height: 200px;
  }

  .play-now {
      padding: 5px 10px; /* Reduce padding for smaller button */
  }


  /* News ticker section */
.news-ticker {
  background-color: #0fc52d;
  color: white;
  padding: 0 10px;
  font-size: 10px;
  position: relative;
  width: auto;
  height: 20px;
  margin-top: 0px;
}
}

}

.unique-title-section {
height: 50px;
margin: 5px 5px 0px 275px;
background-color: #232230;
color: white;
display: flex;
align-items: center;
font-size: 17px;
padding-left: 10px;
border: 1.5px solid #232230;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
gap: 10px;
}

.unique-title-section img {
order: -1;
width: 25px;
height: 25px;
object-fit: contain;
}

.unique-game-card-section {
margin: 0px 5px 0px 275px;
background-color: #16161f;
padding: 10px 0;
border: 1.5px solid #22222F;
border-radius: 0 0 5px 5px;
overflow: hidden;
}

.unique-game-slider {
display: flex;
gap: 10px;
overflow-x: auto;
padding: 10px;
scroll-behavior: smooth;
}

.unique-game-slider::-webkit-scrollbar {
display: none;
}

.unique-game-card {
flex: 0 0 calc((100% - 50px) / 6);
max-width: calc((100% - 50px) / 6);
border-radius: 5px;
background-color: #16161f;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition: transform 0.2s ease;
}

.unique-game-card img {
width: 100%;
height: auto;
object-fit: contain;
}

.unique-game-card:hover {
transform: scale(1.05);
}

/* Responsive Styles */
/* 605px to 1024px - 5 cards */
@media (min-width: 605px) and (max-width: 1024px) {
.unique-title-section {
  font-size: 15px;
  margin: 10px 5px 0px 5px;
}

.unique-game-card-section {
  margin: 0px 5px;
}

.unique-game-card {
  flex: 0 0 calc((100% - 40px) / 5);
  max-width: calc((100% - 40px) / 5);
}
}

/* 604px and below - 3 full cards + half card */
@media (max-width: 604px) {
.unique-title-section {
  font-size: 13px;
  margin: 10px 5px 0px 5px;
}

.unique-game-card-section {
  margin: 0px 5px;
}

.unique-game-card {
  flex: 0 0 calc((100% - 40px) / 3.5);
  max-width: calc((100% - 40px) / 3.5);
}
}

/* Small Devices (less than 480px) */
@media (max-width: 480px) {
.unique-title-section {
  font-size: 13px;
}

.unique-game-card {
  flex: 0 0 calc((100% - 20px) / 3.5);
  max-width: calc((100% - 20px) / 3.5);
}
}

.title-section {
height: 50px;
margin: 10px 5px 0px 275px;
background-color: #232230;
color: white;
display: flex;
align-items: center;
font-size: 17px;
padding-left: 10px;
border: 1.5px solid #232230;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
gap: 10px; /* Space between icon and text */
}

.title-section img {
order: -1; /* Moves the SVG image before the text */
width: 25px;
height: 25px;
object-fit: contain;
}

.game-card-section {
margin: 0px 5px 0px 275px;
background-color: #16161f;
padding: 10px 0;
border: 1.5px solid #22222F;
border-radius: 0 0 5px 5px;
overflow: hidden;
}

.game-slider {
display: flex;
gap: 10px;
overflow-x: auto;
padding: 10px;
scroll-behavior: smooth;
}

.game-slider::-webkit-scrollbar {
display: none;
}

.game-card {
flex: 0 0 calc((100% - 50px) / 6); /* Default to 6 cards for larger screens */
max-width: calc((100% - 50px) / 6);
aspect-ratio: 4 / 5; /* Maintains aspect ratio */
border-radius: 5px;
background-color: #16161f;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition: transform 0.2s ease;
}

.game-card img {
width: 100%;
height: 100%;
object-fit: cover;
}

.game-card:hover {
transform: scale(1.05);
}

/* Responsive Styles */
/* 605px to 1024px - 5 cards */
@media (min-width: 605px) and (max-width: 1024px) {
.title-section {
  font-size: 15px;
  margin: 10px 5px 0px 5px;
}

.game-card-section {
  margin: 0px 5px;
}

.game-card {
  flex: 0 0 calc((100% - 40px) / 5); /* Adjust for 5 cards */
  max-width: calc((100% - 40px) / 5);
}
}

/* 604px and below - 3 full cards + half card */
@media (max-width: 604px) {
.title-section {
  font-size: 13px;
  margin: 10px 5px 0px 5px;
}

.game-card-section {
  margin: 0px 5px;
}

.game-card {
  flex: 0 0 calc((100% - 40px) / 3.5); /* Adjust for 3.5 cards */
  max-width: calc((100% - 40px) / 3.5);
}
}

/* Small Devices (less than 480px) */
@media (max-width: 480px) {
.title-section {
  font-size: 13px;
}

.game-card {
  flex: 0 0 calc((100% - 20px) / 3.5); /* Still 3.5 cards for very small screens */
  max-width: calc((100% - 20px) / 3.5);
}
}

/* Parent Container */
  .image-sections-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3px; /* Default gap for sections on large screens */
    margin: 10px 5px 0 275px; /* Default margin */
    align-items: flex-start; /* Ensures sections align vertically */
  }
  
  /* First Section */
  .first-image-section {
    flex: 1 1 calc(50% - 3px); /* Each section takes half the width */
    display: flex;
    flex-wrap: wrap;
    gap: 3px; /* Gap between images inside the first section */
  }
  
  .first-image-section-link {
    flex: 1 1 calc(50% - 3px); /* Each image takes 50% of the section width */
    text-align: center;
    position: relative; /* To position button correctly */
  }
  
  .first-image-section-link img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .first-image-section-link img:hover {
    transform: scale(1.05);
  }
  
  /* Second Section */
  .second-image-section {
    flex: 1 1 calc(50% - 3px); /* Each section takes half the width */
    display: flex;
    flex-wrap: wrap;
    gap: 3px; /* Gap between images inside the second section */
    margin-top: 0; /* Reset margin to align with first section */
  }
  
  .second-image-section-link {
    flex: 1 1 calc(50% - 3px); /* Each image takes 50% of the section width */
    text-align: center;
    position: relative; /* To position button correctly */
  }
  
  .second-image-section-link img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .second-image-section-link img:hover {
    transform: scale(1.05);
  }
  
  /* Small Buttons Inside Images for Small Screens */
  .image-button {
    display: none; /* Default: Hide buttons */
    position: absolute; /* Place button over image */
    bottom: 5px; /* 5px from bottom of the image */
    left: 5px; /* 5px from left of the image */
    padding: 2px 8px; /* Small padding for the button */
    font-size: 10px; /* Small font size */
    color: white; /* Text color */
    border: none; /* No border */
    border-radius: 3px; /* Rounded corners */
    cursor: pointer;
  }
  
  /* Color for Specific Buttons */
  .first-image-section .image-button {
    background-color: #00fff8; /* Button color for first section */
  }
  
  .second-image-section .image-button {
    background-color: #00e66c; /* Button color for second section */
  }
  
  /* Show buttons below 1024px */
  @media screen and (max-width: 1024px) {
    .image-button {
      display: block; /* Show buttons only below 1024px */
    }
  }
  
  /* Larger screens */
  @media screen and (min-width: 1025px) {
    .image-button {
      display: none; /* Ensure buttons are hidden on larger screens */
    }
  }
  /* Small Buttons Inside Images for Small Screens */
  @media screen and (max-width: 1024px) {
    .image-sections-container {
      flex-direction: column; /* Sections stack vertically */
      margin: 5px; /* Adjusted margin for smaller screens */
      gap: 0; /* Remove the gap between sections */
    }
  
    .first-image-section {
      gap: 3px; /* Gap between images inside first section */
    }
  
    .second-image-section {
      gap: 3px; /* Gap between images inside second section */
      margin-top: 0px; /* Reduced top margin between sections */
    }
  
    /* Button Styling */
    .image-button {
      display: block;
      position: absolute; /* Place button over image */
      margin-bottom: 10px;
      margin-left: 5px;
      padding: 2px 8px; /* Small padding for the button */
      font-size: 10px; /* Small font size */
      color: white; /* Text color */
      background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
      border: none; /* No border */
      border-radius: 2px; /* Rounded corners */
      cursor: pointer;
    }
  
    /* Hide buttons for larger screens */
    @media screen and (min-width: 1025px) {
      .image-button {
        display: none;
      }
    }
  }

  [alt="New Indian Casino"] + .image-button,
[alt="Play Aviator"] + .image-button {
background-color: #f05a26;
}

[alt="Color Prediction"] + .image-button,
[alt="Virtual Cricket"] + .image-button {
background-color: #00e66c;
}

/* Image Section Styling */
.image-section {
  margin: 10px 10px 0 275px; /* Top, right, bottom, left margin for desktop */
  height: auto; /* Fixed height */
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the section proportionally */
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.image-section img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Styling for Tablet and Mobile */
@media (max-width: 1024px) {
  .image-section {
    margin: 10px 5px; /* Adjust margins for tablet and mobile */
  }
}

/* Scoped Styles for provider Section */
.provider-card-section {
  .title-section {
    height: 50px;
    margin: 10px 5px 0 275px;
    background-color: #22222F;
    color: white;
    display: flex;
    align-items: center;
    font-size: 17px;
    padding-left: 10px;
    border: 1.5px solid #22222F;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  /* Style for the Provider Icon */
.provider-icon {
margin-left: 8px; /* Add some spacing between text and the icon */
width: 25px; /* Set the icon width */
height: 25px; /* Set the icon height */
display: inline-block; /* Align it inline with text */
}

  .provider-card-wrapper {
    margin: 0 5px 0 275px;
    background-color: #16161f;
    padding: 1px 0;
    border: 1.5px solid #22222F;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    white-space: nowrap;
  }

  .provider-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    cursor: grab;
  }

  .provider-slider.active {
    cursor: grabbing;
  }

  .provider-slider::-webkit-scrollbar {
    height: 8px;
    background-color: #16161f;
  }

  .provider-slider::-webkit-scrollbar-thumb {
    background-color: #22222F;
    border-radius: 4px;
  }

  .provider-card {
    width: 195px; /* Set default size for desktop */
    height: 130px;
    border-radius: 10px;
    flex-shrink: 0;
    background-color: #16161f;
    border: 1.5px solid #22222F;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s ease;
  }

  .provider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keep the image aspect ratio */
  }

  .provider-card:hover {
    transform: scale(1.05);
  }

  @media (max-width: 1024px) {
    .title-section,
    .provider-card-wrapper {
      margin-left: 5px;
      font-size: 15px;
    }


    .provider-card {
      width: 150px; /* Adjust width for tablets */
      height: auto; /* Adjust height for tablets */
    }

    .provider-card img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
    }
  }

  @media (max-width: 576px) {
    .title-section {
      font-size: 13px;
    }
    .provider-card {
      width: 120px; /* Adjust width for mobile */
      height: auto; /* Adjust height for mobile */
    }

    .provider-card img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
    }
  }

  @media (max-width: 375px) {
    .title-section {
      font-size: 13px;
    }
    .provider-card {
      width: 100px; /* Adjust width for smaller mobile devices */
      height: auto; /* Adjust height for smaller mobile devices */
    }

    .provider-card img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
    }
  }
}

.main-container {
  margin: 10px 5px; /* Default margin for smaller screens */
}

.question {
  background-color: #22222F;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 1px; /* Gap between sections */
  font-size: 14px;
  color: #fff;
}

.answer {
  display: none;
  background-color: black;
  padding: 10px;
  border: 1.5px solid #22222F;
  border-radius: 5px;
  margin-bottom: 1px; /* Gap between sections */
  font-size: 10px;
  color: #fff;
}

.chevron {
  font-size: 10px; /* Adjusted size for Chevron */
  font-weight: bold; /* Bold styling */
  transition: transform 0.3s;
  color: #fff;
}

.center-arrow {
  font-size: 22px; /* Slightly larger size for emphasis */
  font-weight: bold; /* Bold styling */
  color: white;
  cursor: pointer;
  text-align: center;
  margin: 0 auto;
  display: block;
  animation: blink-disappear 1.5s infinite; /* Blink animation */
}

.center-arrow:hover {
  color: #626262;
}

.questions-list {
  display: none;
}

@media (min-width: 1025px) { /* For screens 1024px or wider */
  .main-container {
      margin: 10px 5px 10px 275px; /* Top: 10px, Right: 5px, Bottom: 10px, Left: 275px */
  }
}

/* Keyframes for fully disappear and reappear */
@keyframes blink-disappear {
  0% {
      opacity: 1; /* Fully visible */
  }
  50% {
      opacity: 0; /* Fully invisible */
  }
  100% {
      opacity: 1; /* Fully visible again */
  }
}

.fa-chevron-down:before {
  content: "\f078";
  color: #ff6d00;

}
.fa-solid, .fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ff6d00;
  margin-top: 10px;
}



.desktop-footer {
  display: block;
}

.footer-section {
  margin: 0 5px 0 275px;
  padding: 10px;
}

/* First Section */
.first-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #16161f;
  color: #b4b4b4;
  padding: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 10px 5px 0 275px;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.first-section h3 {
  font-size: 20px;
  color: white;
}

.first-section p {
  font-size: 14px;
  color: #6C708C !important;
  margin-top: 10px;
}

.first-section ul {
  list-style: none;
  padding: 0;
}

.first-section ul li {
  font-size: 12px;
  margin: 15px 0;
}

.first-section ul li a {
  text-decoration: none;
  color: #6C708C;
  transition: color 0.3s ease;
}

.first-section ul li a:hover {
  color: #ff6d00;
}

.download-column {
  text-align: right;
}

/* Responsive Buttons */
.chat-now-btn, .download-now-btn {
  margin-top: 10px;
  background-color: #ff6d00;
  color: white;
  font-weight: bold;
  border: none;
  height: 50px;
  width: 200px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.chat-now-btn:hover, .download-now-btn:hover {
  background-color: #232635;
  transform: scale(1.05); /* Slight hover effect */
}

.chat-now-btn .chat-icon {
  margin-right: 5px;
  height: 20px;
  width: 20px;
}

/* Social Media Icons */
.social-icons .icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 10px;
  margin-top: 20px;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons .icon.facebook {
  background-image: url('img/footer/facebook.png');
}

.social-icons .icon.instagram {
  background-image: url('img/footer/instagram.png');
}

.social-icons .icon.telegram {
  background-image: url('img/footer/telegram.png');
}

.social-icons .icon.whatsapp {
  background-image: url('img/footer/whatsapp.png');
}

.social-icons .icon:hover {
  background-color: black;
  transform: scale(1.3); /* Slight zoom on hover */
}

/* Second Section */
.second-section {
  background: linear-gradient(to bottom, #232635, #12131b);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-wrap: wrap; /* Allow wrapping for smaller layouts */
  gap: 20px;
  margin-top: -20px;
  z-index: 5;
  position: relative;
}

.payment-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
  justify-items: center;
  align-items: center;
  gap: 10px;
  padding: 0 20px; 
  width: 100%; 
  box-sizing: border-box;
}

.payment-icons img {
  max-width: 100%; 
  height: auto; 
  object-fit: contain;
  transition: transform 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Third Section */
.third-section {
  background-color: black;
  color: #b4b4b4;
  text-align: center;
  padding: 10px 0;
}

.third-section p:first-child {
  font-size: 17px;
  margin: 0 auto 10px;
  max-width: 800px;
  color: #6C708C !important;
}

/* Styling for the subtle line */
.third-section hr {
  border: 0;
  border-top: 1px solid hsla(240, 16%, 16%, 0.908);
  width: 80%;
  margin: 10px auto;
}

.third-section p:last-child {
  font-size: 10px;
  margin: 10px auto;
  color: #6C708C !important;
  margin-top: 15px;
}

/* Responsive Adjustments for Screens Above 1025px */
@media (min-width: 1025px) {
  .footer-section {
      padding: 20px;
  }

  .chat-now-btn, .download-now-btn {
      height: 40px;
      width: 180px;
      font-size: 14px;
  }

  .social-icons .icon {
      width: 20px;
      height: 20px;
  }

  .payment-icons img {
      height: 40px;
  }

  .third-section p:first-child {
      font-size: 17px;
  }
}

/* Responsive Adjustments for Screens Below 1024px */
@media (max-width: 1024px) {
  .desktop-footer {
      display: none;
  }

  /* Buttons Responsive */
  .chat-now-btn, .download-now-btn {
      height: 40px;
      width: 180px;
      font-size: 14px;
  }

  /* Social Media Icons Responsive */
  .social-icons .icon {
      width: 20px;
      height: 20px;
  }

  /* Payment Icons Responsive */
  .payment-icons img {
      height: 30px;
  }

  /* Text Resizing */
  .third-section p:first-child {
      font-size: 14px;
  }

  .third-section p:last-child {
      font-size: 8px;
  }
}

.custom-mobile-footer {
  display: block;
  background-color: #000;
  color: #6C708C !important;
  padding: 20px;
}

.custom-button-container {
  text-align: center;
  margin-bottom: 20px;
}

.custom-support-btn, .custom-download-btn {
  display: block;
  height: 35px;
  width: calc(100% - 100px);
  margin: 10px auto;
  padding: 12px 15px;
  border: 2px solid #ff6d00;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  background-color: #000;
  color: white;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-download-btn {
  background-color: #ff6d00;
  color: white;
}

.custom-btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.custom-btn-text {
  font-weight: bold;
}

.custom-logo-container {
  text-align: center;
  margin: 20px 0;
}

.custom-footer-logo {
  width: 200px;
}

.custom-footer-description {
  font-size: 16px;
  margin: 10px 20px;
}

.custom-menu-section {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.custom-menu-column h3 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.custom-menu-column ul {
  list-style: none;
  padding: 0;
}

.custom-menu-column ul li {
  margin: 10px 0;
}

.custom-menu-column ul li a {
  text-decoration: none;
  color: #6C708C;
  font-size: 14px;
}

.custom-menu-column ul li a:hover {
  color: #ff6d00;
}

.custom-community-section {
  text-align: center;
  margin: 20px 0;
}

.custom-community-section h3 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.custom-social-icons .custom-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  margin-top: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  
}

.custom-social-icons .custom-facebook {
  background-image: url('img/footer/facebook.png');
}

.custom-social-icons .custom-instagram {
  background-image: url('img/footer/instagram.png');
}

.custom-social-icons .custom-youtube {
  background-image: url('img/footer/whatsapp.png');
}

.custom-social-icons .custom-telegram {
  background-image: url('img/footer/telegram.png');
}

.custom-payment-section {
  text-align: center;
  margin: 20px 0;
}

.custom-payment-section h3 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.custom-payment-icons img {
  width: 55px;
  margin: 0 3px;
  margin-top: 20px;
}

.custom-copyright-section {
  text-align: center;
  font-size: 12px;
  color: #6C708C !important;
  margin-bottom: 50px;
}

.custom-line {
  border-top: 1px solid hsla(240, 16%, 16%, 0.908);
  margin-bottom: 10px;
}

/* Media Query to hide custom-mobile-footer for screens larger than 1025px */
@media (min-width: 1025px) {
  .custom-mobile-footer {
      display: none;
  }
}

@media (max-width: 1024px) {
.custom-support-btn, .custom-download-btn {
  height: 45px;
  font-size: 16px;
}

.custom-btn-icon {
  width: 30px;
  height: 30px;
}

.custom-footer-logo {
  width: 240px;
}

.custom-footer-description {
  font-size: 21px;
}

.custom-menu-column h3 {
  font-size: 18px;
}

.custom-menu-column ul li a {
  font-size: 16px;
}

.custom-community-section h3 {
  font-size: 16px;
}

.custom-social-icons .custom-icon {
  width: 40px;
  height: 40px;
}

.custom-payment-section h3 {
  font-size: 16px;
}

.custom-payment-icons img {
  width: 140px;
}

.custom-copyright-section {
  font-size: 14px;
}
  }


  @media (max-width: 768px) {
      .custom-support-btn, .custom-download-btn {
          height: 35px;
          font-size: 14px;
      }
      
      .custom-btn-icon {
          width: 20px;
          height: 20px;
      }
      
      .custom-footer-logo {
          width: 220px;
      }
      
      .custom-footer-description {
          font-size: 15px;
      }
      
      .custom-menu-column h3 {
          font-size: 15px;
      }
      
      .custom-menu-column ul li a {
          font-size: 13px;
      }
      
      .custom-community-section h3 {
          font-size: 13px;
      }
      
      .custom-social-icons .custom-icon {
          width: 30px;
          height: 30px;
      }
      
      .custom-payment-section h3 {
          font-size: 13px;
      }
      
      .custom-payment-icons img {
          width: 60px;
      }
      
      .custom-copyright-section {
          font-size: 11px;
      }
  
}

.mnavbar {
  position: fixed; /* Ensure it's fixed at the bottom */
  margin-top: -150px;
  bottom: 0; /* Position at the bottom */
  width: 100%;
  background-color: #000000;
  border-top: 1px solid hsla(240, 16%, 16%, 0.908); /* Line above navigation bar */
  display: none; /* Hide by default */
  justify-content: space-between;
  padding: 10px 0;
  z-index: 1000;
}

.mcontainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.mnavbar-item {
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-decoration: none !important; /* Force remove underline */
  position: relative; /* Added to allow absolute positioning of effect */
}

.mnavbar-item img {
  margin-bottom: 2px;
}

.mnavbar-item span {
  display: block;
  font-size: 10px;
  font-weight: normal; /* Regular text */
  text-decoration: none !important; /* Ensure no underline */
}

/* Add explicit rule for links and text */
.mnavbar-item a {
  text-decoration: none !important; /* Remove underline for links */
  color: inherit; /* Keep text color consistent */
}

.mnavbar-item span, .mnavbar-item span a {
  text-decoration: none !important; /* Ensure no underline */
}

/* Reduce size for Home, Casinos, Sports, and Menu icons */
.mnavbar-item:nth-child(1) img,
.mnavbar-item:nth-child(2) img,
.mnavbar-item:nth-child(4) img,
.mnavbar-item:nth-child(5) img {
  width: 25px; /* Reduced size */
  height: auto; /* Maintain aspect ratio */
}

.mnavbar-item:nth-child(3) img {
  margin-bottom: 0;
}

/* Add smooth and larger zoom effect for WhatsApp button */
.mnavbar-item:nth-child(3)::before {
  content: '';
  position: absolute;
  width: 50px; /* Adjusted size */
  height: 50px; /* Adjusted size */
  background-color: rgba(37, 211, 101, 0.603); /* WhatsApp color with transparency */
  border-radius: 50%;
  animation: zoomEffect 2s ease-in-out infinite;
  z-index: -1; /* Behind the button */
  filter: blur(4px); /* Increase blur effect */
}

/* Keyframes for smooth and larger zoom effect */
@keyframes zoomEffect {
  0% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.75); /* Increased scale */
      opacity: 0.5;
  }
  100% {
      transform: scale(2); /* Increased scale */
      opacity: 0;
  }
}

/* Mobile specific styles */
@media (min-width: 100px) and (max-width: 1024px) {
  .mnavbar {
      display: flex; /* Show navigation bar for widths between 100px and 1024px */
  }
}

@media (min-width: 1025px) {
  .mnavbar {
      display: none !important; /* Ensure navigation bar is hidden for widths above 1024px */
  }
}


