.boosters-container {
  position: relative;
  background-color: var(--background-color);
}
/* Start Landing */
.boosters-container .boosters-landing {
  width: 100%;
  height: 690px;
  background-image: url("./../../games/images/games_bg.c13240b6b2e7.jpg");
  background-size: cover;
  background-position-y: -277px;
  background-position-x: center; 
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .booster-container .booster-landing {
    background-position-y: -167px;
  }
}
@media (max-width: 767px) {
  .booster-container .booster-landing {
    background-position-y: -66px;
  }
}
.boosters-container .boosters-landing::before {
  content: "";
  width: 100%;
  height: 120%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(72, 54, 33, 0.65) 0%, #1E1814 64.35%);
}
.boosters-landing .heading {
  position: absolute;
  top: 30%;
  text-align: center;
  color: white;
}
@media (max-width: 767px) {
  .boosters-landing .heading {
    top: 23%;;
  }
}
.boosters-landing .heading h1 {
  font-weight: bolder;
  font-size: 64px;
  font-family: var(--heading-font);
  letter-spacing: 3px;
}
.boosters-landing .heading p {
  font-size: 1.5rem;
  font-weight: 300;
}
.select-container {
  width: 380px !important;
}
select, .select-container::after {
  background-color: var(--alternative-color) !important;
  box-shadow: 0px 0px 10px 0px #00000040 inset !important;
}
.search {
  width: 380px !important;
}
@media (max-width: 767px) {
  .boosters-landing .heading h1 {
    font-size: 32px;
  }
  .boosters-landing .heading p {
    font-size: 1rem;
  }
  .select-container {
    width: 100% !important;
  }
  .search {
    width: 100% !important;
  }
}
/* Start Boosters */
.boosters {
  position: relative;
  margin-top: -250px; /* Adjust this value as needed */
}
.boosters .booster {
  width: 384px;
  min-height: fit-content;
  border-radius: calc(var(--main-radius) * 2);
  border: 1px solid #332A27;
  position: relative;
  background: linear-gradient(180deg, rgba(72, 54, 33, 0.65) 0%, #1E1814 64.35%);
  transition: 1s linear;
}
.boosters .booster::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: calc(var(--main-radius) * 2);
  background: linear-gradient(360deg, #1E1814 31.88%, rgba(30, 24, 20, 0) 69.08%);
}
@media (max-width: 767px) {
  .boosters {
    margin-top: -355px;
  }
  .boosters .booster {
    width: 100% !important;
  }
}
.boosters .booster .banner {
  width: 100%;
  height: 384px;
  position: relative;
}
.boosters .booster .banner img {
  height: 100% !important;
  border-top-left-radius: calc(var(--main-radius)* 2);
  border-top-right-radius: calc(var(--main-radius)* 2);
}
.boosters .booster .banner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: calc(var(--main-radius) * 2);;
  border-top-right-radius: calc(var(--main-radius) * 2);;
  background-position-x: -100px;
  background-image: url("./../../games/images/bg_cover.c7cd6db4cba1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.boosters .booster .booster-data {
  width: 100%;
  color: white;
  position: relative;
  z-index: 10;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}
.language {
  border: 1px solid #FFFFFF;
  border-radius: var(--main-radius);
  padding: 0 0.5rem;
}