


.Choose_Our_Game {
  margin: 90px 0 10px;
  position: relative;
  overflow: hidden;
}

.Choose_Our_Game .featureContainer {
  position: relative;

  width: 100%;
  margin: 50px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 24px;

  overflow: hidden;

  border: 1px solid rgba(255, 196, 0, 0.25);

  background:
    radial-gradient(circle at center, rgba(112, 0, 160, 0.18), transparent 45%),
    linear-gradient(135deg, #09030d 0%, #15051d 50%, #08030c 100%);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 80px rgba(255, 196, 0, 0.03);
}

.Choose_Our_Game .featureContainer .side_img_div {
  position: absolute;

  left: 50%;
  bottom: -85px;

  transform: translateX(-50%);

  width: 180px;

  z-index: 1;

  opacity: 0.12;

  pointer-events: none;

  mix-blend-mode: screen;

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.Choose_Our_Game .featureContainer .side_img_div .side_img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;

  filter: drop-shadow(0 0 25px rgba(255, 196, 0, 0.5));
}

.Choose_Our_Game .featureContainer .featureCard {
    position: relative;
    min-height: 320px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease,
    transform 0.7s ease,
    background 0.3s ease;
    padding-top: 52px;
}


.Choose_Our_Game .featureContainer .featureCard:last-child {
  border-right: none;
}


.Choose_Our_Game.active .featureContainer .featureCard {
  opacity: 1;

  transform: translateY(0);
}

.Choose_Our_Game.active .featureContainer .featureCard:nth-child(2) {
  transition-delay: 0.1s;
}

.Choose_Our_Game.active .featureContainer .featureCard:nth-child(3) {
  transition-delay: 0.2s;
}

.Choose_Our_Game.active .featureContainer .featureCard:nth-child(4) {
  transition-delay: 0.3s;
}

.Choose_Our_Game.active .featureContainer .featureCard:nth-child(5) {
  transition-delay: 0.4s;
}

/* =========================================================
   CARD BACKGROUND
========================================================= */

.Choose_Our_Game .featureContainer .featureCard::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    145deg,
    rgba(255, 196, 0, 0.08),
    rgba(100, 0, 150, 0.08),
    transparent
  );

  opacity: 0;

  transition: opacity 0.4s ease;

  z-index: 0;
}

.Choose_Our_Game .featureContainer .featureCard:hover::before {
  opacity: 1;
}

.Choose_Our_Game .featureContainer .featureCard:hover {
  background: rgba(255, 255, 255, 0.025);
}

.Choose_Our_Game .featureContainer .featureCard:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(transparent, rgb(140 191 219), transparent);
  z-index: 5;
}

.Choose_Our_Game .featureNumber {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgb(170 223 233);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 5;
}

.Choose_Our_Game .featureGlow {
  position: absolute;

  width: 120px;
  height: 120px;

  top: 35px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(180, 0, 255, 0.08);

  filter: blur(35px);

  opacity: 0;

  transition: opacity 0.4s ease;

  pointer-events: none;
}

.Choose_Our_Game .featureContainer .featureCard:hover .featureGlow {
  opacity: 1;
}

/* =========================================================
   LOTTIE
========================================================= */

.Choose_Our_Game .featureContainer .featureLottie {
  position: relative;

  width: 120px;
  height: 120px;

  margin-bottom: 15px;

  z-index: 5;

  transition: transform 0.4s ease;
}

.Choose_Our_Game .featureContainer .featureLottie > div {
  width: 100% !important;
  height: 100% !important;
}

.Choose_Our_Game .featureContainer .featureCard:hover .featureLottie {
  transform: translateY(-6px) scale(1.05);
}

/* =========================================================
   TITLE
========================================================= */

.Choose_Our_Game .featureContainer .featureCard h3 {
  position: relative;

  z-index: 5;

  margin: 5px 0 10px;

  color: #ffffff;

  font-size: 22px;

  line-height: 1.2;

  font-weight: 700;

  transition: color 0.3s ease;
}

.Choose_Our_Game .featureContainer .featureCard:hover h3 {
  color: #aad0e3;
}
.Choose_Our_Game .featureContainer .featureCard p {
    position: relative;
    z-index: 5;
    max-width: 240px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.62);
    font-size: 18px;
    line-height: 1.65;
}
.Choose_Our_Game .featureContainer .featureLine {
  position: relative;
  z-index: 5;
  width: 35px;
  height: 2px;
  margin-top: 18px;
  border-radius: 10px;
  background: #829fd7;
  box-shadow: 0 0 10px rgb(22 183 236);
  transition: width 0.3s ease;
}

.Choose_Our_Game .featureContainer .featureCard:hover .featureLine {
  width: 60px;
}

.Choose_Our_Game .side_bg {
  position: absolute;

  pointer-events: none;

  opacity: 0;

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.Choose_Our_Game .side_bg_right {
  right: -50px;
  top: 25%;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(255, 196, 0, 0.12), transparent 70%);

  filter: blur(20px);

  transform: translateY(100px);
}

