@@ -469,7 +469,7 @@ func renderStatsMatchDetailsPanel(width, height int, details *api.MatchDetails,
469469 lines = append (lines , largeScore )
470470 } else {
471471 vsText := lipgloss .NewStyle ().
472- Foreground (lipgloss . Color ( "244" ) ).
472+ Foreground (neonDim ).
473473 Width (contentWidth ).
474474 Align (lipgloss .Center ).
475475 Render ("vs" )
@@ -516,19 +516,16 @@ func renderStatsMatchDetailsPanel(width, height int, details *api.MatchDetails,
516516 player = * g .Player
517517 }
518518 playerDetails := neonValueStyle .Render (player )
519- if g .Assist != nil && * g .Assist != "" {
520- playerDetails += neonDimStyle .Render (fmt .Sprintf (" (%s)" , * g .Assist ))
521- }
522519
523- // Check for replay link and add indicator
520+ // Check for replay link and create indicator
524521 replayURL := goalLinks .GetReplayURL (details .ID , g .Minute )
525522 replayIndicator := ""
526523 if replayURL != "" {
527- // Add clickable replay indicator with hyperlink
528- replayIndicator = " " + CreateGoalLinkDisplay ("" , replayURL )
524+ // Create clickable replay indicator with hyperlink
525+ replayIndicator = CreateGoalLinkDisplay ("" , replayURL )
529526 }
530527
531- goalContent := buildEventContent (playerDetails + replayIndicator , "●" , neonScoreStyle .Render ("GOAL" ), isHome )
528+ goalContent := buildEventContent (playerDetails , replayIndicator , "●" , neonScoreStyle .Render ("GOAL" ), isHome )
532529 goalLine := renderCenterAlignedEvent (fmt .Sprintf ("%d'" , g .Minute ), goalContent , isHome , contentWidth )
533530 lines = append (lines , goalLine )
534531 }
@@ -565,7 +562,7 @@ func renderStatsMatchDetailsPanel(width, height int, details *api.MatchDetails,
565562
566563 // Build card content with symbol+type adjacent to center time
567564 playerDetails := neonValueStyle .Render (player )
568- cardContent := buildEventContent (playerDetails , cardSymbol , cardStyle .Render ("CARD" ), isHome )
565+ cardContent := buildEventContent (playerDetails , "" , cardSymbol , cardStyle .Render ("CARD" ), isHome )
569566 cardLine := renderCenterAlignedEvent (fmt .Sprintf ("%d'" , card .Minute ), cardContent , isHome , contentWidth )
570567 lines = append (lines , cardLine )
571568 }
@@ -726,7 +723,7 @@ func renderStatComparison(label, homeVal, awayVal string, maxWidth int) string {
726723 }
727724 awayEmpty := halfBar - awayFilled
728725 awayBar := strings .Repeat ("▪" , awayFilled ) + strings .Repeat (" " , awayEmpty )
729- awayBarStyled := lipgloss .NewStyle ().Foreground (lipgloss . Color ( "240" ) ).Render (awayBar )
726+ awayBarStyled := lipgloss .NewStyle ().Foreground (neonGray ).Render (awayBar )
730727
731728 // Line 1: Label (centered via parent, no width constraint)
732729 labelStyle := lipgloss .NewStyle ().Foreground (neonDim )
0 commit comments