/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0B0E14;
}
::-webkit-scrollbar-thumb {
  background: #1F293D;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0055FF;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Glassmorphism Cards & Borders */
.glass-card {
  background: rgba(19, 24, 34, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(31, 41, 61, 0.8);
}

.glass-nav {
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(16px);
}

/* Animation Keyframes */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spinSlow 12s linear infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.animate-pulse-glow {
  animation: pulseGlow 2s infinite ease-in-out;
}

/* Status Badges */
.badge-live {
  background-color: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-final {
  background-color: rgba(107, 114, 128, 0.15);
  color: #9CA3AF;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

.badge-scheduled {
  background-color: rgba(0, 85, 255, 0.15);
  color: #00C2FF;
  border: 1px solid rgba(0, 85, 255, 0.3);
}

/* Win Probability Progress Bar */
.win-prob-bar {
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Active Navigation Highlight */
.mob-nav-active {
  color: #0055FF !important;
}

.tab-btn-active {
  background-color: #0055FF !important;
  color: #FFFFFF !important;
  border-color: #0055FF !important;
}

