[x-cloak] { display: none !important; }

::-webkit-scrollbar { height: 6px; width: 6px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.ball-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2rem; height: 2rem; border-radius: 9999px;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.ball-dot   { background: #e2e8f0; color: #475569; }
.ball-run   { background: #dbeafe; color: #1d4ed8; }
.ball-four  { background: #bbf7d0; color: #15803d; }
.ball-six   { background: #ddd6fe; color: #6d28d9; }
.ball-wicket{ background: #fecaca; color: #b91c1c; }
.ball-extra { background: #fef08a; color: #854d0e; }

.feed-enter { animation: feedIn 0.4s ease-out; }
@keyframes feedIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 9999px;
  background: #ef4444; animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
