            .container-live {
            max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  padding-left: 12px;
  padding-right: 12px;
        }
     .live-bets-header {
            text-align: center;
            margin-bottom: 15px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .live-bets-title {
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin: 0;
        }
        
        .column-headers {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
            margin-bottom: 8px;
            background: rgba(15, 15, 25, 0.8);
            border-radius: 8px;
            font-size: 11px;
        }
        .column-headers:hover {
            cursor: pointer;
        }
        
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .header-label {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 10px;
        }
        
        .live-bets-container {
            padding: 0;
            max-height: 800px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--neon-purple) rgba(15, 15, 25, 0.8);
        }
        
        .live-bets-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .live-bets-container::-webkit-scrollbar-track {
            background: rgba(15, 15, 25, 0.6);
            border-radius: 3px;
        }
        
        .live-bets-container::-webkit-scrollbar-thumb {
            background: var(--neon-purple);
            border-radius: 3px;
        }
        
        .bet-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            margin-bottom: 8px;
            background: rgba(15, 15, 25, 0.4);
            border-radius: 8px;
            font-size: 12px;
            transition: all 0.2s ease;
        }
        
        .bet-item:hover {
            background: rgba(106, 61, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .bet-item:last-child {
            margin-bottom: 0;
        }
        
        .bet-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        
        .bet-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .profile-pic {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, rgba(106, 61, 255, 0.3), rgba(255, 255, 255, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 11px;
            color: white;
            flex-shrink: 0;
        }
        
        .username {
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .bet-amount {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            min-width: 50px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .multiplier-badge {
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 10px;
            min-width: 35px;
            text-align: center;
        }
        
        .multiplier-badge.x0 {
          background: rgba(107, 114, 128, 0.3);
          color: rgba(156, 163, 175, 0.9);
        }
        
        .multiplier-badge.x1 {
          background: rgba(234, 179, 8, 0.3);
          color: rgba(234, 179, 8, 0.9);
        }
        
        .multiplier-badge.x2 {
          background: rgba(249, 115, 22, 0.3);
          color: rgba(249, 115, 22, 0.9);
        }
        
        .multiplier-badge.x3 {
          background: rgba(239, 68, 68, 0.3);
          color: rgba(239, 68, 68, 0.9);
        }
        
        .multiplier-badge.x10 {
          background: rgba(219, 39, 119, 0.3);
          color: rgba(219, 39, 119, 0.9);
        }
        
        .multiplier-badge.x50 {
          background: rgba(236, 72, 153, 0.3);
          color: rgba(236, 72, 153, 0.95);
        }


        
        .payout {
            font-weight: 500;
            min-width: 70px;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 4px;
        }
        
        .payout.zero {
            color: rgba(156, 163, 175, 0.7);
        }
        
        .payout.positive {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .coin-icon {
            color: #f1c40f;
            font-size: 12px;
        }
        

        
        @media (max-width: 768px) {
            
            .bet-item {
                font-size: 11px;
                padding: 6px 10px;
            }
            
            .bet-right {
                gap: 10px;
            }
            
            .bet-amount, .multiplier, .payout {
                min-width: auto;
            }
        }
.bottom-ui-bar {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(106, 61, 255, 0.2);
  color: #ccc;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 12px 12px;
}

.left-icons span {
  margin-right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.right-label {
  font-size: 13px;
  color: #999;
}
.live-bets-container {
  max-height: 1000px; 
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.live-bets-container.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}