.boss-card-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 900px) {
  .boss-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .boss-card-list {
    grid-template-columns: 1fr;
  }
}

.boss-card {
  border: 1px solid #3b3b3b;
  background: #101010;
  padding: 12px 14px;
  border-radius: 8px;
  color: #f5f5f5;
  font-size: 14px;
}

.boss-card--hot {
  border-color: #cda235;
  box-shadow: 0 0 8px rgba(205,162,53,0.4);
}

.boss-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
}

.boss-card__time {
  font-weight: 700;
  font-size: 16px;
  color: #facc6b;
}

.boss-card__name {
  font-weight: 700;
  font-size: 18px;
}

.boss-card__map {
  font-size: 12px;
  color: #9ca3af;
  margin-left: 4px;
}

.boss-card__tag-hot {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 999px;
  background: #7f1d1d;
  color: #fca5a5;
}

.boss-card__tag-yellow {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 999px;
  background-color: rgb(205, 162, 53);
  color: #fff;
}

.boss-card__meta {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.boss-card__tag {
  display: inline-block;
  padding: 1px 8px;
  font-size: 11px;
  border-radius: 999px;
  line-height: 1.4;
  border: 1px solid transparent;
}

.boss-card__tag--monster {
  background: #14532d;
  border-color: #22c55e;
  color: #bbf7d0;
}

.boss-card__tag--tp-on {
  background: #1d4ed8;
  border-color: #3b82f6;
  color: #dbeafe;
}

.boss-card__tag--tp-off {
  background: #111827;
  border-color: #6b7280;
  color: #e5e7eb;
}

.boss-card__tag--rt-on {
  background: #0f766e;
  border-color: #14b8a6;
  color: #ccfbf1;
}

.boss-card__tag--rt-off {
  background: #111827;
  border-color: #6b7280;
  color: #e5e7eb;
}

.boss-card__move {
  font-size: 12px;
  color: #9ca3af;
}

.boss-card__label-fee {
  color: #facc6b;
  font-weight: 600;
}

.boss-card__label-cond {
  color: #93c5fd;
  font-weight: 600;
}

.boss-card__body {
  margin-top: 6px;
}

.boss-card__drops {
  margin: 0;
  padding-left: 18px;
}

.boss-card__drops li {
  margin-bottom: 2px;
}

.drop-highlight {
  color: #ff4d4d;
  font-weight: 700;
}

.note-highlight {
  color: #f97316;
  font-size: 13px;
}
