.home-cover .inner {
  max-width: calc(var(--max-width) - 250px);
}

.home-cover .game-list {
  /* --border-radius: 20px; */
  margin: 40px -10px;
  display: flex;
  flex-wrap: wrap;
  max-width: calc(var(--max-width) - 50px);
}

.home-cover .game-list .product {
  padding: 0 1em;
  margin-bottom: 1.5em;
}

.home-cover .game-list .bsg-card {
  --bsg-card-hdt: 200px;
  display: flex;
  height: var(--bsg-card-hdt);
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 14px;
  font-weight: 400;
}

.bsg-card .image {
  background: white;
  width: 100%;
  border: 1px solid var(--theme-color);
  /* border-radius: var(--border-radius); */
}

.bsg-card .image .game-image {
  /* border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius); */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
  min-height: calc(var(--bsg-card-hdt) - 5em);
  max-height: calc(var(--bsg-card-hdt) - 5em);
}

.reward-action {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background-color: var(--theme-color);
  padding-bottom: 8px;
  margin-top: -10px;
  /* border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius); */
}

.reward-rebate {
  display: block;
  color: var(--theme-font-color-2);
  font-size: 0.8em;
  text-align: center;
  padding: 0 10px;
}

/* Updated title content styling */
.bsg-card .title-content {
  width: 100%;
  background-color: var(--theme-color);
  padding: 8px 10px;
  /* border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius); */
}

.bsg-card .title {
  text-align: center;
}

.bsg-card .product_name {
  color: #333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
}

@media only screen and (max-width: 800px) {
  .home-cover .game-list .bsg-card {
    --min-bsg-card-hdt: calc(var(--bsg-card-hdt) - 0.5em);
    height: var(--min-bsg-card-hdt);
  }

  .bsg-card .image .game-image {
    max-height: calc(var(--min-bsg-card-hdt) - 4em);
    min-height: calc(var(--min-bsg-card-hdt) - 4em);
  }

  .bsg-card .image {
    border: 1px solid var(--theme-color);
  }
}

@media only screen and (max-width: 480px) {
  .home-cover .game-list .bsg-card {
    --min-bsg-card-hdt: calc(calc(var(--bsg-card-hdt) - 3.5em));
    height: var(--min-bsg-card-hdt);
  }

  .bsg-card .image .game-image {
    max-height: calc(var(--min-bsg-card-hdt) - 5em);
    min-height: calc(var(--min-bsg-card-hdt) - 5em);
  }

  .home-cover .game-list {
    --border-radius: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .home-cover .game-list{
  margin: 40px 0px;
  }
}

@media only screen and (max-width: 320px) {
  .home-cover .game-list .bsg-card {
    --min-bsg-card-hdt: calc(calc(var(--bsg-card-hdt) - 5.5em));
    height: var(--min-bsg-card-hdt);
  }
}