.game-list-page .list-section-title h2 {
  font-size: 20px;
  font-weight: 900;
  margin: 0;
}

.provider-filter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.game-list-page .slots-provider-filter {
  margin-top: 4px;
}

.game-list-page .slots-provider-chip {
  text-decoration: none;
  color: inherit;
}

#gameListGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.provider-filter--scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  padding: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.provider-filter--scroll::-webkit-scrollbar {
  display: none;
}

.provider-filter--scroll a {
  flex: 0 0 72px;
  min-width: 72px;
}

.provider-filter a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #111a2e;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.provider-filter a.active {
  border-color: #2aa8ff;
  box-shadow: 0 0 12px rgba(42, 168, 255, 0.42);
}

.provider-filter img {
  display: block;
  width: 100%;
  height: auto;
}

.game-list-page .game-card .provider-badge {
  position: absolute;
  right: 4px;
  bottom: 28px;
  z-index: 2;
  padding: 2px 5px;
  border-radius: 4px;
  background: #d62828;
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.game-list-page .provider-name {
  display: block;
  padding-top: 4px;
  text-align: center;
  color: #facc15;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
}

.game-list-empty {
  grid-column: 1 / -1;
  padding: 36px 12px;
  text-align: center;
  color: #8b97ad;
  font-size: 12px;
}

.game-list-page .category-rail a {
  position: relative;
  min-width: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 0;
  text-decoration: none;
}

.game-list-page .category-rail a.active::after {
  content: "";
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: #2d9bf4;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.game-list-page .category-rail button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

@media (min-width: 768px) {
  .game-list-page .provider-name {
    font-size: 11px;
  }

  .game-list-page .game-card .provider-badge {
    font-size: 8px;
    bottom: 30px;
  }
}
