
.point3-replay-mode .scorebar,
.point3-replay-mode #scoreboard,
.point3-replay-mode .scoreboard,
.point3-replay-mode .tournament-badge {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.replay-pro-bar {
    position: fixed;
    left: 50%;
    bottom: 54px;
    transform: translateX(-50%) translateY(35px);
    width: min(980px, 82vw);
    height: 92px;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(6,10,22,.98), rgba(185,0,42,.96), rgba(6,10,22,.98));
    border: 2px solid rgba(255,255,255,.34);
    box-shadow: 0 0 55px rgba(255,0,58,.48), 0 22px 60px rgba(0,0,0,.70);
    z-index: 2147483647;
    opacity: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    transition: .15s ease;
}

.replay-pro-bar.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.replay-pro-pill {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff174d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 22px;
    font-weight: 1000;
    letter-spacing: 3px;
    box-shadow: 0 0 28px rgba(255,23,77,.8);
    animation: replayPulse .65s infinite;
}

.replay-pro-title {
    position: relative;
    font-size: 44px;
    font-weight: 1000;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(255,255,255,.45);
}

.replay-pro-live {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 1000;
    color: #ffd166;
    letter-spacing: 2px;
}

@keyframes replayPulse {
    0%,100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.08); }
}
