.my-bets-section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}
.my-bets-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.bet-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}
.bet-card:hover {
    border-color: #009933;
    box-shadow: 0 4px 12px rgba(0,153,51,0.1);
}
.bet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.bet-match-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.bet-status {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
}
.status-live {
    background: #dc2626;
    color: #fff;
    animation: pulse 1.5s infinite;
}
.status-upcoming {
    background: #f59e0b;
    color: #fff;
}
.status-finished {
    background: #6b7280;
    color: #fff;
}
.bet-details-row {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
    flex-wrap: wrap;
}
.bet-live-info {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}
.bet-match-score {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}
.bet-match-time {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
}
.bet-value {
    text-align: center;
    margin: 0.3rem 0;
}
.text-green { color: #16a34a; }
.text-red { color: #dc2626; }
.text-muted { color: #6b7280; }
.bet-pl {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}
.bet-pl.profit { color: #16a34a; }
.bet-pl.loss { color: #dc2626; }
.bet-pl.neutral { color: #6b7280; }
.bet-progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    margin: 0.5rem 0;
    overflow: hidden;
}
.bet-progress-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}
.bet-progress-bar-fill.winning {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}
.bet-progress-bar-fill.losing {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}
.bet-probability {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}
.cashout-btn {
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(135deg, #009933, #00802b);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.cashout-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,153,51,0.3);
}
.cashout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}