/* ACTIVE SIDE BACKGROUND */

.Choose_Our_Game.active .side_bg_left,
.Choose_Our_Game.active .side_bg_right {
  opacity: 1;

  transform: translateY(0);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .Choose_Our_Game .featureContainer {
    max-width: 1150px;
  }

  .Choose_Our_Game .featureContainer .featureCard {
    min-height: 300px;

    padding: 30px 20px;
  }

  .Choose_Our_Game .featureContainer .featureLottie {
    width: 115px;
    height: 115px;
  }

  .Choose_Our_Game .featureContainer .featureCard h3 {
    font-size: 21px;
  }

  .Choose_Our_Game .featureContainer .featureCard p {
    font-size: 13px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .Choose_Our_Game {
    margin: 70px 0 60px;
  }

  .Choose_Our_Game .featureContainer {
    margin-top: 40px;
  }

  .Choose_Our_Game .featureContainer .featureCard {
    min-height: 290px;

    padding: 25px 15px;
  }

  .Choose_Our_Game .featureContainer .featureLottie {
    width: 105px;
    height: 105px;

    margin-bottom: 10px;
  }

  .Choose_Our_Game .featureContainer .featureCard h3 {
    font-size: 20px;
  }

  .Choose_Our_Game .featureContainer .featureCard p {
    max-width: 200px;

    font-size: 13px;
  }

  .Choose_Our_Game .featureNumber {
    top: 14px;
    right: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .Choose_Our_Game {
    margin: 60px 0;
  }

  .Choose_Our_Game .featureContainer {
    grid-template-columns: repeat(2, 1fr);

    margin-top: 35px;

    border-radius: 20px;
  }

  .Choose_Our_Game .featureContainer .featureCard {
    min-height: 280px;

    padding: 25px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .Choose_Our_Game .featureContainer .featureCard:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .Choose_Our_Game .featureContainer .featureCard:nth-child(4) {
    border-right: none;
  }

  .Choose_Our_Game .featureContainer .featureCard:nth-child(5) {
    border-right: none;

    border-bottom: none;
  }

  .Choose_Our_Game .featureContainer .featureCard:nth-child(4) {
    border-bottom: none;
  }

  .Choose_Our_Game .featureContainer .featureCard:not(:last-child)::after {
    display: none;
  }

  .Choose_Our_Game .featureContainer .featureLottie {
    width: 105px;
    height: 105px;
  }

  .Choose_Our_Game .featureContainer .featureCard h3 {
    font-size: 20px;
  }

  .Choose_Our_Game .featureContainer .featureCard p {
    max-width: 250px;

    font-size: 13px;
  }

  .Choose_Our_Game .featureContainer .side_img_div {
    width: 150px;

    bottom: -60px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .Choose_Our_Game {
    margin: 50px 0;
  }

  .Choose_Our_Game .featureContainer {
    grid-template-columns: repeat(2, 1fr);

    margin-top: 30px;

    border-radius: 18px;
  }

  .Choose_Our_Game .featureContainer .featureCard {
    min-height: 250px;

    padding: 20px 15px;
  }

  .Choose_Our_Game .featureContainer .featureCard:not(:last-child)::after {
    display: none;
  }

  .Choose_Our_Game .featureContainer .featureCard:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .Choose_Our_Game .featureContainer .featureLottie {
    width: 90px;
    height: 90px;

    margin-bottom: 8px;
  }

  .Choose_Our_Game .featureContainer .featureCard h3 {
    font-size: 18px;

    margin-bottom: 8px;
  }

.Choose_Our_Game .featureNumber {
    font-size: 24px;
  
}

  .Choose_Our_Game .featureContainer .side_img_div {
    width: 130px;

    bottom: -45px;
  }
}

@media (min-width: 0px) and (max-width: 575px) {
  .Choose_Our_Game {
    margin: 45px 0 50px;
  }

  .Choose_Our_Game .featureContainer {
    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 25px;

    border-radius: 16px;
  }

  .Choose_Our_Game .featureContainer .featureCard {
    width: 100%;

    min-height: 235px;

    padding: 25px 20px;

    border-right: none !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .Choose_Our_Game .featureContainer .featureCard:last-child {
    border-bottom: none;
  }

  .Choose_Our_Game .featureContainer .featureCard:not(:last-child)::after {
    display: none;
  }

  .Choose_Our_Game .featureContainer .featureLottie {
    width: 85px;
    height: 85px;

    margin-bottom: 8px;
  }

  .Choose_Our_Game .featureContainer .featureCard h3 {
    font-size: 18px;

    margin-bottom: 8px;
  }

  .Choose_Our_Game .featureContainer .featureCard p {
    font-size: 14px;
  }

.Choose_Our_Game .featureNumber {
    /* top: 12px; */
    /* right: 15px; */
    font-size: 20px;
}

  .Choose_Our_Game .featureContainer .side_img_div {
    width: 110px;

    bottom: -35px;
  }
}
