/* Clean Replay Pro UI - single replay system */
.replay-bar {
  position: fixed;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  min-width: 680px;
  max-width: 920px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 30px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(180,0,20,.95), rgba(20,20,28,.92) 44%, rgba(255,190,0,.94));
  border: 2px solid rgba(255,255,255,.38);
  box-shadow: 0 0 26px rgba(255,0,30,.52), 0 12px 36px rgba(0,0,0,.5);
  z-index: 99999;
  overflow: hidden;
}
.replay-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.22) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: replaySweep 1.45s linear infinite;
}
.replay-live-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ff1744;
  box-shadow: 0 0 18px #ff1744;
  animation: replayPulse .7s ease-in-out infinite alternate;
  z-index: 1;
}
.replay-left, .replay-center, .replay-right { position: relative; z-index: 1; }
.replay-left { font-size: 25px; color: #fff200; text-shadow: 0 0 10px rgba(255,242,0,.55); }
.replay-center { flex: 1; text-align: center; font-size: 36px; color: #fff; text-shadow: 0 0 18px rgba(255,255,255,.55); }
.replay-right { font-size: 20px; opacity: .9; color: #ffffff; }
body.replay-active #scoreboard { display: none !important; }
body.replay-active .tournament-badge { opacity: .16; }
.pro-replay-buttons { margin-bottom: 12px; }
@keyframes replaySweep { to { transform: translateX(120%); } }
@keyframes replayPulse { from { transform: scale(.9); opacity:.65; } to { transform: scale(1.18); opacity:1; } }
