/* Apostas da Rodada Atual */
.current-bets-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bets-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bets-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bet-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.bet-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Card Headers */
.bet-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bet-card-icon {
    font-size: 1.5rem;
}

.bet-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Verde */
.bet-card.red .bet-card-header {
    border-bottom-color: rgba(34, 197, 94, 0.2);
}

.bet-card.red .bet-card-title {
    color: #22c55e;
}

/* Card Trevo */
.bet-card.green .bet-card-header {
    border-bottom-color: rgba(240, 240, 240, 0.2);
}

.bet-card.green .bet-card-title {
    color: #f0f0f0;
}

/* Card Preto */
.bet-card.black .bet-card-header {
    border-bottom-color: rgba(100, 100, 120, 0.2);
}

.bet-card.black .bet-card-title {
    color: #9ca3af;
}

/* Total Section */
.bet-card-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.total-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #22c55e;
}

/* Players List */
.bet-card-players {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.bet-card-players::-webkit-scrollbar {
    width: 4px;
}

.bet-card-players::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2px;
}

.bet-card-players::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.3);
    border-radius: 2px;
}

.bet-card-players::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.5);
}

.no-bets {
    text-align: center;
    padding: 1.5rem 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.player-bet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    transition: background 0.2s ease;
}

.player-bet:hover {
    background: rgba(255, 255, 255, 0.05);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.player-avatar {
    font-size: 1rem;
}

.player-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-amount {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .bets-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .bet-card-players {
        max-height: 150px;
    }
}