/* ========== SCOREBUG V2 (MODERN MINIMALIST) ========== */
.scorebug-v2 {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 100;
  transition: opacity 0.4s ease;
}
.v2-panel {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  padding: 10px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
}
.v2-left {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--team-primary);
  color: white;
  padding: 8px 25px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.v2-team-abbr { font-size: 24px; font-weight: 800; }
.v2-team-score { font-size: 28px; font-weight: 900; }
.v2-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1f2937;
  font-family: 'Inter', sans-serif;
  padding: 0 15px;
  border-right: 1px solid rgba(0,0,0,0.1);
  border-left: 1px solid rgba(0,0,0,0.1);
}
.v2-overs { font-size: 16px; font-weight: 700; color: #4b5563; }
.v2-meta { font-size: 14px; font-weight: 600; color: #6b7280; display: flex; gap: 10px; }
.v2-clock { font-size: 14px; color: #ef4444; font-weight: 700; margin-top: 2px; }
.v2-right {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1f2937;
  font-family: 'Inter', sans-serif;
}
.v2-player { display: flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 600; }
.v2-player .v2-stats { font-weight: 800; color: #3b82f6; }
.v2-player .v2-name.striker { color: #111827; }
.v2-dot { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; }
.v2-divider { width: 1px; height: 30px; background: rgba(0,0,0,0.1); }

/* ========== SCOREBUG V3 (SCI-FI NEON) ========== */
.scorebug-v3 {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 100;
  transition: opacity 0.4s ease;
}
.v3-panel {
  display: flex;
  background: rgba(10, 10, 20, 0.9);
  padding: 0;
  box-shadow: 0 0 20px rgba(0,255,255,0.2), inset 0 0 10px rgba(0,255,255,0.1);
  border: 1px solid rgba(0,255,255,0.3);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  align-items: stretch;
}
.v3-left {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(90deg, var(--team-primary), rgba(0,0,0,0));
  color: #fff;
  padding: 15px 30px;
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  border-right: 2px solid rgba(0,255,255,0.5);
}
.v3-team-abbr { font-size: 32px; font-weight: 600; letter-spacing: 2px; }
.v3-team-score { font-size: 40px; font-weight: 700; color: #0ff; text-shadow: 0 0 10px #0ff; }
.v3-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  font-family: 'Rajdhani', sans-serif;
  background: rgba(0,0,0,0.5);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.v3-meta-row { display: flex; gap: 15px; align-items: center; font-size: 18px; font-weight: 700; color: #aaa; }
.v3-clock { color: #f0f; text-shadow: 0 0 5px #f0f; }
.v3-target { font-size: 16px; color: #ff0; letter-spacing: 1px; font-weight: 600; margin-top: 4px; }
.v3-right {
  display: flex;
  padding: 10px 20px;
  gap: 20px;
  font-family: 'Rajdhani', sans-serif;
}
.v3-batter-box, .v3-bowler-box { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.v3-bowler-box { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 20px; }
.v3-player { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 600; color: #fff; }
.v3-stats { color: #0ff; font-weight: 700; text-shadow: 0 0 5px rgba(0,255,255,0.5); }
.v3-indicator { color: #f0f; font-size: 14px; text-shadow: 0 0 5px #f0f; }
