#placar-ao-vivo-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: #04290d;
    background: radial-gradient(circle, rgba(4, 41, 13, .9) 0%, rgba(37, 89, 11, 1) 75%, rgba(0, 102, 14, .9) 100%);
    border-top: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

#placar-ao-vivo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    background-color: #ff1010;
    width: 0;
}

#placar-ao-vivo-container.animate-progress-bar::before {
    animation: progressBarAnimation 10s linear forwards;
}

@keyframes progressBarAnimation {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.swiper-container-placar {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.placar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px 20px;
}

.placar-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.placar-line-top {
    font-size: 1.5em;
    position: absolute;
    width: auto;
    gap: 20px;
    top: -15%;
    padding: 5px 20px;
    border-radius: 10px;
    background-color: #04290d;
    color: #51ff85;
    border: 3px solid #25590b;
}

.placar-line-middle {
    font-size: 2em;
    font-weight: 500;
    margin: 5px 0;
    gap: 30px;
}

.placar-line-bottom {
    font-size: 1.5em;
    color: #aaa;
    gap: 30px;
}

.item-data {
    color: #70be87;
    font-size: 1em;
}

.item-horario {
    font-weight: bold;
    color: #ffc107;
}

.item-local {
    font-size: 0.9em;
    color: #80a584;
    margin-left: 5px;
}

.item-modalidade {
    color: #70be87;
    font-size: .8em;
    max-width: 30%;
    width: auto;
    text-wrap: pretty;    
}

.item-status {
    font-size: 0.8em;
    padding: 4px 10px;
    border-radius: 4px;
    flex-shrink: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.item-status.resultado {
    background-color: #b80c0c;
    color: #ffffffce;
}

.item-status.proximo {
    background-color: #172f9b;
    animation: rotate-bg-color 1000ms infinite;
    color: #ffffff;
}

@keyframes rotate-bg-color {
  0% {
    background-color: #172f9b;
  }
  40% {
    background-color: #0c81ee;
  }
  70% {
    background-color: #06773f;
  }
}


.item-partida {
    display: flex;
    align-items: center;
    font-size: 1em;
    gap: 15px;
}

.item-partida .equipe {
    font-weight: 700;
}

.item-partida .placar {
    font-weight: normal;
    font-size: 2em;    
    color: #e8ff15;
    text-shadow: 0 0 5px #e8ff15a2;
}

.item-partida .vs {
    font-size: 1.3em;
    color: #57995e;
}

.item-partida .equipe.wo {
    color: #ff3636;
    text-shadow: 0 0 5px #ff3636a2;
    font-weight: bold;
}

.item-partida .vencedor-label {
    font-size: 1em;
}

.item-partida .vencedor-nome {
    color: #e8ff15;
    text-shadow: 0 0 5px #e8ff15a2;
}


/* Responsividade */
@media (max-width: 768px) {
    #placar-ao-vivo-container {
        height: 80px;
        /* Ajusta altura para telas menores */
    }

    .placar-item {
        padding: 5px 10px;
    }

    .placar-line-top {
        font-size: 0.7em;
    }

    .placar-line-middle {
        font-size: 1em;
        margin: 2px 0;
    }

    .placar-line-bottom {
        font-size: 0.7em;
    }

    .item-modalidade {
        font-size: 0.9em;
        margin-right: 10px;
    }

    .item-status {
        font-size: 0.7em;
        padding: 2px 5px;
    }

    .item-partida {
        font-size: 0.9em;
    }

    .item-partida .placar {
        font-size: 1em;
        margin: 0 5px;
    }

    .item-partida .vs {
        margin: 0 5px;
    }

    .item-partida .vencedor-label,
    .item-partida .vencedor-nome {
        font-size: 0.8em;
    }
}

.wo-label {
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.1em;
    padding: 2px 5px;
    border-radius: 5px;
    color: rgb(41, 26, 9);
    background-color: #ffd341;
}