/* Remove only background color change on hover - keep all other hover effects */

.match-row:hover,
.match-card:hover,
.match-row.match-card:hover {
    /* Keep the same background as default state, preventing lighter color change */
    background: linear-gradient(135deg, 
        rgba(26, 28, 37, 0.75) 0%, 
        rgba(22, 24, 34, 0.85) 50%,
        rgba(26, 28, 37, 0.8) 100%) !important;
    background-color: transparent !important;
}

/* All other hover effects (borders, shadows, transforms, etc.) will remain as defined in other CSS files */
