/* Carrossel de Ganhadores */
.ganhos-container {
    display: flex;
    overflow: hidden;
    height: 80px;
    margin: 10px auto 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    background: var(--player-live-strip-bg);
    border: 1px solid rgba(var(--brand-primary-rgb), 0.10);
    border-radius: 12px;
}

.ganhos-fixo {
    flex: 0 0 150px;
    background: var(--player-live-label-bg);
    border-right: var(--player-live-label-border);
    color: white;
    font-weight: bold;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
}

.ganhos-fixo i {
    font-size: 35px;
    color: #ffc107;
}

.ganhos-fixo span {
    line-height: 1.5;
}

.ganhos-rolando {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.ganhos-slider {
    display: flex;
    align-items: center;
    height: 100%;
}

.ganhos-slider .card {
    display: flex;
    align-items: center;
    background: var(--player-list-card-bg);
    border: var(--player-list-card-border);
    box-shadow: var(--player-list-card-shadow);
    color: var(--player-list-text);
    padding: 10px;
    margin-right: 15px;
    border-radius: 10px;
    min-width: 220px;
    height: 100%;
    box-sizing: border-box;
}

.ganhos-slider .card img {
    width: 50px;
    height: 62px;
    margin-right: 10px;
    border-radius: 8px;
    object-fit: cover;
    background-color: transparent;
}

.ganhos-slider .card strong {
    color: var(--player-list-title);
}

.valor {
    color: var(--player-list-value);
    font-weight: bold;
}

/* Ao Vivo */
.aovivo-resultados {
    background: transparent;
    padding: 5px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.online-dot-red {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 6px;
    background-color: #FF3B30;
    border-radius: 50%;
    animation: piscarred 1s infinite;
    vertical-align: middle;
}

@keyframes piscarred {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.aovivo-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

#aovivo-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.aovivo-entry {
    padding: 10px;
    background: var(--player-surface-card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.aovivo-entry img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.aovivo-info {
    margin-left: 8px;
    font-size: 13px;
}

.aovivo-amount {
    color: var(--brand-primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .aovivo-resultados {
        margin-top: -30px;
    }
}

@media (min-width: 1200px) {
    .ganhos-container {
        margin-bottom: 5px !important;
    }

    .aovivo-resultados {
        padding: 5px 20px !important;
        margin-top: 3px !important;
        margin-bottom: 0 !important;
    }
}

.aovivo-titulo {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}