.game-slider {
  position: relative;
  width: 100%;
  margin: 16px auto;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.slider-track a {
  flex: 0 0 calc(50% - 6px); /* MOBILE: 2 icon */
  text-align: center;
  text-decoration: none;
  color: #222;
  font-size: 13px;
}

.slider-track img {
  width: 100%;
  max-width: 90px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.slider-track span {
  display: block;
  margin-top: 6px;
  font-weight: 500;
}

/* Tablet */
@media (min-width: 600px) {
  .slider-track a {
    flex: 0 0 calc(33.333% - 8px); /* 3 icon */
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slider-track a {
    flex: 0 0 calc(16.666% - 10px); /* 6 icon */
  }
}

/* NĂºt Ä‘iá»u hÆ°á»›ng */
.nav {
  background: #fff;
  border: none;
  font-size: 26px;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.nav:hover {
  background: #f2f2f2;
}