body {
  /* background: #000000; */
  /* background: radial-gradient(circle at center, #0d1b3d 0%, #000000 100%); */
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  background-image: url(../img/full_web_bg_1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  font-family: "Poppins", sans-serif;
}

header {
  box-shadow: 0px 0px 10px #1d1b36 !important;
}

h2 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
p {
  font-size: 14px;
  font-weight: 400;
  color: #0B1F4E;
}
a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Custom CSS for the content layout */
.mobile-games-section {
  padding: 40px 20px;
  background-color: #0d1b2a6b !important; /* Background color */
  color: #050505 !important; /* Text color */
  border-radius: 20px;
  border: 1px solid #b1a5a5;
  box-shadow: 0px 0px 5px #1d1b36;
}

.mobile-games-section h2 {
  /*	font-size: 2rem;*/
  font-weight: bold;
  margin-bottom: 20px;
  color: #FF6B00;
}

.mobile-games-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.mobile-games-section a {
  color: #1e90ff;
  text-decoration: none;
}

.mobile-games-section a:hover {
  text-decoration: underline;
}

.mobile-games-image {
  text-align: center;
}

.mobile-games-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .mobile-games-section {
    padding: 60px 40px;
  }

  .mobile-games-section h2 {
    font-size: 2.5rem;
  }
}

.conprivacy h2 {
    font-weight: 500;
    font-size: 16px;
}

.center-text {
  text-align: center; /* Centers the text */
  text-justify: inter-word; /* Justifies the text with spacing between words */
  width: 80%; /* Optional: sets width of the text container */
  margin: 0 auto; /* Centers the container within the page */
  padding: 20px; /* Adds some padding */
  color: #ffffff;
}

.cust-card {
  border: 0px;
  border-radius: 20px;
  /* box-shadow: 0px 0px 3px #FF6B00; */
  background-color: black;
  position: relative;
  overflow: hidden;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
}

.cust-card-img {
  border-radius: 20px !important;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease-in-out;
}

/* Blur effect on hover */
.card:hover .cust-card-img {
  filter: blur(2px);
  transform: scale(1.1); /* Zoom in */
}

.card-img-overlay {
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.733),
    rgba(0, 0, 0, 0.267) 60%,
    transparent
  );
  display: none !important;
  border-radius: 20px !important;
  color: #FF6B00;
  z-index: 10;
}

.card:hover .card-img-overlay {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
}

/* Hover border effect */
.card:hover {
  border: 3px solid #FF6B00;
}

/* ---------- New Play Now Button Style ---------- */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.card:hover .play-overlay {
  opacity: 1;
}

.play-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* space between icon and text */
  background-color: #FF6B00;
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #F5F5F5;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  white-space: nowrap; /* prevent line breaks */
}

.play-now-btn:hover {
  background-color: #FF6B00;
}

/* ---------- Hide the old circular play button ---------- */
.card .play-button {
  display: none !important;
}

/* Optional: Play Icon Style */
.card .play-button i {
  font-size: 12px; /* Adjust size of the play icon */
}

/* Customize Navbar Links */
.navbar-nav .nav-link {
  color: #FF6B00;
  font-weight: 500;
  padding: 10px 15px;
  /* text-transform: uppercase; */
}

.navbar-nav .nav-link:hover {
  color: #eeeeee;
}

/* Customize Navbar Logo */
.navbar-brand img {
  max-height: 40px;
}

/* Style for the toggler button */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  background-color: #F5F5F5;
}

.navbar-toggler .close-icon {
  display: none;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

/* Show close icon when the navbar is opened */
.navbar-toggler.opened .navbar-toggler-icon {
  display: none;
}

.navbar-toggler.opened .close-icon {
  display: inline-block;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgb(255 255 255) !important;
}

.slogan {
  font-weight: 500;
  font-style: italic;
}

#fullscreen-container {
  position: relative;
  width: 100%;
  height: 500px; /* Set initial height */
  overflow: hidden;
}

#fullscreen-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

#ios-instructions {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1000;
  font-size: 14px;
  color: #666;
}

.iframe-box {
  background: #fff;
  box-shadow: 0px 0px 5px #FF6B00;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.game-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-image {
  max-width: 100%;
  height: auto;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #1d1b36;
}

.game-heading {
  color: #000;
  margin-bottom: 0px !important;
  margin-left: 10px;
}
.icon-fullscreen {
  width: 40px;
  cursor: zoom-in;
}

.title-fullscreen {
  color: #000;
  font-size: 11px;
  font-weight: 600;
  cursor: zoom-in;
}

.description-box {
  border-radius: 20px;
  box-shadow: 0px 0px 10px #1d1b36;
}
.small-title {
  font-weight: 700;
  font-size: 10px;
}

.box-extra {
  border-radius: 20px;
  box-shadow: 0px 0px 10px #1d1b36;
  background-color: #ffeff4;
}
.box-extra-img {
  width: 50px;
  height: 50px;
}

