/* Container principal do Player */
.tv-player-wrapper {
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-js#tv-player {
    width: 100%;
    border-radius: 12px;
}

.video-js#tv-player .vjs-tech {
    object-fit: cover;
}

.video-js .vjs-big-play-button {
    background-color: rgba(196, 23, 12, 0.8) !important; 
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    width: 65px !important;
    height: 65px !important;
    line-height: 60px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease;
}

.video-js:hover .vjs-big-play-button {
    background-color: rgb(196, 23, 12) !important;
    transform: translate(-50%, -50%) scale(1.1) !important; 
}

/* Estiliza a caixinha de informações da transmissão */
.stream-info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #495057;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.stream-info-box strong {
    color: #212529;
}

/* Bolinha verde piscando para indicar "AO VIVO" */
.status-live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #dc3545; /* Vermelho de gravação/live */
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}