body {
  background: black;
  color: #f1f1f1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 24px;
  margin: 4px;
  max-width: 100%;
  box-sizing: border-box;
}

input, button, select {
  font-size: 16px;
  padding: 6px 10px;
  margin: 5px;
}

.card {
  background: #111;
  border: 1px solid #333;
  margin: 10px;
  padding: 10px;
  width: 220px;
  min-height: 320px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
}

@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}

.card img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 8px;
}

.card a {
  display: inline-block;
  margin-top: 6px;
  color: #0ff;
  font-size: 12px;
  text-decoration: none;
  margin-right: 6px;
}

.badge {
  font-size: 12px;
  padding: 2px 6px;
  background: #222;
  border: 1px solid #999;
  display: inline-block;
  margin: 4px 0;
  border-radius: 3px;
  color: white;
}

.deal-tag {
  font-size: 12px;
  padding: 3px 6px;
  font-weight: bold;
  display: inline-block;
  margin: 4px 4px 4px 0;
  border-radius: 3px;
}

.steal {
  background: lime;
  color: black;
}

.undervalued {
  background: gold;
  color: black;
}

.hotness {
  background: red;
  color: white;
  font-weight: bold;
}

.flip {
  background: orange;
  color: black;
  font-weight: bold;
}

#results {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
