/* Base resets */

@import url('https://fonts.cdnfonts.com/css/navine-demo');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


nav {
  backdrop-filter: blur(15px) brightness(100%);
  -webkit-backdrop-filter: blur(15px) brightness(100%);
  max-width: 1214px;
  width: 100%;
}

/* Hero section */
.hero {
  position: relative;
  background: radial-gradient(1200px 400px at 50% -40%, rgba(56, 189, 248, .18), transparent 60%),
    linear-gradient(180deg, #0b1324 0%, #050a16 100%);
  color: #e5eefc;
  padding: 24px 16px 40px;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.navbar-expand-lg .navbar-nav {
  gap: 5px !important;
}

.hero-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: -50px;
  height: auto;
  margin-bottom: 100px;
  width: 80vw;
}

.hero-text h3 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 25px;
  color: white !important;
  font-family: 'Navine Demo', sans-serif;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
}

.logo {
  width: clamp(120px, 24vw, 180px);
  height: auto;
}

.hero-text {
  text-align: center;
}

.app-preview,
.player {
  max-width: 100%;
  height: auto;
}

/* Fluid sizing that adapts from phones to desktops */
.app-preview {
  width: clamp(160px, 34vw, 360px);
  z-index: 1;
}

.player {
  width: clamp(180px, 40vw, 420px);
}

.hero-image {
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  background-image: url('../../images/Ellipse.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-image::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}


@media (min-width: 768px) {
  .hero-images {
    gap: 20px;
  }
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
}

.download-buttons img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .download-buttons img {
    height: 50px;
  }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none !important;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0a1930, #0d233f);
  padding: 10px 20px;
}



/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 28px;
  height: 28px;
}

.logo span {
  color: #ff4c60;
  font-weight: bold;
  font-size: 1rem;
}

nav {
  z-index: 1;
}

/* Links Section */
.nav-links {
  display: flex;
  gap: 20px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: #ff4c60 !important;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.nav-links a.active {
  color: #ff4c60;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ff4c60 !important;
}

/* Buttons Section */
.buttons {
  display: flex;
  gap: 10px;
}

.download-btn {
  background-color: #28a745;
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
}



.appstore-btn {
  background-color: transparent;
  color: white;
  padding: 5px 12px;
  border: 1px solid #555;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s, border-color 0.3s;
}




.btn-android {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  width: 200px;
  background: linear-gradient(90deg, #3ad15d, #2fb34f);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  /* Required for positioning the pseudo-element */
  overflow: hidden;
  /* Ensures the shine effect stays within the button */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Shine effect on hover */
.btn-android::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  /* Start off-screen to the left */
  width: 50%;
  /* Width of the shine */
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  /* Gradient for the shine */
  transform: skewX(-25deg);
  /* Skew for a dynamic shine effect */
  transition: left 0.5s ease;
  /* Smooth slide animation */
}

.btn-android:hover::before {
  left: 100%;
  /* Slide to the right on hover */
}

.btn-android:hover {
  /* Keep existing hover transform */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Keep existing hover shadow */
}

.btn-android-1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  width: 200px;
  background: linear-gradient(90deg, #3ad15d, #2fb34f);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-android-1 img {
  height: 20px;
  width: 15px;
}

.btn-apple {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  width: 130px;
  justify-content: center;
  background-color: #051121;
  color: #fff;
  border: 1px solid #5a5a5a;
  border-radius: 12px;
  padding: 7px 11px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-apple::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.btn-apple:hover::before {
  left: 100%;
}

.btn-apple:hover {
  background: rgba(5, 17, 33, 1);
  border-color: #7a7a7a;
}

.btn-android-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.btn-android-1:hover::before {
  left: 100%;
}

.btn-android-1:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-apple-1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  width: 140px;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1px solid #5a5a5a;
  border-radius: 12px;
  padding: 7px 11px;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-apple-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.btn-apple-1:hover::before {
  left: 100%;
}

.btn-apple-1:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #7a7a7a;
}

.btn-apple img {
  width: 16px;
  height: 20px;
}

.btn-apple-1 img {
  width: 21px;
  height: 26px;
}

.btn-apple span {
  flex-direction: column;
  line-height: 2;
  font-size: 8px;
}

.btn-apple-1 span {
  flex-direction: column;
  line-height: 2;
  font-size: 8px;
}

.btn-apple span strong {
  font-size: 12px;
  line-height: 10px;
}

.btn-apple-1 span strong {
  font-size: 13px;
  line-height: 10px;
}

.download-box-1 {
  position: absolute;
}

.download-frame {
  background-image: url('../../images/download-fram.png');
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -40px;
  gap: 50px;
  height: 30vh;
}

.gradiyant {
  background: linear-gradient(to bottom, rgba(5, 17, 33, 1), rgba(0, 8, 18, 1));
  /* background-color: #000812; */
}

.home {
  background-color: #000812;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.home .ellipse {
  position: absolute;
  top: -545px;
  left: calc(50% - 455px);
  width: 911px;
  height: 911px;
  background-color: #244c81;
  border-radius: 455.5px;
  filter: blur(400px);
}

.home .download {
  position: absolute;
  top: 815px;
  left: 420px;
  width: 1080px;
  height: 104px;
}

.home .rectangle {
  position: absolute;
  top: 0;
  left: calc(50% - 531px);
  width: 1062px;
  height: 104px;
}

.home .text-wrapper {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 464px);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  font-family: "All-Pro Display B-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .IOS {
  position: absolute;
  top: calc(50% - 32px);
  left: 819px;
  width: 162px;
  height: 50px;
}


.btn-apple-1 {
  background-color: #051121;
}


.download-buttons-1 {
  position: absolute;
  bottom: 22%;
  /* distance from bottom of image */
  right: 17%;
  /* distance from right side of image */
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}


.hero-image .LUDO-Banner {
  width: 100%;
  max-width: 1920px;
  /* controls max size on large screens */
  height: auto;
  object-fit: cover;
  display: block;
  margin-top: 45px;
}



.terms {
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  background-image: url('../../images/Ellipse.png');
  background-repeat: no-repeat;
  position: relative;
  background-position: top;
}

.terms .container {
  margin-top: 100px;
}

.paragraph-terms p {
  color: #FFFFFF;
  font-size: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: left;
  margin-bottom: 60px;
  font-weight: 600;
  line-height: 40px;
  opacity: 70%;
}

.paragraph-terms ul {
  margin-bottom: 60px;
}

.paragraph-terms ul li {
  text-align: left;
  color: white !important;
  margin-bottom: 20px;
  font-size: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  opacity: 70%;
}

.paragraph-terms ul li a {
  color: white;
  font-size: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Tablet view */
@media (max-width: 992px) {
  .hero-image .LUDO-Banner {
    max-width: 100%;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .hero-image {
    padding: 0 0px;
  }

  .hero-image .LUDO-Banner {
    max-width: 100%;
    padding-top: 0px !important;
  }
}

/* .LUDO-Banner {
  max-width: 161vh !important;
} */

@media (max-width:1440px) {
  .download-frame {
    height: 31vh;
  }
}

.card-group2 p {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.home .div {
  position: absolute;
  top: calc(50% - 32px);
  left: 559px;
  width: 250px;
  height: 50px;
  border-radius: 12.5px;
  overflow: hidden;
  background: linear-gradient(180deg,
      rgba(57, 181, 73, 1) 36%,
      rgba(99, 199, 112, 1) 85%);
}



.home .vector {
  margin-left: 0.6px;
  width: 13.12px;
  height: 9.38px;
}

.home .img {
  margin-left: 0.6px;
  width: 13.12px;
  height: 10px;
}

.home .rectangle-2 {
  position: absolute;
  top: -19px;
  left: 96px;
  width: 29px;
  height: 89px;
  background-color: #ffffff;
  transform: rotate(30deg);
  filter: blur(7px);
  opacity: 0.4;
}

.download-frame-ludo {
  margin-top: -60px;
  position: relative;
}

.home .text-wrapper-2 {
  position: absolute;
  top: 18px;
  left: 68px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 19px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .intersect {
  left: 0;
  width: 1920px;
  height: 3834px;
}


.Previous img {
  height: 46px;
  width: 53px;
}

/* .home .TOP-games {
  background-image: url(../../images/Why-play.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  height: 1091px;
  padding-top: 70px;
} */

.game-carousel-container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}










/* Custom arrows */
.custom-arrow {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 5px;
  transition: background 0.3s;
}

.custom-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}






.custom-arrow {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 5px;
}


.home .subtract {
  top: 0;
  left: calc(50% - 963px);
  width: 1920px;
  height: 813px;
}

.home .text-wrapper-3 {
  top: calc(50% - 314px);
  left: calc(50% - 137px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,
      rgba(76, 184, 196, 1) 0%,
      rgba(60, 211, 173, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: 'Navine Demo', sans-serif;
  font-weight: 700;
  color: transparent;
  font-size: 60px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .classic-carrom {
  position: absolute;
  top: calc(50% + 178px);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "All-Pro Display C-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .p {
  position: absolute;
  top: calc(50% + 256px);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "All-Pro Display C-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 23px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.home .games {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: absolute;
  top: 226px;
  left: calc(50% - 682px);
}

.home .div-2 {
  position: relative;
  width: 46px;
  height: 53px;
}

.home .vector-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 2.9%;
  left: 0;
}

.home .vector-3 {
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 6px);
  width: 13px;
  height: 14px;
}

.home .element {
  position: relative;
  width: 196.39px;
  height: 200px;
}

.home .subtract-2 {
  position: absolute;
  top: calc(50% - 112px);
  left: calc(50% - 114px);
  width: 228px;
  height: 231px;
}

.home .ellipse-2 {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 98px);
  width: 196px;
  height: 200px;
  background-color: #ffffff99;
  border-radius: 98.16px / 100px;
  filter: blur(26.07px);
  mix-blend-mode: overlay;
}

.home .mask-group {
  position: absolute;
  width: 196px;
  height: 200px;
  top: 0;
  left: 0;
}

.home .mask-group-2 {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 98px);
  width: 196px;
  height: 200px;
}

.home .logo {
  position: absolute;
  top: 45px;
  left: 24px;
  width: 151px;
  height: 109px;
  box-shadow: 0px 1.25px 1.25px #00000040;
}

.home .text-wrapper-4 {
  position: absolute;
  top: 1px;
  left: 66px;
  height: 29px;
  font-family: "Coolvetica-Regular", Helvetica;
  font-weight: 400;
  font-size: 12.9px;
  line-height: 28.4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  letter-spacing: 0;
}

.home .group {
  position: absolute;
  top: 0;
  left: 0;
  width: 133px;
  height: 58px;
}

.home .POOL {
  position: absolute;
  top: 44px;
  left: 12px;
  width: 137px;
  height: 65px;
}

.home .element-2 {
  position: relative;
  width: 298.59px;
  height: 302.26px;
  margin-top: -1.18px;
  margin-bottom: -1.08px;
}

.home .element-3 {
  position: relative;
  width: 431.09px;
  height: 431.09px;
  margin-top: -65.62px;
  margin-bottom: -65.47px;
}

.home .element-4 {
  position: relative;
  width: 300.6px;
  height: 304.29px;
  margin-top: -2.14px;
  margin-bottom: -2.14px;
}

.home .vector-4 {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 6px);
  width: 13px;
  height: 14px;
}

