@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=JetBrains+Mono:wght@700&display=swap');

body {
  font-family: 'Sora', ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optional: Use JetBrains Mono for your codes/numbers */
.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* 3. Container & Layout Refinements */
.predictions-group-container {
  @apply bg-white border border-gray-100 rounded-[2.5rem] shadow-sm overflow-hidden divide-y divide-gray-50;
}

.match-row {
  @apply h-24 px-8 flex items-center transition-colors duration-500 relative;
}

/* Live indicator */
@keyframes system-live-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.is-live-indicator {
  /* Authentic Coventry City Sky Blue */
  color: #059dd9 !important;
  animation: system-live-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes fadeOutBadge {
  0% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

.animate-fade-out-badge {
  animation: fadeOutBadge 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}