.gamer-guide-container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
}

.gamer-guide-container ul li p {
  word-break: break-word;
}

.gamer-guide-container ul li {
  box-shadow: 0px 0px 10px 0px rgba(140, 138, 250, 0.7);
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .gamer-guide-container ul {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 640px) {
  .gamer-guide-container ul {
    grid-template-columns: 1fr; /* 1 per row on phones */
  }
}

.result-content-wrapper {
  padding: 20px 20px 10px 20px;
}

.result-content-wrapper h3 {
  margin-bottom: 10px;
}

.result-content-wrapper p {
  margin-bottom: 20px;
}

.about-game-mini-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.list-view-rating svg {
  color: #fbbf24;
}

.list-view-rating,
.list-view-download {
  display: flex;
  align-items: center;
  gap: 5px;
}

.list-view-game {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;

  padding: 10px 20px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(to right, #2563eb, #9333ea);
}

.list-view-game img {
  width: 24px;
  height: 24px;
}

.pagination {
  display: flex;
  gap: 15px;
  font-size: 20px;
  justify-content: center;
  margin-top: 50px;
}

.pagination a {
  border: 1px solid #00000040;
  padding: 5px 15px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;

  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0));
}

.pagination a:hover {
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(to right, #9333ea, #2563eb);
}

span.page-numbers.dots {
  border: none;
  background: none;
  color: #000000;
}

.pagination span {
  background: linear-gradient(to right, #2563eb, #9333ea);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 5px;
}

.homepage-list-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  height: 300px;
  object-fit: cover;
 
}
@media (max-width: 767px) {
  .homepage-list-img {
    height: 200px;
  }
}
