.mod-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 1000px;
  background-color: #f9faff;
  border-radius: 12px;
}

.mod-list li {
  flex: 0 0 calc(20% - 12px);
  height: 30px;
  box-sizing: border-box;
  padding: 0 10px;
  background-color: #fff;
  border: 2px solid #a0c4ff;
  border-radius: 18px;
  box-shadow:
    2px 2px 0 #8bb2ff,
    -2px -2px 0 #c0d4ff;
  font-weight: 600;
  color: #3a5fcd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.mod-list li:hover {
  border-color: #5a8def;
  box-shadow:
    4px 4px 0 #6a87db,
    -4px -4px 0 #9bb3ff;
}


.mod-list a {
  color: inherit;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.mod-list a:hover {
  text-decoration: underline;
}