body {
  background-color: #121212;
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding: 20px;
  margin: 0;
}

h1, h2 {
  text-align: center;
}

.fighters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.fighter {
  background-color: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.2s;
}

.fighter:hover {
  transform: scale(1.03);
}

.tags {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px 5px 0 0;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
}

.striking {
  background-color: #e74c3c;
}

.grappling {
  background-color: #3498db;
}

.wrestling {
  background-color: #2ecc71;
}

.durability {
  background-color: #f39c12;
}

.p4p-list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.p4p-list li {
  margin: 5px 0;
  font-weight: bold;
}

.controls {
  text-align: center;
  margin: 20px 0;
}

#search {
  padding: 10px;
  width: 250px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

.filters {
  margin-top: 10px;
}

.filters button {
  padding: 8px 15px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #333;
  color: #fff;
  font-weight: bold;
}

.filters button:hover {
  background-color: #555;
}
