.heat-score-hot {
  color: #DC2626;
  font-weight: 700;
}

.heat-score-warm {
  color: #EA580C;
  font-weight: 700;
}

.heat-score-mild {
  color: #CA8A04;
  font-weight: 600;
}

.heat-score-cold {
  color: #6B7280;
  font-weight: 500;
}

.platform-badge-tiktok {
  background-color: #000000;
  color: #ffffff;
}

.platform-badge-instagram {
  background-color: #E4405F;
  color: #ffffff;
}

.platform-badge-youtube {
  background-color: #FF0000;
  color: #ffffff;
}

.card-hover:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top-color: #DC2626;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
