/* Other Matches Section Styles */

/* Pulse animation for live indicator */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

/* Pulse dot for live indicator */
.pulse-dot {
  animation: pulse 2s infinite;
}

/* Pulse icon for live section */
.pulse-icon {
  animation: pulse 2s infinite;
}

/* Other matches section */
.other-matches-section {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Match card hover effect */
.card-match.on-genre {
  transition: all 0.3s ease;
}

.card-match.on-genre:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Section header styles */
.other-matches-section .section-header {
  position: relative;
}

.other-matches-section .section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
  .hm-flex.cards-small {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hm-flex.cards-small {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Live status badge */
.status-match.is-live {
  animation: pulse 2s infinite;
}

/* Empty state styling */
.other-matches-section .rloading.rload-static {
  min-height: 200px;
}