.form-control {
  background-color: #e0e0e042 !important; /* Background color */
  color: #e0e0e0 !important; /* Text color */
  border-radius: 15px;
  border: none;
  padding: 15px;
  /* box-shadow: 0px 0px 5px #1d1b36; */
}
.form-control::placeholder {
  color: #000000; /* Placeholder (hint) color */
}

.btn {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  border: 0px;
  color: #000;
  border-radius: 15px;
}

.btndiv .btn {
  background-color: #FF6B00;
  color: #000000;
  border: none;
  border-radius: 30px;
  margin-bottom: 50px;
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
  .footermenu {
    display: flex !important;
    justify-content: flex-end !important;
  }
}

/* Media Query for Large screens */
@media (min-width: 1281px) {
  .footermenu {
    display: flex !important;
    justify-content: flex-end !important;
  }
}

.rounded-img {
  width: 100%; /* Ensure it scales to the container width */
  height: auto; /* Maintain aspect ratio */
  max-height: 55vh; /* Set a max height for responsiveness */
  border-radius: 30px; /* Rounded corners */
  object-fit: cover; /* Prevent stretching and crop excess */
  display: block;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .rounded-img {
    max-height: 35vh; /* Smaller height on tablets */
  }
}

@media (max-width: 480px) {
  .rounded-img {
    max-height: 30vh; /* Smaller height on mobile */
  }
}

/* --------------------------------------------------------------------------- */

.card-img-overlay h6 {
  font-weight: 500;
  color: #FF6B00;
  font-size: 14px;
  text-align: center;
  z-index: 10;
}

.p-4 {
  /* color: #ffffff; */
  color: #0B1F4E;
  font-size: 14px;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #363a3f54;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1030;
}

/* Add dark background and shadow when scrolled */
.navbar.scrolled {
  /* background-color: #0d1b2a;  */
  background: linear-gradient(to right, #0B1F4E, #0B1F4E);
  box-shadow: 0 2px 4px #0d1b2a;
}

.mt-4 {
  font-size: 18px;
  /* font-weight: 700; */
}

.form-control::placeholder {
  color: #e0e0e0;
  opacity: 0.5;
}

.form-control:focus {
  box-shadow: 0 0 0 0.15rem #FF6B00;
}

.marker a {
  color: #FF6B00; /* default color */
  text-decoration: none; /* optional: removes underline */
  transition: color 0.3s ease;
}

.marker a:hover {
  color: #eeeeee; /* change this to any hover color you like */
}

.marker::marker {
  content: "•"; /* Use any symbol */
  color: #0B1F4E;
  font-size: 20px;
  margin-right: 8px;
}

.li::marker {
  content: "•"; /* Use any symbol */
  color: #FF6B00;
  font-size: 20px;
  margin-right: 8px;
}

.infinite-scroll {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px;
  position: relative;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.infinite-scroll .scroll-track {
  display: flex;
  gap: 10px; /* <-- This creates 2px space between all cards */
  animation: scroll-left 30s linear infinite;
}

.infinite-scroll .card {
  min-width: 200px;
  flex: 0 0 auto;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.nav-link.active {
  color: #ffffff !important;
  /* border-bottom: 2px solid #FF6B00;  */
}

.custom-search {
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  border-radius: 30px;
  padding: 2px 10px;
  width: fit-content;
  margin: auto;
  transition: box-shadow 0.3s ease;
}

.custom-search:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.custom-search .search-input {
  border: none;
  background: transparent;
  color: #ccc;
  padding: 8px 15px;
  font-size: 14px;
  outline: none;
  width: 200px;
  border-radius: 40px 0 0 40px;
  transition: width 0.4s ease;
}

.custom-search:hover .search-input,
.custom-search .search-input:focus {
  width: 280px;
}

.custom-search .search-input::placeholder {
  color: #888;
}

.custom-search .search-btn {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-search .search-btn i {
  color: #FF6B00;
  font-size: 14px;
}

.game-link a {
  color: #FF6B00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.game-link a:hover {
  color: #ffffff;
}

.numbered br::before {
  content: "";
}

.bulleted span::before {
  content: "• ";
  color: #0B1F4E; /* Optional bullet color */
  margin-right: 5px;

}

/* Optional: add indent styling if needed */
.numbered, .bulleted {
  display: block;
  padding-left: 1.5em;
}






  .push-popup {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #484430, #0b1c26);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 10px;
    border: 1px solid #FF6B00;
    padding: 20px;
    width: 95%;
    max-width: 400px;
    z-index: 9999;
    animation: slideDown 0.4s ease-out;
  }

  .push-content {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .push-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .push-message p {
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
  }

  .push-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end; /* aligns buttons to the right */
    gap: 15px;
  }

  .btn-no, .btn-yes {
    padding: 6px 25px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }

  .btn-no {
    background: transparent;
    color: #FF6B00;
  }

  .btn-yes {
    background: #FF6B00;
    color: #000000;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translate(-50%, -20px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }

  @media (max-width: 500px) {
    .push-content {
      flex-direction: column;
      text-align: center;
    }
  }