.home .subtract-3 {
  top: 0;
  left: calc(50% - 961px);
  width: 1920px;
  height: 1078px;
}

.home .frame {
  display: flex;
  width: 1920px;
  height: 77px;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 20px 37px;
  position: absolute;
  top: 1014px;
  left: 0;
  background-color: #ffffff0d;
  border: 0px none;
}

.home .designed-for-fun {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  opacity: 0.2;
  font-family: "All-Pro Display C-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .header-text {
  position: absolute;
  top: 82px;
  left: calc(50% - 220px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,
      rgba(76, 184, 196, 1) 0%,
      rgba(60, 211, 173, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "All-Pro Display C-Medium", Helvetica;
  font-weight: 500;
  color: transparent;
  font-size: 60px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .card-container {
  display: flex;
  flex-wrap: wrap;
  width: 1401px;
  align-items: center;
  gap: 30px 30px;
  position: absolute;
  top: 224px;
  left: calc(50% - 701px);
}

.home .card {
  position: relative;
  width: 327px;
  height: 266px;
  background-color: #ffffff1a;
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid;
  border-color: #ffffff80;
}

.home .content-wrapper {
  display: flex;
  flex-direction: column;
  width: 261px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  top: 173px;
  left: calc(50% - 130px);
}

.contact-title {
  color: #2ee6b5;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 100px !important;
}

.contact-section {
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  background-image: url(../../images/Ellipse.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-section .container {
  margin-top: 100px;
}

.contact-section {
  color: #fff;
}

.fw-bold {
  font-family: 'Navine Demo', sans-serif;
  font-size: 30px;
}

.contact-info h5 {
  font-weight: 600;

}

.contact-text-2 {
  gap: 14px;
}

.text-danger-1 {
  font-family: 'Navine Demo', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.contact-text-2 p {
  font-family: 'Navine Demo', sans-serif;
  font-size: 16px;
  color: #9B9B9B !important;
  line-height: 32px;
}

.text-light2 {
  font-size: 16px;
  font-family: 'Navine Demo', sans-serif;
}

.contact-form {
  border-radius: 20px;
  background-color: #FFFFFF10;
  border: 1px solid #ffffff50;
}

.form-control {
  background-color: #000812 !important;
}

.text-right {
  text-align: right;
}

.submit-btn {
  text-align: right;
}

.message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 125px;
  align-items: center;
  width: 100%;
}

.message h4 {
  text-align: center;
  background: linear-gradient(to right, #1CD8D2, #93EDC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-family: 'Navine Demo', sans-serif;
  margin-bottom: 40px;
}

#myInput {
  color: white;
}

label span {
  color: #EB3C5B;
}

.form-control {
  color: white !important;
}

.form-control:focus {
  color: white !important;
}

.message p {
  font-family: 'Navine Demo', sans-serif;
  text-align: center;
  font-size: 25px;
}

.text-light-2 {
  font-family: 'Navine Demo', sans-serif;
  font-size: 16px;
  font: weight 400px;
  color: #9B9B9B;
}

.form-control {
  border: none !important;
}

.form-control:focus {
  border-color: #ff3b61;
  box-shadow: 0 0 5px rgba(255, 59, 97, 0.5);

}


.home .title {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: linear-gradient(90deg,
      rgba(28, 216, 210, 1) 0%,
      rgba(147, 237, 199, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: transparent;
  font-size: 30px;
  text-align: center;
  position: relative;
  margin-top: -1px;
  font-family: "All-Pro Display C-Medium", Helvetica;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
}

.home .description {
  font-size: 15px;
  text-align: center;
  line-height: normal;
  position: relative;
  align-self: stretch;
  font-family: "Plus Jakarta Sans-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0;
}

.home .fi {
  position: absolute;
  top: 50px;
  left: 114px;
  width: 100px;
  height: 100px;
}

.home .card-2 {
  position: relative;
  width: 328px;
  height: 266px;
  background-color: #ffffff1a;
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid;
  border-color: #ffffff80;
}

.home .content-wrapper-2 {
  width: 278px;
  align-items: center;
  justify-content: center;
  top: 173px;
  left: calc(50% - 139px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
}

.home .content-wrapper-3 {
  width: 250px;
  align-items: center;
  justify-content: center;
  top: 173px;
  left: calc(50% - 125px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
}

.home .content-wrapper-4 {
  width: 262px;
  align-items: flex-start;
  top: 162px;
  left: calc(50% - 130px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
}

.home .title-2 {
  align-self: stretch;
  background: linear-gradient(90deg,
      rgba(28, 216, 210, 1) 0%,
      rgba(147, 237, 199, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: transparent;
  font-size: 30px;
  text-align: center;
  position: relative;
  margin-top: -1px;
  font-family: "All-Pro Display C-Medium", Helvetica;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
}

.home .fi-2 {
  position: absolute;
  top: 50px;
  left: 113px;
  width: 100px;
  height: 100px;
}

.home .content-wrapper-5 {
  width: 245px;
  align-items: flex-start;
  top: 162px;
  left: calc(50% - 122px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
}

.home .content-wrapper-6 {
  width: 277px;
  align-items: center;
  justify-content: center;
  top: 162px;
  left: calc(50% - 138px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
}

.home .content-wrapper-7 {
  width: 278px;
  align-items: center;
  justify-content: center;
  top: 162px;
  left: calc(50% - 138px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
}


.home .header-text-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1px;
  height: 72px;
  width: 695px;
  background: linear-gradient(90deg,
      rgba(76, 184, 196, 1) 0%,
      rgba(60, 211, 173, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "All-Pro Display C-Medium", Helvetica;
  font-weight: 500;
  color: transparent;
  font-size: 60px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .card-container-wrapper {
  display: inline-flex;
  margin-left: -2px;
  height: 430px;
  width: 1174px;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.home .card-container-2 {
  display: flex;
  flex-direction: column;
  width: 1174px;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.home .card-3 {
  display: flex;
  flex-direction: column;
  width: 1176px;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  position: relative;
  flex: 0 0 auto;
  margin-right: -2px;
  background-color: #ffffff1a;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid;
  border-color: #ffffff80;
}

.home .frame-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .title-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: #ffffff;
  font-size: 25px;
  white-space: nowrap;
  position: relative;
  margin-top: -1px;
  font-family: "All-Pro Display C-Medium", Helvetica;
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
}

.home .vector-5 {
  position: relative;
  width: 17.71px;
  height: 11.6px;
}

.home .description-2 {
  opacity: 0.8;
  font-size: 17px;
  line-height: 30px;
  position: relative;
  align-self: stretch;
  font-family: "Plus Jakarta Sans-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0;
}

.home .frame-wrapper {
  display: flex;
  flex-direction: column;
  width: 1176px;
  align-items: flex-start;
  gap: 10px;
  padding: 25px 30px;
  position: relative;
  flex: 0 0 auto;
  margin-right: -2px;
  background-color: #ffffff1a;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid;
  border-color: #ffffff80;
}


.home .footer-2 {
  top: 0;
  width: 1920px;
  height: 309px;
  background-color: #051121;
  position: absolute;
  left: 0;
}

.home .logo-2 {
  position: absolute;
  top: calc(50% - 102px);
  left: 318px;
  width: 138px;
  height: 41px;
  display: flex;
  gap: 8.5px;
}

.home .logo-3 {
  margin-top: 0.8px;
  width: 34.16px;
  height: 40.02px;
  position: relative;
  margin-left: 0;
}

.home .vector-6 {
  position: absolute;
  width: 100%;
  height: 88.65%;
  top: 11.35%;
  left: 0;
}

.home .vector-7 {
  position: absolute;
  width: 59.87%;
  height: 42.07%;
  top: 39.4%;
  left: 20.02%;
}

.home .vector-8 {
  position: absolute;
  width: 59.84%;
  height: 34.76%;
  top: 39.66%;
  left: 20.16%;
}

.home .vector-9 {
  position: absolute;
  width: 24.8%;
  height: 21.17%;
  top: 0;
  left: 37.68%;
}

.home .vector-10 {
  position: absolute;
  width: 24.8%;
  height: 21.17%;
  top: 0;
  left: 36.09%;
}

.home .group-2 {
  margin-top: 14.1px;
  width: 95.75px;
  height: 17.9px;
  background-image: url(./img/vector-12.svg);
  background-size: 100% 100%;
}

.home .social-icons {
  position: absolute;
  top: 134px;
  left: 318px;
  width: 200px;
  height: 31px;
}

.home .frame-3 {
  display: flex;
  width: 459px;
  align-items: flex-start;
  gap: 93px;
  position: absolute;
  top: 52px;
  left: 662px;
}

.home .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home .text-wrapper-5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "All-Pro Display C-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .games-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .text-wrapper-6 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "All-Pro Display C-Light", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home .text-wrapper-7 {
  position: relative;
  width: fit-content;
  font-family: "All-Pro Display C-Light", Helvetica;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  letter-spacing: 0;
}

.home .text-wrapper-8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-right: -19px;
  font-family: "All-Pro Display C-Light", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home .text-wrapper-9 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-right: -18px;
  font-family: "All-Pro Display C-Light", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home .text-wrapper-10 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  margin-right: -6px;
  font-family: "All-Pro Display C-Light", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home .terms-conditions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-right: -48px;
  font-family: "All-Pro Display C-Light", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home .line {
  position: absolute;
  top: 49px;
  left: 1244px;
  width: 1px;
  height: 193px;
}

.home .rectangle-3 {
  position: absolute;
  top: 535px;
  left: calc(50% - 365px);
  width: 728px;
  height: 89px;
}

.home .element-cittagames-all {
  position: absolute;
  left: calc(50% - 324px);
  bottom: 60px;
  font-family: "All-Pro Display B-Regular", Helvetica;
  font-weight: 400;
  color: #9a9a9a;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .span {
  font-family: "All-Pro Display B-Regular", Helvetica;
  font-weight: 400;
  color: #9a9a9a;
  font-size: 15px;
  letter-spacing: 0;
}

.home .frame-4 {
  display: flex;
  flex-direction: column;
  width: 458px;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 339px;
  left: calc(50% - 230px);
}



.home .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "All-Pro Display B-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.home .text-wrapper-12 {
  position: relative;
  width: fit-content;
  margin-left: -57px;
  margin-right: -57px;
  font-family: "All-Pro Display B-Light", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .usps-icons {
  display: inline-flex;
  align-items: center;
  gap: 22.27px;
  position: absolute;
  top: 428px;
  left: calc(50% - 168px);
}

.usps-bg {
  width: 100%;
}

.usps-icon-background {
  width: 60%;
  display: flex;
  justify-content: center;
  position: absolute;
}


.home .skill-based-gaming {
  position: relative;
  width: 66.8px;
  height: 66.8px;
  border-radius: 55.67px;
}

.home .group-3 {
  position: relative;
  width: 88.11%;
  height: 94.45%;
  top: 2.78%;
  left: 6.11%;
}

.home .group-4 {
  position: absolute;
  top: 0;
  left: calc(50% - 29px);
  width: 61px;
  height: 63px;
}

.home .gaming {
  position: absolute;
  top: 41px;
  left: calc(50% - 19px);
  height: 10px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  color: #888888;
  font-size: 8.8px;
  text-align: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: normal;
}

.home .subtract-4
/* ===== Top Games Section ===== */


/* TOP GAME CSS */

.top-game {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-image: url('../../images/Subtract.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.top-game h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.carosal-wrapper {
  position: relative;
  padding: 0 60px;
}

.swiper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
  transform: scale(0.9);

}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;


}


.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.8;
  transform: scale(0.95);
}


.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.game-info {
  text-align: center;
  margin-top: 30px;
}

#gameTitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#gameDesc {
  font-size: 1.2rem;
  color: #aaa;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .swiper {
    height: 350px;
  }
}

@media (max-width: 768px) {

  .carosal-wrapper {
    padding: 0 40px;
  }

  .hero-image .LUDO-Banner {
    margin-top: 0px !important;
  }

  .top-game h2 {
    font-size: 2rem;
  }

  #gameTitle {
    font-size: 1.5rem;
  }

  #gameDesc {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .swiper {
    height: 250px;
  }

  .carosal-wrapper {
    padding: 0 20px;
  }

  .top-game h2 {
    font-size: 1.8rem;
  }
}

/* END TOP GAME  */


.home .group-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 81px;
  height: 25px;
}

.home .text-wrapper-13 {
  position: absolute;
  top: 16px;
  left: 3px;
  width: 5px;
  transform: rotate(-67.17deg);
  color: #888888;
  font-size: 9.4px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .k {
  top: 11px;
  left: 6px;
  width: 5px;
  color: #888888;
  font-size: 9.4px;
  position: absolute;
  transform: rotate(-52.78deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .i {
  top: 7px;
  left: 11px;
  width: 2px;
  color: #888888;
  font-size: 9.4px;
  position: absolute;
  transform: rotate(-41.21deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l {
  position: absolute;
  top: 4px;
  left: 14px;
  width: 4px;
  transform: rotate(-30.48deg);
  color: #888888;
  font-size: 9.4px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-2 {
  position: absolute;
  top: 1px;
  left: 19px;
  width: 4px;
  transform: rotate(-17.5deg);
  color: #888888;
  font-size: 9.4px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .text-wrapper-14 {
  left: 25px;
  width: 4px;
  color: #888888;
  font-size: 9.4px;
  position: absolute;
  top: 1px;
  transform: rotate(-5.36deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .text-wrapper-15 {
  left: 30px;
  width: 5px;
  color: #888888;
  font-size: 9.4px;
  position: absolute;
  top: 1px;
  transform: rotate(7.9deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .a {
  position: absolute;
  top: 2px;
  left: 37px;
  width: 5px;
  transform: rotate(23.14deg);
  color: #888888;
  font-size: 9.4px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .s {
  position: absolute;
  top: 6px;
  left: 43px;
  width: 5px;
  transform: rotate(37.82deg);
  color: #888888;
  font-size: 9.4px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e {
  position: absolute;
  top: 10px;
  left: 48px;
  width: 5px;
  transform: rotate(51.93deg);
  color: #888888;
  font-size: 9.4px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .d {
  top: 16px;
  left: 51px;
  width: 5px;
  color: #888888;
  font-size: 9.4px;
  position: absolute;
  transform: rotate(66.61deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .vector-11 {
  position: absolute;
  width: 40.44%;
  height: 26.39%;
  top: 32.55%;
  left: 29.88%;
}

.home .group-wrapper {
  position: relative;
  width: 66.8px;
  height: 66.8px;
}

.home .group-6 {
  position: relative;
  top: 2px;
  left: calc(50% - 31px);
  width: 62px;
  height: 63px;
}

.home .group-7 {
  position: absolute;
  width: 59px;
  height: 57px;
  top: 0;
  left: 1px;
  background-image: url(./img/subtract-6.svg);
  background-size: 100% 100%;
}

.home .intersect-2 {
  position: absolute;
  top: 7px;
  left: calc(50% - 30px);
  width: 59px;
  height: 21px;
}

.home .group-8 {
  position: absolute;
  top: 27px;
  left: 10px;
  width: 57px;
  height: 11px;
  display: flex;
}

.home .text-wrapper-16 {
  margin-top: 4.1px;
  width: 3.88px;
  height: 6.2px;
  margin-left: 1.2px;
  color: #888888;
  font-size: 6.7px;
  transform: rotate(-26.37deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .a-2 {
  margin-top: 2.1px;
  width: 3.88px;
  height: 6.2px;
  margin-left: 1.1px;
  transform: rotate(-18.56deg);
  color: #888888;
  font-size: 6.7px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .m {
  margin-top: 0.7px;
  width: 4.39px;
  height: 6.2px;
  margin-left: 1.3px;
  color: #888888;
  font-size: 6.7px;
  transform: rotate(-10.35deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e-2 {
  margin-top: 0.1px;
  width: 3.36px;
  height: 6.2px;
  margin-left: 1.4px;
  transform: rotate(-2.54deg);
  color: #888888;
  font-size: 6.7px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .p-2 {
  margin-top: 0.2px;
  width: 3.62px;
  height: 6.2px;
  margin-left: 1.4px;
  transform: rotate(4.69deg);
  color: #888888;
  font-size: 6.7px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-3 {
  margin-top: 0.8px;
  width: 3.1px;
  height: 6.2px;
  margin-left: 1.4px;
  transform: rotate(11.72deg);
  color: #888888;
  font-size: 6.7px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .a-3 {
  margin-top: 2.2px;
  width: 3.88px;
  height: 6.2px;
  margin-left: 1.3px;
  transform: rotate(18.95deg);
  color: #888888;
  font-size: 6.7px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .y {
  margin-top: 4.2px;
  width: 3.62px;
  height: 6.2px;
  margin-left: 1px;
  color: #888888;
  font-size: 6.7px;
  transform: rotate(26.56deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .vector-12 {
  position: absolute;
  height: 35.79%;
  top: 64.21%;
  left: calc(50% - 9px);
  width: 18px;
}

.home .frame-5 {
  position: absolute;
  top: 11px;
  left: calc(50% - 24px);
  width: 47px;
  height: 12px;
}

.home .group-9 {
  position: relative;
  top: 2px;
  left: calc(50% - 30px);
  width: 63px;
  height: 63px;
}

.home .group-10 {
  position: absolute;
  width: 61px;
  height: 38px;
  top: 19px;
  left: 0;
}

.home .div-wrapper {
  position: absolute;
  top: 0;
  left: calc(50% - 28px);
  width: 55px;
  height: 20px;
  display: flex;
}

.home .group-11 {
  margin-top: -1.4px;
  width: 75.79px;
  height: 21px;
  margin-left: -1.9px;
  position: relative;
}

.home .text-wrapper-17 {
  position: absolute;
  top: 12px;
  left: 3px;
  width: 5px;
  transform: rotate(-53.99deg);
  color: #888888;
  font-size: 9.5px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .x {
  top: 7px;
  left: 7px;
  width: 5px;
  color: #888888;
  font-size: 9.5px;
  position: absolute;
  transform: rotate(-40.4deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .c {
  top: 3px;
  left: 13px;
  width: 5px;
  color: #888888;
  font-size: 9.5px;
  position: absolute;
  transform: rotate(-26.08deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e-3 {
  position: absolute;
  top: 1px;
  left: 20px;
  width: 5px;
  transform: rotate(-12.12deg);
  color: #888888;
  font-size: 9.5px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-4 {
  position: absolute;
  top: 1px;
  left: 27px;
  width: 4px;
  transform: rotate(0.73deg);
  color: #888888;
  font-size: 9.5px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-5 {
  position: absolute;
  top: 1px;
  left: 34px;
  width: 4px;
  transform: rotate(13.22deg);
  color: #888888;
  font-size: 9.5px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e-4 {
  position: absolute;
  top: 3px;
  left: 40px;
  width: 5px;
  transform: rotate(26.08deg);
  color: #888888;
  font-size: 9.5px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .n {
  top: 7px;
  left: 45px;
  width: 5px;
  color: #888888;
  font-size: 9.5px;
  position: absolute;
  transform: rotate(40.03deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .t {
  top: 12px;
  left: 51px;
  width: 5px;
  color: #888888;
  font-size: 9.5px;
  position: absolute;
  transform: rotate(53.99deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .intersect-3 {
  position: absolute;
  width: 53.86%;
  height: 60.4%;
  top: 39.6%;
  left: 21.62%;
}

.home .text-wrapper-18 {
  top: 34px;
  left: calc(50% - 9px);
  height: 18px;
  color: #888888;
  font-size: 15.4px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .group-12 {
  position: relative;
  width: 66px;
  height: 59px;
  top: 4px;
  left: 1px;
}

.home .group-13 {
  position: absolute;
  width: 58px;
  height: 59px;
  top: 0;
  left: 4px;
  background-image: url(./img/subtract-4.svg);
  background-size: 100% 100%;
}

.home .group-14 {
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 33px);
  width: 70px;
  height: 34px;
}

.home .play {
  top: calc(50% - 17px);
  left: calc(50% - 15px);
  height: 12px;
  color: #888888;
  font-size: 10.1px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .rectangle-4 {
  position: absolute;
  top: 14px;
  left: calc(50% - 35px);
  width: 66px;
  height: 20px;
  background-color: #888888;
  border-radius: 2.01px;
}

.home .anywhere {
  top: 18px;
  left: calc(50% - 31px);
  height: 12px;
  font-size: 10.1px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  color: #1e1e1e;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .home-landing-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 930px;
  aspect-ratio: 2.06;
  object-fit: cover;
}

.home .usps-icons-2 {
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  margin-bottom: 40px;
}

.home .skill-based-gaming-2 {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 125px;
}

.home .group-15 {
  position: relative;
  width: 88.11%;
  height: 94.44%;
  top: 2.78%;
  left: 6.11%;
}

.home .group-16 {
  position: absolute;
  top: 0;
  left: calc(50% - 66px);
  width: 134px;
  height: 142px;
}

.home .gaming-2 {
  position: absolute;
  top: 92px;
  left: calc(50% - 41px);
  height: 24px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  color: #ffe766;
  font-size: 19.9px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: normal;
}

.home .subtract-5 {
  position: absolute;
  top: 55px;
  left: 1px;
  width: 132px;
  height: 87px;
}

.home .group-17 {
  position: absolute;
  top: 0;
  left: 0;
  width: 154px;
  height: 55px;
}

.home .text-wrapper-19 {
  position: absolute;
  top: 37px;
  left: 6px;
  width: 11px;
  transform: rotate(-67.17deg);
  color: #ffe766;
  font-size: 21.1px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .k-2 {
  top: 24px;
  left: 13px;
  width: 12px;
  color: #ffe766;
  font-size: 21.1px;
  position: absolute;
  transform: rotate(-52.78deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .i-2 {
  top: 15px;
  left: 24px;
  width: 5px;
  color: #ffe766;
  font-size: 21.1px;
  position: absolute;
  transform: rotate(-41.21deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-6 {
  position: absolute;
  top: 8px;
  left: 31px;
  width: 10px;
  transform: rotate(-30.48deg);
  color: #ffe766;
  font-size: 21.1px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-7 {
  position: absolute;
  top: 3px;
  left: 43px;
  width: 10px;
  transform: rotate(-17.5deg);
  color: #ffe766;
  font-size: 21.1px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .text-wrapper-20 {
  left: 56px;
  width: 8px;
  color: #ffe766;
  font-size: 21.1px;
  position: absolute;
  top: 1px;
  transform: rotate(-5.36deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .text-wrapper-21 {
  left: 68px;
  width: 12px;
  color: #ffe766;
  font-size: 21.1px;
  position: absolute;
  top: 1px;
  transform: rotate(7.9deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .a-4 {
  position: absolute;
  top: 5px;
  left: 83px;
  width: 12px;
  transform: rotate(23.14deg);
  color: #ffe766;
  font-size: 21.1px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .s-2 {
  position: absolute;
  top: 13px;
  left: 97px;
  width: 11px;
  transform: rotate(37.82deg);
  color: #ffe766;
  font-size: 21.1px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e-5 {
  position: absolute;
  top: 23px;
  left: 107px;
  width: 11px;
  transform: rotate(51.93deg);
  color: #ffe766;
  font-size: 21.1px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .d-2 {
  top: 36px;
  left: 115px;
  width: 12px;
  color: #ffe766;
  font-size: 21.1px;
  position: absolute;
  transform: rotate(66.61deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .vector-13 {
  position: absolute;
  width: 40.44%;
  height: 26.39%;
  top: 32.56%;
  left: 29.88%;
}

.home .group-wrapper-2 {
  position: relative;
  width: 150px;
  height: 150px;
}

.home .group-18 {
  position: relative;
  top: 4px;
  left: calc(50% - 70px);
  width: 139px;
  height: 142px;
}

.home .group-19 {
  position: absolute;
  width: 133px;
  height: 129px;
  top: 0;
  left: 3px;
  background-image: url(./img/subtract-8.svg);
  background-size: 100% 100%;
}

.home .intersect-4 {
  position: absolute;
  top: 17px;
  left: calc(50% - 67px);
  width: 133px;
  height: 48px;
}

.home .group-20 {
  position: absolute;
  top: 60px;
  left: 23px;
  width: 108px;
  height: 24px;
  display: flex;
}

.home .text-wrapper-22 {
  margin-top: 9.2px;
  width: 8.7px;
  height: 13.92px;
  margin-left: 2.6px;
  color: #ffe766;
  font-size: 14.9px;
  transform: rotate(-26.37deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .a-5 {
  margin-top: 4.6px;
  width: 8.7px;
  height: 13.92px;
  margin-left: 2.4px;
  transform: rotate(-18.56deg);
  color: #ffe766;
  font-size: 14.9px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .m-2 {
  margin-top: 1.5px;
  width: 9.86px;
  height: 13.92px;
  margin-left: 2.9px;
  color: #ffe766;
  font-size: 14.9px;
  transform: rotate(-10.35deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e-6 {
  margin-top: 0.2px;
  width: 7.54px;
  height: 13.92px;
  margin-left: 3.2px;
  transform: rotate(-2.54deg);
  color: #ffe766;
  font-size: 14.9px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .p-3 {
  margin-top: 0.4px;
  width: 8.12px;
  height: 13.92px;
  margin-left: 3.2px;
  transform: rotate(4.69deg);
  color: #ffe766;
  font-size: 14.9px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-8 {
  margin-top: 1.9px;
  width: 6.96px;
  height: 13.92px;
  margin-left: 3.1px;
  transform: rotate(11.72deg);
  color: #ffe766;
  font-size: 14.9px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .a-6 {
  margin-top: 4.8px;
  width: 8.7px;
  height: 13.92px;
  margin-left: 2.9px;
  transform: rotate(18.95deg);
  color: #ffe766;
  font-size: 14.9px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .y-2 {
  margin-top: 9.4px;
  width: 8.12px;
  height: 13.92px;
  margin-left: 2.4px;
  color: #ffe766;
  font-size: 14.9px;
  transform: rotate(26.56deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .vector-14 {
  position: absolute;
  height: 35.79%;
  top: 64.21%;
  left: calc(50% - 20px);
  width: 40px;
}

.home .frame-6 {
  position: absolute;
  top: 26px;
  left: calc(50% - 53px);
  width: 106px;
  height: 28px;
}

.home .group-21 {
  position: relative;
  top: 4px;
  left: calc(50% - 68px);
  width: 138px;
  height: 142px;
}

.home .group-22 {
  position: absolute;
  width: 136px;
  height: 85px;
  top: 42px;
  left: 0;
}

.home .frame-7 {
  position: absolute;
  top: 1px;
  left: calc(50% - 62px);
  width: 123px;
  height: 46px;
  display: flex;
}

.home .group-23 {
  margin-top: -3.1px;
  width: 147.76px;
  height: 47.15px;
  margin-left: -4.3px;
  position: relative;
}

.home .text-wrapper-23 {
  position: absolute;
  top: 28px;
  left: 6px;
  width: 10px;
  transform: rotate(-53.99deg);
  color: #ffe766;
  font-size: 21.3px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .x-2 {
  top: 16px;
  left: 16px;
  width: 11px;
  color: #ffe766;
  font-size: 21.3px;
  position: absolute;
  transform: rotate(-40.4deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .c-2 {
  top: 7px;
  left: 30px;
  width: 12px;
  color: #ffe766;
  font-size: 21.3px;
  position: absolute;
  transform: rotate(-26.08deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e-7 {
  position: absolute;
  top: 2px;
  left: 46px;
  width: 10px;
  transform: rotate(-12.12deg);
  color: #ffe766;
  font-size: 21.3px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-9 {
  position: absolute;
  top: 1px;
  left: 61px;
  width: 10px;
  transform: rotate(0.73deg);
  color: #ffe766;
  font-size: 21.3px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .l-10 {
  position: absolute;
  top: 2px;
  left: 75px;
  width: 10px;
  transform: rotate(13.22deg);
  color: #ffe766;
  font-size: 21.3px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .e-8 {
  position: absolute;
  top: 7px;
  left: 89px;
  width: 10px;
  transform: rotate(26.08deg);
  color: #ffe766;
  font-size: 21.3px;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .n-2 {
  top: 16px;
  left: 102px;
  width: 12px;
  color: #ffe766;
  font-size: 21.3px;
  position: absolute;
  transform: rotate(40.03deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .t-2 {
  top: 28px;
  left: 114px;
  width: 10px;
  color: #ffe766;
  font-size: 21.3px;
  position: absolute;
  transform: rotate(53.99deg);
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .intersect-5 {
  position: absolute;
  width: 54.84%;
  height: 60.4%;
  top: 39.6%;
  left: 22.01%;
}

.home .text-wrapper-24 {
  top: 76px;
  left: calc(50% - 20px);
  height: 41px;
  color: #ffe766;
  font-size: 34.5px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .group-24 {
  position: relative;
  width: 147px;
  height: 133px;
  top: 8px;
  left: 2px;
}

.home .group-25 {
  position: absolute;
  width: 131px;
  height: 133px;
  top: 0;
  left: 9px;
  background-image: url(./img/subtract-9.svg);
  background-size: 100% 100%;
}

.home .group-26 {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 74px);
  width: 151px;
  height: 77px;
}



.home .play-2 {
  top: calc(50% - 38px);
  left: calc(50% - 31px);
  height: 27px;
  color: #ffe766;
  font-size: 22.6px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}
.btn-android img{
  width: 15%;
}
.home .rectangle-5 {
  position: absolute;
  top: 32px;
  left: calc(50% - 76px);
  width: 147px;
  height: 45px;
  background-color: #ffe766;
  border-radius: 4.52px;
}

.home .anywhere-2 {
  top: 41px;
  left: calc(50% - 67px);
  height: 27px;
  font-size: 22.6px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik-Bold", Helvetica;
  font-weight: 700;
  color: #1e1e1e;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.navbar {
  background: rgba(255, 255, 255, 0.1);
  /* semi-transparent background */
  backdrop-filter: blur(15px) brightness(100%);
  -webkit-backdrop-filter: blur(15px) brightness(100%);
  border-radius: 20px;
}


.home .navbar {
  padding-right: 10px;
  padding-left: 30px;
  position: fixed;
  z-index: 2;
  top: 26px;
  display: flex;
  width: 90vw;
  height: 62px;
  background-color: #00081280;
  border-radius: 20px;
  border: 1px solid;
  border-color: #ffffff4c;
  backdrop-filter: blur(15px) brightness(100%);
  -webkit-backdrop-filter: blur(15px) brightness(100%);
}

.home .IOS-2 {
  position: absolute;
  top: 10px;
  left: 1072px;
  width: 130px;
  height: 40px;
}

.home .download-2 {
  position: absolute;
  top: 10px;
  left: 862px;
  width: 200px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg,
      rgba(57, 181, 73, 1) 36%,
      rgba(99, 199, 112, 1) 85%);
}

.home .icon-2 {
  top: 12px;
  left: 37px;
  width: 12px;
  height: 16px;
  gap: 1px;
  position: absolute;
  display: flex;
  flex-direction: column;
}

.home .vector-15 {
  margin-left: 0.5px;

}

.home .vector-16 {
  margin-left: 0.5px;
  width: 10.5px;
  height: 8px;
}

.home .download-app-button {
  position: absolute;
  top: -15px;
  left: 94px;
  width: 12px;
  height: 71px;
  background-color: #ffffff;
  transform: rotate(30deg);
  filter: blur(7px);
  opacity: 0.4;
}

.home .download-app-text {
  position: absolute;
  top: 14px;
  left: 54px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home .logo-4 {
  position: absolute;
  top: 11px;
  left: 30px;
  width: 150px;
  height: 38px;
}

.home .navbar-links {
  position: absolute;
  top: 21px;
  left: calc(50% - 221px);
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans-Bold", Helvetica;
  font-weight: 700;
  color: transparent;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}





.carousel-title {
  color: #26a69a;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}




.description {
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.description h3 {
  margin: 0;
  font-size: 1.2em;
}

.description p {
  margin: 5px 0 0;
  color: #a0aec0;
}


.home .text-wrapper-25 {
  color: #eb3c5b;
}

.home .text-wrapper-26 {
  color: #ffffff;
}

/* Original CSS code should be injected here */

/* Additional CSS for semantic improvements */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 60px;
}

.navbar-links a {
  text-decoration: none;
  font-family: "Plus Jakarta Sans-Bold", Helvetica;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.navbar-links a.text-wrapper-25 {
  color: #eb3c5b;
}

.navbar-links a.text-wrapper-26 {
  color: #ffffff;
}

.games-2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.games-2 li {
  margin-bottom: 13px;
}

.games-2 a {
  text-decoration: none;
  color: inherit;
}

.card-3 summary {
  cursor: pointer;
  list-style: none;
}

.card-3 summary::-webkit-details-marker {
  display: none;
}

.frame-wrapper summary {
  cursor: pointer;
  list-style: none;
}

.frame-wrapper summary::-webkit-details-marker {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

button:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

details[open] .vector-5 {
  transform: rotate(180deg);
}

/* Responsive overrides */
.navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, .4);
}

.navbar .navbar-toggler-icon {
  filter: invert(1) grayscale(100%);
}

.container h2 {
  display: flex;
  justify-content: center;
  font-family: 'Navine Demo', sans-serif;
  background: linear-gradient(90deg, #4CB8C4, #3CD3AD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  display: flex;
  justify-content: center;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 70px;
}

.container strong {
  margin-bottom: 30px;
}

.paragraph-terms strong {
  font-size: 25px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 40px;
  color: #ffffff;
}

.container h3 {
  display: flex;
  font-family: 'Navine Demo', sans-serif;
  display: inline-block;
  font-size: 29px;
  font-weight: 500;
  margin-bottom: 70px;
  background: linear-gradient(to right, #1CD8D2, #93EDC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.text-info {
  font-family: 'Navine Demo', sans-serif;
  background: linear-gradient(90deg, #4CB8C4, #3CD3AD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}

.disc {
  font-family: "Plus Jakarta Sans", sans-serif;

}

.why-cittagames {
  background-image: url(../../images/Why-play.png);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 1000px;
  padding-top: 70px;
}

.scrolling-text {
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  white-space: nowrap;
  padding: 28px 0;
  position: relative;
  margin-bottom: 80px;
}

.scrolling-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.scrolling-content {
  display: flex;
}

.scrolling-content span {
  font-family: 'Navine Demo', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 50px;
  letter-spacing: 1px;
}

.mailto {
  background: linear-gradient(to right, #1CD8D2, #93EDC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

  100% {
    transform: translateX(-50%);
  }
}



.container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.faq-title {
  color: #26a69a;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
}

.faq-item {
  background-color: #2d3748;
  padding: 20px 30px;
  border-radius: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
  position: relative;
  border: 1px solid #FFFFFF50;

}

.faq-item p {
  color: #FFFFFF80;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
}

.question {
  display: flex;
  justify-content: space-around;
  align-items: center;
}


/* Custom Arrow for Collapsible */
.faq-item summary {
  list-style: none;
  padding-right: 20px;
  font-family: 'Navine Demo', sans-serif;
  font-size: 25px;
  display: flex;
  align-items: center;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  height: 12px;
  width: 28px;
  background-image: url('../../images/Vector.svg');
  right: 30px;
  transition: transform 0.3s;
  transform: rotate(0deg);
}

.faq-item[open] summary::after {
  transform: rotate(-180deg);
}

.accordion-item {
  background-color: #1a1a3d;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: #1a1a3d;
  color: #fff;
  font-size: 1.1rem;
  padding: 15px;
  border: none;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background-color: #1a1a3d;
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(2);
}

.accordion-body {
  background-color: #1a1a3d;
  color: #fff;
  padding: 15px;
  font-size: 1rem;
}

.faq-section {
  padding: 0px 0px;
}

.faq-section::after {
  left: auto;
  right: 0;
}

.footer {
  background: #051121;
  color: white;
  padding: 50px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-col {
  min-width: 180px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'Navine Demo', sans-serif;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #EB3C5B;
}

.icon-container {
  display: flex;
  gap: 12px;
  margin-top: 20px;

}

.fa-square-x-twitter {
  font-size: 30px;
  /* controls both width & height */
}

.icon-container a i {
  font-size: 30px;
  color: #FFFFFF80;
  transition: ease-in-out 0.2s;
}

.icon-container a i:hover {
  color: #EB3C5B;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #FFFFFF50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 24px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.icon:hover {
  transform: scale(1.1);
}

/* Custom icons using pseudo-elements or Unicode */
.facebook::before {
  content: "f";
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.instagram::before {
  content: "\f16d";
  font-family: "FontAwesome";
  /* Note: FontAwesome or similar library needed for exact Instagram icon */
}

.youtube::before {
  content: "\f167";
  font-family: "FontAwesome";
  /* Note: FontAwesome or similar library needed for exact YouTube icon */
}

.plane::before {
  content: "\f1d8";
  font-family: "FontAwesome";
  /* Note: FontAwesome or similar library needed for plane icon */
}

.x-icon::before {
  content: "X";
  font-family: Arial, sans-serif;
  font-weight: bold;
}

/* Fallback styling if FontAwesome is not available */
.instagram::before, .youtube::before, .plane::before {
  content: "?";
  /* Replace with custom design or use an image if needed */
}


.footer-social {
  list-style: none;
  padding: 0;
  gap: 15px;
}

.footer-social li a {
  color: #cfd8e3;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social li a:hover {
  color: #4facfe;
}

.bottom-title {
  font-size: 20px;
}

.footer-office p {
  margin: 5px 0;
  font-size: 15px;
  color: white;
  font-family: 'Navine Demo', sans-serif;
}

.footer-icons img {
  margin: 0 10px;
  width: 66px;
}

.footer-office-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom {
  height: 90px;
  font-size: 15px;
  color: #9B9B9B;
  background-image: url('../../images/Rectangle.png');
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Navine Demo', sans-serif;
  width: 100%;
  background-size: 43% 67%;
}

.feature-box p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.footer-bottom a {
  color: #9B9B9B;
  text-decoration: none;
}


.feature-box {
  background: #ffffff10;
  border-radius: 20px;
  transition: all 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.5px solid #FFFFFF50;
  padding: 47px 10px;
  padding-bottom: 20px;
}

.feature-box img {
  height: 80px;
  width: 80px;
}

.feature-box:hover {
  background: #14274e;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-box h5 {
  font-weight: 600;
}

.hero-bg {
  background: url('../../images/Citta-Ludo-bg.png') no-repeat center center !important;
  background-position: center center;
  background-size: contain;
}

.hero-bg-pool {
  background-image: url('../../images/8-Ball-Pool-bg.png');
}

.hero-bg-carrom {
  background-image: url('../../images/Carrom-bg.png');
}

.hero-bg-citta-ludo {
  background-image: url('../../images/Citta-Ludo-bg.png');
}

.hero-bg-ludo-race {
  background-image: url('../../images/Ludo-Race-bg.png');
}

.hero-bg-xoxo-pro {
  background-image: url('../../images/XOXO-Pro-bg.png');
}

.hero-bg-snakes {
  background-image: url('../../images/Snakes-&-Ladders-bg.png');
}

.hero-bg-cashy-carrom {
  background-image: url('../../images/Carrom-bg.png');
}

.hero-bg-frisbee-football {
  background-image: url('../../images/Frisbee-Football-bg.png');
}

.hero-bg-tictactoe {
  background-image: url('../../images/Tic-Tac-Toe-bg.png');
}

.ludo-info-section {
  width: 100%;
  background: url('../../images/Subtract-bg.png') no-repeat;
  background-position: center center;
  background-size: 64% 100%;
  padding: 20px 20px;
  color: #cbd5e1;
  margin-top: 100px;
  margin-bottom: 200px;
}

.navbar-toggler .close-icon {
  font-size: 30px;
  line-height: 1;
  color: #fff;
  /* change color as needed */
}

.navbar-toggler-icon {
  filter: invert(1);
  /* makes it white if dark bg */
}

.ludo-container {
  max-width: 950px;
  margin: 0 auto;
}

.ludo-heading {
  font-family: 'Navine Demo', sans-serif;
  font-size: 35px;
  background: linear-gradient(to right, #1CD8D2, #93EDC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 50px;
  margin-bottom: 15px;
  font-weight: 600;
}

.ludo-text {
  font-size: 22px;
  color: #cbd5e1;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ludo-list {
  margin: 20px 0 40px 20px;
  padding: 0;
  list-style: none;
}

.ludo-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ludo-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  font-size: 1.2rem;
}

.gradient-line {
  width: 100%;
  height: 2px;
  /* adjust thickness */
  background: linear-gradient(to right,
      transparent,
      rgba(255, 170, 44, 0.25),
      /* glowing center color */
      transparent);
  border: none;
  margin-top: 40px;
  margin-bottom: 40px;
}

.highlight {
  color: linear-gradient(90deg, #4CB8C4 100%, #3CD3AD 100%);
  font-family: 'Navine Demo', sans-serif;
}

.hero-section {
  background-image: url(../../images/Maskgroup.png);
  background-position: center;
  background-size: cover;
  height: 100vh;

}

.content {
  display: flex;
  flex-direction: column;
  color: #1CD8D2;
  align-items: center;
  font-family: 'Navine Demo', sans-serif;
  font-weight: 500;
  padding-top: 1rem;

}

.content h1 {
  font-size: 80px;
  margin-top: 217px;
}

.content h3 {
  font-size: 40px;
}

.card-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100vw;
  margin-bottom: 80px;
}

.card-group1 {
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin-top: -166px;
  background-color: rgba(14, 53, 105, 0.5);
  width: 80vw;
}

.card-group1 h3 {
  font-size: 35px;
  font-weight: 500;
}

.card-group1 p {
  line-height: 35px;
  font-weight: 500;
  margin-top: 22px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.card1 {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
}

.card-group2 {
  display: flex;
  gap: 40px;

}

.card-group2 p {
  font-size: 18px;
  line-height: 35px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 22px;
}

.card-group2 h3 {
  font-size: 35px;
  font-weight: 500;

}

.card2,
.card3 {
  background-color: rgba(14, 53, 105, 0.5);
  width: 39.31vw;
  height: auto;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 30px;
}


.card-group1 p {
  font-size: 16px;
  line-height: 35px;
  font-weight: 500;

}

.features {
  background-image: url(../../images/about-why.png);
  margin-top: 80px;
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}

.feature-cards {
  color: #ffffff;
  flex-direction: column;
  gap: 30px;
  margin-top: 150px;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}

.feature-card1 {
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(14, 53, 105, 0.5);
  border-radius: 16px;
  width: 80vw;
  padding: 30px;

}

.feature-card2 {
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(14, 53, 105, 0.5);
  border-radius: 16px;
  width: 80vw;
  padding: 30px;
}

.feature-cards h3 {
  font-size: 35PX;
  font-weight: 500;
  margin: 0;
}

.feature-cards p {
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
  margin-top: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #0a0f14;
  padding: 20px 0;
  position: relative;
}

.marquee-content {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.15);
  animation: marquee 12s linear infinite;
}

.marquee-content span {
  margin-right: 150px;
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-120%);
  }
}





.text-muted-1 {
  color: white !important;
  font-family: "Plus Jakarta Sans", sans-serif;
}




.Previous,
.Next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.Previous {
  left: -60px;
}

.Next {
  right: -60px;
}

.Previous img,
.Next img {
  width: 40px;
  height: 40px;
}


@media (max-width: 768px) {

  .Previous {
    left: -40px;
  }

  .Next {
    right: -40px;
  }

  /* Show only one game image at a time on mobile */





  /* Hide navigation arrows on mobile */
  .Previous,
  .Next {
    display: none;
  }

  .footer-icons img {
    width: 46px;
  }
}







.features1 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 70vw;
  padding: 50px 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
}

.features1 h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.features1 p {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 28px;
}

.features1 .fea-p {
  font-size: 18px;
  line-height: 30px;
  margin-top: 10px;
}


.features h1 {
  margin-top: 80px;
  margin-bottom: 66px;

}

.feature-content {
  background-image: url(../../images/Subtract1.png);
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

/* .feature-content .feature1{
  display: flex;
  align-items: center;
  justify-content: center;
} */
.feature-content .high1 {
  margin-top: 20px;
}

.feature-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;

}

.feature-content p {
  font-size: 22px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 35px;
  margin-top: 10px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.fea-p {
  padding-right: 10px;
  color: #ffffff;
}


/* Ensure navbar content stacks nicely on small screens */
@media (max-width: 767.98px) {
  .home .navbar {
    /* legacy selector safeguard */
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
  }

  .btn-container {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  .btn-android {
    width: 100%;
    max-width: 260px;
  }

  .btn-apple {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }





  /* Scale headers and text */
  .text-wrapper-3,
  .header-text,
  .header-text-2 {
    font-size: 28px;
  }

  .classic-carrom {
    font-size: 22px;
  }

  .p {
    font-size: 16px;
  }

  /* Make games row scrollable horizontally on mobile */
  .games {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
  }

  .games .element,
  .games .element-2,
  .games .element-3,
  .games .element-4 {
    flex: 0 0 auto;
  }

  /* Card container: single column */
  .card-container {
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    position: relative !important;
    padding: 0 16px;
    gap: 16px !important;
  }

  .card,
  .card-2 {
    width: 100% !important;
    height: auto !important;
  }

  .content-wrapper,
  .content-wrapper-2,
  .content-wrapper-3,
  .content-wrapper-4,
  .content-wrapper-5,
  .content-wrapper-6,
  .content-wrapper-7 {
    position: static !important;
    width: 100% !important;
    padding: 16px;
  }

  .fi, .fi-2 {
    position: static !important;
    width: 72px;
    height: 72px;
    margin: 16px auto 0;
    display: block;
  }

  /* FAQ section */
  .FAQ {
    width: 100% !important;
    left: 0 !important;
    position: relative !important;
    padding: 0 16px;
  }

  .card-container-2, .card-3, .frame-wrapper {
    width: 100% !important;
  }

  /* Footer */
  .footer, .footer-2 {
    width: 100% !important;
    left: 0 !important;
  }

  .frame-3 {
    position: static !important;
    width: 100% !important;
    gap: 24px !important;
    justify-content: space-between;
    padding: 0 16px;
    flex-wrap: wrap;
  }

  .social-icons {
    left: 16px !important;
  }

  .line {
    display: none;
  }

  .frame-4 {
    position: static !important;
    width: 100% !important;
    padding: 16px;
  }

  .element-cittagames-all {
    left: 0 !important;
    position: static !important;
    display: block;
    padding: 16px;
    white-space: normal !important;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .home .navbar {
    max-width: 90%;
  }

  .navbar-nav {
    gap: 16px !important;
  }

  .card-container {
    width: 90% !important;
    left: 5% !important;
  }

  .card, .card-2 {
    width: calc(50% - 15px) !important;
    height: auto !important;
  }

  .content-wrapper,
  .content-wrapper-2,
  .content-wrapper-3,
  .content-wrapper-4,
  .content-wrapper-5,
  .content-wrapper-6,
  .content-wrapper-7 {
    position: static !important;
    padding: 16px;
  }
}

@media (min-width: 1024px) {
  .hero-image img {
    max-width: 184vh;
    margin: 0 auto;
  }

}

@media (max-width: 767.98px) {
  .home {
    min-height: auto !important;
    overflow: visible !important;
  }

  /* Hide decorative heavy assets on phones */
  .intersect,
  .intersect-2,
  .intersect-3,
  .intersect-4,
  .intersect-5,
  .vector-11,
  .vector-12,
  .vector-13,
  .vector-14,
  .line,
  .rectangle-3 {
    display: none !important;
  }

  /* Sections become normal flow blocks */
  .TOP-games,
  .why-play-on,
  .FAQ,
  .footer,
  .footer-2 {
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 32px 0;
  }

  /* Headings spacing */
  .text-wrapper-3,
  .header-text,
  .header-text-2 {
    margin: 0 16px 12px;
    text-align: center;
  }

  /* Hero image scales and gets padding under fixed navbar */
  .hero-image {
    padding-top: 88px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  /* Games row becomes horizontal scroll strip */
  .games {
    padding: 8px 16px;
  }

  .div-2 {
    display: none;
  }

  /* Card grid: single column */
  .card-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* FAQ cards full width */
  .card-container-2, .card-3, .frame-wrapper {
    width: 100% !important;
  }

  /* Footer columns stack */
  .frame-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet: convert to flowing layout with 2-col grids */
@media (min-width: 768px) and (max-width: 1023.98px) {

  .why-play-on,
  .FAQ,
  .footer,
  .footer-2 {

    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 40px 0;
  }

  .hero-image {
    padding-top: 50px;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    max-width: 90%;
    height: auto;
  }

  .card-container {
    width: 100% !important;
    left: 0 !important;
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px !important;
    padding: 0 24px;
  }

  .card, .card-2 {
    width: 100% !important;
    height: auto !important;
  }

  .content-wrapper,
  .content-wrapper-2,
  .content-wrapper-3,
  .content-wrapper-4,
  .content-wrapper-5,
  .content-wrapper-6,
  .content-wrapper-7 {
    position: static !important;
    padding: 16px;
  }

  .FAQ {
    padding: 0 24px;
  }

  .card-container-2, .card-3, .frame-wrapper {
    width: 100% !important;
  }

  .frame-3 {
    position: static !important;
    width: 100% !important;
    gap: 48px !important;
    justify-content: center;
  }
}

/* Download banner */
.download-banner {
  width: 100%;
  margin: 10px auto;
  padding: 10px 20px;
  border-radius: 16px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 50px;
}

.download-title {
  font-family: 'Navine Demo', sans-serif;
  font-weight: 600;
  color: #e6f0ff;
  font-size: 25px;
}

.btn-download-android,
.btn-download-ios {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .3);
  color: #fff;
  text-decoration: none;
}

.btn-download-android {
  background: linear-gradient(90deg, #3ad15d, #2fb34f);
  border: none;
}

.btn-download-android img {
  width: 18px;
  height: 18px;
}

.btn-download-ios img {
  width: 18px;
  height: 18px;
  filter: brightness(1.1);
}

.btn-download-android span {
  font-weight: 700;
}

.btn-download-ios span {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .download-banner {
    border-radius: 12px;
    padding: 14px;
  }
}

/* Swiper carousel styles */


.text-light {
  font-family: 'Navine Demo', sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.text-muted-1 {
  font-family: 'Navine Demo', sans-serif;
  font-size: 23px;
  font-weight: 400;
}



.Previous, .Next {
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  width: 40px;
  height: 40px;
}

.Previous:hover, .Next:hover {
  opacity: 1;
}

.Previous img, .Next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.games2 {
  margin-bottom: 100px;
}

.game-card {
  width: 120px;
  /* Adjust based on your image sizes */
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  /* Fallback if image doesn't cover */
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures images fill the card without distortion */
}


.slide-item a {
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
}

.slide-text {
  margin-top: px;
  font-weight: 600;
  color: #fff;
  display: none;
  /* hide by default */
}


.custom-button {
  transform: translateY(-20%);
  z-index: 20;
  cursor: pointer;
  margin-right: 30px;
}


.custom-button img {
  width: 40px;
  height: 40px;
}


/* Responsive adjustments */
@media (max-width: 768px) {

  .custom-button {
    display: none;
  }

  .Previous {
    left: -40px;
  }

  .Next {
    right: -40px;
  }

  .game-card {
    width: 100px;
    height: 100px;
  }

  .download-frame-ludo {
    margin-top: -40px;
  }


}



.top-game {
  background-image: url(../../images/Subtract.png);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 70px;
}



.highlight {
  font-family: 'Navine Demo', sans-serif !important;
  background: linear-gradient(90deg, #4CB8C4, #3CD3AD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Top Games carousel polishing */




.game-info {
  margin-top: 60px;
}

.why-box {
  justify-content: center;
}

/* Base slide look */



/* Emphasize center slide without breaking layout */

/* Spacing for title and subtitle */


.android-img {
  margin: 0px !important;
}

.apple-img {
  margin: 0px !important;
}

.gap {
  height: 50px;
}

@media (max-width: 1500px) {
  .ludo-info-section {
    background-size: 82% 100%;
  }
}

@media (max-width: 1440px) {

  .hero-image img {
    max-width: 99vw;
    margin-top: 45px;
  }

  .hero-text h3 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 22px;
  }

  .home .usps-icons-2 {
    margin-top: -35px;
  }

  .download-banner {
    margin-top: 5px;
    margin-bottom: 40px;
  }

  .download-buttons-1 {
    bottom: 16%;
    right: 16%;
  }

  .card2, .card3 {
    padding: 15px;
    height: auto;
    width: 39vw;
  }

  .download-banner {
    width: 72%;
  }

  .card-group2 h3 {
    font-size: 30px;
  }

  .card-group2 p {
    font-size: 15px;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .feature-cards h3 {
    font-size: 30px;
  }

  .feature-cards p {
    margin-top: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .ludo-info-section {
    background-size: 84% 100%;
  }
}
@media (max-width: 1140px) {
  .ludo-info-section {
    background-size: 93% 100%;
  }
}
@media (max-width: 1200px) {
  .ludo-info-section {
    background-size: 93% 100%;
  }
}

@media (max-width: 1300px) {
  .ludo-info-section {
    background-size: 93% 100%;
  }
}
/* .download-cont {
  justify-content: space-around !important;
} */

@media (max-width:1024px) {
  .nav-link {
    font-size: 12px !important;
  }

  /* .LUDO-Banner {
    width: 123vh;
    margin-top: 0px !important;

  } */
  .hero-text h3 {
    font-size: 36px;
  }

  .hero-text {
    margin-top: -30px;
  }

  .hero-text p {
    font-size: 20px;
  }

  .content h1 {
    font-size: 60px;
  }

  .content h3 {
    font-size: 30px;
  }

  .btn-android-1 {
    width: 180px;
    height: 40px;
    font-size: 14px;
    padding: 7px 19px;
  }

  .btn-android-1 img, .btn-apple-1 img {
    height: 17px;
    width: 13px;
  }

  .btn-apple-1 span strong {
    font-size: 15px;
  }

  .btn-apple-1 span {
    font-size: 9px;
  }

  .btn-apple-1 {
    height: 40px;
    width: 122px;
  }

  .download-buttons-1 {
    bottom: 17%;
    right: 14%;
  }

  .download-frame {
    background-size: 100% 28vh;
    margin-top: -50px;
  }

  .card2, .card3 {
    width: 38vw;
  }

  .container h3 {
    margin-bottom: 40px;
  }

  .text-muted-1 {
    font-size: 18px;
  }

  .text-light {
    font-size: 30px;
  }

  .btn-android {
    width: 150px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .card-group2 p {
    line-height: 24px;
  }

  .btn-apple span strong {
    font-size: 12px;
  }

  .features1 {
    padding: 0;
  }

  .btn-apple span {
    font-size: 7px;
  }

  .faq-section {
    padding: 42px 0px;
  }

  .feature-content h3 {
    font-size: 25px;
  }



  .feature-content p {
    font-size: 16px;
    font-weight: 500;
  }

  .btn-apple {
    width: 110px;
  }

  .hero-image img {
    margin-top: 50px;
    max-width: 99vw;
  }

  .home .navbar {
    width: 80% !important;
    height: auto;
  }

  .home .usps-icons-2 {
    background-size: contain;
    display: block;
  }

  .download-title {
    font-size: 22px;
    margin-left: 13px !important;
  }

  /* .download-cont {
    justify-content: space-evenly !important;
  } */
  .games2 {
    margin-top: 100px;
  }

  .download-banner {
    margin-bottom: 5px;
    margin-top: 0px;
  }


  .scrolling-text {
    margin-top: 60px;
  }

  .download-frame-in img {
    height: 100px;
    width: 100px;
  }

  .home .text-wrapper-3 {
    font-size: 42px;
  }

  .top-game {
    padding-top: 40px;
  }


  .container h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .swiper {
    height: 150px;
  }

  .ludo-list {
    margin-bottom: 40px;
  }

  .ludo-heading {
    margin-top: 40px;
  }

  .ludo-text {
    margin-bottom: 40px;
  }

  .why-cittagames {
    padding-top: 36px;
    height: auto;
  }

  .feature-box {
    padding-top: 37px;
    padding-bottom: 10px;
  }

  .feature-box img {
    height: 60px;
    width: 60px;
  }

  .text-info {
    font-size: 18px;
  }

  .feature-box p {
    font-size: 13px;
  }

  .scrolling-text {
    padding: 14px 0px;
    margin-bottom: 0px;
  }

  .about-top {
    margin-top: 100px;
  }

  .scrolling-content span {
    font-size: 16px;
  }

  .faq-item summary {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  .footer-col ul li a {
    font-size: 16px;
  }

  .icon-container a i {}

  .footer-top {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  .footer-bottom {
    background-size: 100% 100%;
    width: 80%;
    height: 75px;
  }

  .footer-bottom p {
    font-size: 15px;
  }

  .footer-office-main {
    width: 100%;
  }

  .ludo-container {
    padding: 40px;
  }

  .ludo-info-section {
    margin-top: 100px !important;
    display: flex;
    width: 90% !important;
    justify-content: center;
    margin: auto;
    background-size: 100% 100%;
  }

  .ludo-heading {
    font-size: 25px !important;
  }

  .hero-bg {
    background-size: 123vh 76vh !important;
  }

  .ludo-text {
    font-size: 14px;
  }

  .ludo-info-section {
    /* background-size: cover !important; */
    background-position: 100%;
  }
}

.navbar-toggler {
  padding: 0px 5px !important;
}

@media (max-width:768px) {
  .hero-image img {
    margin-top: 0px;
    max-width: 99vw;
  }

  .hero-text h3 {
    font-size: 34px;
  }

  .hero-text {
    margin-top: 0px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .download-buttons-1 {
    bottom: 16%;
    right: 10%;
  }

  .download-frame {
    height: 22vh;
    background-size: 100% 22vh;
    margin-top: 0px;
  }

  .download-frame-in img {
    height: 80px;
    width: 80px;
  }

  .feature-box {
    padding-top: 20px;
    padding-bottom: 0px;
  }

  .container h2 {
    font-size: 34px;
  }

  .paragraph-terms ul li a {
    font-size: 18px;
  }

  .text-info {
    font-size: 16px;
  }

  .about-top {
    margin-top: 60px;
  }

  .card-group1 h3 {
    font-size: 30px;
  }

  .feature-box img {
    height: 50px;
    width: 50px;
  }

  .paragraph-terms p {
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 30px;
    opacity: 70%;
  }

  .terms .container {
    margin: 75px;
    margin-bottom: 0px;
  }

  .btn-android {
    width: 130px;
    padding: 6px 14px;
    font-size: 10px;
    height: 30px;
  }

  .btn-apple {
    width: 100px;
    height: 30px;
  }

  .download-frame {
    margin-top: -25px;
  }

  .btn-apple span {
    font-size: 6px;
  }

  .btn-apple span strong {
    font-size: 10px;
  }

  .card-group1 p {
    font-size: 12px;
    line-height: 25px;
    margin-top: 17px;
  }

  .feature-box p {
    font-size: 11px;
  }

  .card2, .card3 {
    width: 37vw;
  }

  .card-group2 h3 {
    font-size: 25px;
  }

  .card-group2 p {
    margin-top: 0;
  }

  .card-group2 p {
    line-height: 20px;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .features h1 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 26px;

  }

  .content h1 {
    font-size: 50px;
    margin-top: 18vh;
  }

  .swiper {
    height: 211px;
  }

  .hero-section {
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    height: 70vh;
  }

  .content h3 {
    font-size: 25px;
  }

  .feature-content {
    background-image: none;
    padding: 0;
  }

  .feature-content h3 {
    font-size: 20px;
  }

  .feature-content p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: normal;
  }

  .why-cittagames {
    background-size: 100% 62%;
  }

  .container h3 {
    font-size: 23px;
  }

  .faq-item p {
    font-size: 13px;
  }

  .features1 .fea-p {
    font-size: 12px;
  }

  .faq-section {
    padding: 60px 0px;
  }

  .footer-logo img {
    width: 130px;
  }

  .feature-cards {
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .feature-cards h3 {
    font-size: 25px;
  }

  .icon-container a {
    height: 22px;
    width: 22px;
  }

  .feature-cards p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 25px;
  }

  .feature-card1, .feature-card2 {
    padding: 15px;
    width: 80vw;
  }

  .footer-col {
    min-width: 70px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col ul li a {
    font-size: 16px;
  }

  .home .navbar {
    height: auto;
    padding-right: 20px;
  }

  .home .usps-icons-2 {
    display: none;
  }



  .download-title {
    margin-left: 0px !important;
  }



  .footer-top {
    align-items: flex-start;
  }

  .ludo-container {
    padding: 0 10px;
  }

  .ludo-heading {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  .ludo-text,
  .ludo-list li {
    font-size: 12px;
  }

  .ludo-heading {
    font-size: 20px !important;
  }

  .ludo-text {
    margin-bottom: 20px;
  }

  .hero-bg {
    background-size: 93vh 54vh !important;
  }

  .ludo-list li::before {
    top: -7px;
  }

  .ludo-info-section {
    margin-top: 60px !important;
    background-image: none;
  }

  .download-buttons-1 {
    display: none;
  }
}

@media(max-width:500px) {
  .home .usps-icons-2 {
    display: none;
  }

  .hero-text {
    margin-bottom: 50px;
  }

  .text-right {
    text-align: center;
  }

  .hero-text h3 {
    font-size: 30px;
  }

  .row {
    width: 100% !important;
    justify-content: center;
  }

  .hero-text p {
    font-size: 14px;
  }

  .download-frame {
    gap: 20px;
  }

  .why-cittagames {
    background-size: 100% 68%;
    background-image: url('../../images/why.png');
  }

  .download-frame {
    margin-top: -38px;
  }

  .ludo-info-section {
    background: none;
  }

  .hero-image .LUDO-Banner {
    padding-top: 0px !important;
  }

  .ludo-info-section {
    padding: 0;
  }

  .hero-image img {
    max-width: 99vw;
  }

  .home .usps-icons-2 {
    width: 88%;
  }

  .download-title {
    font-size: 13px;
  }

  .card-group2 {
    flex-direction: column;
  }

  .card2, .card3 {
    width: 90vw;
  }

  .about-top {
    margin-top: 70px;
  }

  .feature-cards {
    margin-bottom: 0px;
  }

  .btn-android {
    width: 120px;
    padding: 5px 4px;
    gap: 5px;
  }

  .footer-icons img {
    width: 36px;
  }

  .feature-card1, .feature-card2 {
    width: 90vw;
  }

  .hero-section {
    height: 52vh;
  }

  .content h1 {
    font-size: 40px;
    margin-top: 14vh;
  }

  .card-group1 {
    margin-top: -100px;
  }

  .feature-content h3 {
    font-size: 17px;
  }

  .features1 .fea-p {
    line-height: 19px;
  }

  .card-group1 p {
    line-height: 15px;
  }

  .card-group2 p {
    font-size: 12px;
  }

  .card-group1 {
    width: 90vw;
  }

  .content h3 {
    font-size: 16px;
    text-align: center;
  }

  .btn-apple {
    width: 100px;
    height: 33px;
    border-radius: 10px;
    gap: 5px;
  }

  .download-banner {
    justify-content: space-between;
  }

  .btn-android img {
    width: 10px;
    height: 14px;
  }

  .btn-apple img {
    width: 10px;
    height: 14px;
  }


  .download-frame-in img {
    height: 50px;
    width: 50px;
  }

  .download-frame {
    gap: 30px;
    align-items: center;
    height: 16vh;
    background-size: 100% 10vh;

  }

  .top-game {
    background-image: url('../../images/top.png');
    background-size: 100% 100%;
  }

  .home .text-wrapper-3 {
    font-size: 32px;
  }



  .home .classic-carrom {
    font-size: 24px;

  }

  .ludo-heading {
    font-size: 18px !important;
  }


  .home .p {
    font-size: 16px;
  }

  .home .p {
    top: calc(50% + 230px);
  }

  .why-cittagames {
    padding-top: 16px;
  }

  .container h2 {
    margin-bottom: 30px;
  }

  .why-box {
    justify-content: space-around !important;
    display: grid;
    gap: 20px;
    margin-top: 36px !important;
  }

  .row>* {
    margin-top: 0;
  }

  .feature-cards {
    margin-bottom: 60px;
  }

  .row>* {
    width: 90% !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .faq-section {
    padding-top: 40px;
  }

  .container h2 {
    margin-bottom: 36px;
  }

  .faq-container {
    padding: 20px !important;
  }

  .faq-item {
    padding: 16px 20px;
  }

  .faq-item summary {
    font-size: 14px;
  }

  .scrolling-content span {
    font-size: 14px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
  }

  .footer-col {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
  }

  .ludo-list {
    margin-bottom: 20px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .icon-container a {
    justify-content: center;
    width: 100%;
  }

  .icon-container a {
    margin-top: 20px;
  }

  .footer {
    margin-top: 8px;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .footer-col h4 {
    font-weight: 600;
  }

  .footer .container {
    padding-bottom: 0 !important;
  }

  .bottom-title {
    font-size: 14px !important;
  }

  .footer-title-2 {
    font-size: 10px !important;
    padding: 5px 50px;
  }

  .footer-bottom {
    background-position: top;
    height: auto;
    width: 80%;
  }

  .footer-bottom p {
    font-size: 10px;
    padding: 8px 26px;
  }
}

@media (max-width:425px) {
  .download-title {
    margin-left: 0px !important;
    text-align: left;
  }

  .hero-text {
    margin-bottom: 30px;
  }

  .hero-text h3 {
    font-size: 23px;
  }

  .hero-text p {
    font-size: 12px;
  }

  .hero-image .LUDO-Banner {
    padding-top: 44px !important;
  }

  .hero-image img {
    padding-top: 44px;
  }

  .download-frame-ludo {
    margin-top: -30px;
  }

  .swiper-slide {
    display: flex !important;
  }

  .why-cittagames {
    background-size: 100% 62%;
  }

  .home .navbar {
    width: 90% !important;
  }

  .top-game {
    background-size: 100% 100%;
  }

  .swiper {
    height: 140px;
  }

  .terms .container {
    margin: 100px 22px;
  }

  .terms .container {
    margin-bottom: 0px;
  }

  .paragraph-terms p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 40px;
  }

  .paragraph-terms ul li a {
    font-size: 12px;
  }

  .paragraph-terms ul {
    margin-bottom: 40px;
  }

  .text-light {
    font-size: 30px;
  }

  .text-muted-1 {
    font-size: 16px;
  }

  .hero-image {
    padding-top: 30px;
  }

}