.ff-card {
  display: block;
  background: #1c1c1c;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
}

.ff-card:hover {
  background: #232323;
  transform: translateY(-4px);
  border-color: #f49d16;
  color: #fff;
  text-decoration: none;
}

.ff-card-body {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ff-card-img {
  background: radial-gradient(circle, #2a2a2a, #000);
  padding: 8px;
  border-radius: 8px;
}

.ff-card-img img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.ff-card-content {
  flex: 1;
  min-width: 0;
}

.ff-card-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.ff-card-name {
  font-weight: 600;
  font-size: 13px;
  max-width: 160px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ff-card-tags {
  margin: 6px 0;
}

.tag {
  display: inline-block;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 6px;
  margin-right: 4px;
  margin-top: 4px;
  font-weight: bold;
}

.type-tag {
  background: #3498db;
  color: #fff;
}

.version-tag {
  background: #2d3436;
  color: #fff;
}

.rarity-red { background: #e74c3c; }
.rarity-orange { background: #f39c12; }
.rarity-purple { background: #9b59b6; }
.rarity-blue { background: #3498db; }
.rarity-green { background: #2ecc71; }
.rarity-white { background: #777; }
.rarity-none { background: #7f8c8d; }
.rarity-purple_plus { background: #8e44ad; }

.ff-card-stats {
  font-size: 11px;
  color: #aaa;
}

.ff-card-bar {
  height: 4px;
  background: #333;
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #2ecc71;
  border-radius: 10px;
}
