/* New/updated pages - shared by game/soft new pages */
.list-header {
  padding: 10px;
  background: #fff;
  margin-bottom: 10px;
}
.list-header h2 {
  font-size: 16px;
  color: #333;
  margin: 0 0 10px 0;
  padding: 0;
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-tags-wrapper {
  max-height: 100px;
  overflow: hidden;
  transition: max-height .3s;
}
.filter-tags-wrapper.expanded {
  max-height: none;
}
.filter-toggle {
  display: block;
  text-align: center;
  padding: 6px 0 0;
  font-size: 13px;
  color: #ff6b00;
  cursor: pointer;
}
.filter-toggle .arrow {
  display: inline-block;
  border: 5px solid transparent;
  border-top-color: #ff6b00;
  margin-left: 4px;
  vertical-align: 2px;
  transition: transform .3s;
}
.filter-toggle .arrow.up {
  transform: rotate(180deg);
  vertical-align: -2px;
}
.filter-tags .tag {
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 15px;
  font-size: 13px;
  color: #666;
}
.filter-tags .tag.active {
  background: #ff6b00;
  color: #fff;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  gap: 8px;
}
.pagination a, .pagination span {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}
.pagination a:hover {
  background: #f5f5f5;
}
.pagination .current {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
}
.pagination .disabled {
  color: #999;
  background: #f5f5f5;
}
