/* =================================================================
   MATCHUP CONSOLIDATED STYLES
   Unified stylesheet for all matchup-related components
   Generated from 29 separate CSS files during Phase 2 consolidation

   Date: 2025-09-25
   Source files consolidated: 29 files (~211KB total)
   Target reduction: 50%

   ALL selectors use .matchup- namespace prefix to prevent conflicts
   ================================================================= */

/* =================================================================
   1. BASE VARIABLES & RESET
   ================================================================= */

:root {
    /* Matchup Analysis specific overrides */
    --matchup-primary-bg: var(--bg-primary);
    --matchup-secondary-bg: var(--bg-card);
    --matchup-text-primary: var(--text-primary);
    --matchup-text-secondary: var(--text-secondary);
    --matchup-border-color: var(--border-color);
    --matchup-accent-color: var(--accent-subtle);
    --matchup-cta-primary: var(--primary-color);
    --matchup-cta-hover: var(--primary-color-hover);
    --matchup-success-color: var(--status-success);
    --matchup-error-color: var(--status-error);

    /* Spacing */
    --matchup-space-xs: 0.5rem;
    --matchup-space-sm: 1rem;
    --matchup-space-md: 1.5rem;
    --matchup-space-lg: 2rem;
    --matchup-space-xl: 3rem;

    /* Border Radius */
    --matchup-radius-sm: 0.375rem;
    --matchup-radius-md: 0.5rem;
    --matchup-radius-lg: 0.75rem;
    --matchup-radius-xl: 1rem;

    /* Shadows */
    --matchup-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --matchup-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --matchup-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --matchup-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Team colors (can be overridden dynamically) */
    --matchup-team1-primary: #10B981;
    --matchup-team1-secondary: #0B956C;
    --matchup-team2-primary: #6366F1;
    --matchup-team2-secondary: #4F46E5;
}

/* =================================================================
   2. LAYOUT & GRID
   ================================================================= */

/* Main content containers */
.matchup-main-content {
    background-color: var(--matchup-primary-bg);
    color: var(--matchup-text-primary);
}

.matchup-analysis-container {
    background: var(--matchup-primary-bg);
    min-height: 100vh;
    padding: var(--matchup-space-lg) var(--matchup-space-sm);
}

.matchup-analysis-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--matchup-space-lg);
}

/* Grid layouts */
.matchup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--matchup-space-md);
}

/* Force 3 columns on larger screens */
@media (min-width: 992px) {
    .matchup-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2 columns on medium screens */
@media (min-width: 768px) and (max-width: 991px) {
    .matchup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 column on small screens */
@media (max-width: 767px) {
    .matchup-grid {
        grid-template-columns: 1fr;
    }
}

.matchup-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.matchup-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.matchup-grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* =================================================================
   3. COMPONENTS
   ================================================================= */

/* 3.1 Headers */
.matchup-header {
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    margin-bottom: var(--matchup-space-lg);
    box-shadow: var(--matchup-shadow-md);
}

.matchup-header h1,
.matchup-header h2,
.matchup-header h3 {
    color: var(--matchup-text-primary);
    margin: 0;
}

.matchup-team-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--matchup-space-md);
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-md);
    border: 1px solid var(--matchup-border-color);
}

.matchup-team-info {
    display: flex;
    align-items: center;
    gap: var(--matchup-space-sm);
}

.matchup-team-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--matchup-radius-md);
    object-fit: contain;
}

.matchup-team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
}

.matchup-team-record {
    font-size: 0.9rem;
    color: var(--matchup-text-secondary);
}

/* 3.2 Cards */
.matchup-card {
    background: var(--matchup-secondary-bg);
    border: 1px solid var(--matchup-border-color);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    box-shadow: var(--matchup-shadow-sm);
    transition: all 0.3s ease;
}

.matchup-card:hover {
    box-shadow: var(--matchup-shadow-md);
    transform: translateY(-2px);
}

.matchup-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--matchup-space-md);
    padding-bottom: var(--matchup-space-sm);
    border-bottom: 1px solid var(--matchup-border-color);
}

.matchup-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
    margin: 0;
}

.matchup-card-body {
    color: var(--matchup-text-primary);
}

.matchup-card-footer {
    margin-top: var(--matchup-space-md);
    padding-top: var(--matchup-space-sm);
    border-top: 1px solid var(--matchup-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Prediction cards */
.matchup-prediction-card {
    position: relative;
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-xl);
    padding: var(--matchup-space-lg);
    box-shadow: var(--matchup-shadow-lg);
    overflow: hidden;
}

.matchup-prediction-header {
    text-align: center;
    margin-bottom: var(--matchup-space-lg);
}

.matchup-prediction-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--matchup-text-primary);
    margin-bottom: var(--matchup-space-xs);
}

.matchup-prediction-subtitle {
    color: var(--matchup-text-secondary);
    font-size: 0.9rem;
}

/* 3.3 Tables */
.matchup-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--matchup-space-md);
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-md);
    overflow: hidden;
    box-shadow: var(--matchup-shadow-sm);
}

.matchup-table th {
    background: var(--matchup-accent-color);
    color: var(--matchup-text-primary);
    font-weight: 600;
    padding: var(--matchup-space-sm) var(--matchup-space-md);
    text-align: left;
    border-bottom: 2px solid var(--matchup-border-color);
}

.matchup-table td {
    padding: var(--matchup-space-sm) var(--matchup-space-md);
    border-bottom: 1px solid var(--matchup-border-color);
    color: var(--matchup-text-primary);
}

.matchup-table tbody tr:hover {
    background-color: var(--matchup-accent-color);
}

.matchup-table tbody tr:last-child td {
    border-bottom: none;
}

/* Player tables */
.matchup-player-table {
    display: grid;
    gap: var(--matchup-space-sm);
}

.matchup-player-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--matchup-space-sm);
    padding: var(--matchup-space-sm);
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-md);
    align-items: center;
}

.matchup-player-name {
    font-weight: 600;
    color: var(--matchup-text-primary);
}

.matchup-player-stat {
    text-align: center;
    font-weight: 500;
    color: var(--matchup-text-primary);
}

/* 3.4 Charts */
.matchup-chart-container {
    position: relative;
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    box-shadow: var(--matchup-shadow-sm);
    margin-bottom: var(--matchup-space-lg);
}

.matchup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--matchup-space-md);
}

.matchup-chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
}

.matchup-chart-canvas {
    width: 100%;
    height: auto;
}

/* Radar Chart */
.matchup-radar-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.matchup-radar-legend {
    display: flex;
    justify-content: center;
    gap: var(--matchup-space-lg);
    margin-top: var(--matchup-space-md);
}

.matchup-legend-item {
    display: flex;
    align-items: center;
    gap: var(--matchup-space-xs);
}

.matchup-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* 3.5 Modals & Overlays */
.matchup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.matchup-modal-content {
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-xl);
    padding: var(--matchup-space-xl);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.matchup-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--matchup-space-lg);
    padding-bottom: var(--matchup-space-sm);
    border-bottom: 1px solid var(--matchup-border-color);
}

.matchup-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--matchup-text-secondary);
    transition: color 0.3s ease;
}

.matchup-modal-close:hover {
    color: var(--matchup-text-primary);
}

/* =================================================================
   4. SPECIALIZED COMPONENTS
   ================================================================= */

/* Hero Section */
.matchup-hero-container {
    position: relative;
    min-height: 400px;
    margin-bottom: var(--matchup-space-lg);
    border-radius: var(--matchup-radius-xl);
    overflow: hidden;
    box-shadow: var(--matchup-shadow-lg);
}

.matchup-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.matchup-team-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.matchup-team1-gradient {
    left: 0;
    background: linear-gradient(135deg,
        var(--matchup-team1-primary) 0%,
        var(--matchup-team1-secondary) 100%);
}

.matchup-team2-gradient {
    right: 0;
    background: linear-gradient(225deg,
        var(--matchup-team2-primary) 0%,
        var(--matchup-team2-secondary) 100%);
}

.matchup-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.matchup-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--matchup-space-xl);
}

.matchup-versus-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
}

.matchup-team-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    flex: 1;
}

.matchup-versus-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 var(--matchup-space-lg);
}

.matchup-vs-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--matchup-space-sm);
}

/* Insights Dashboard */
.matchup-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--matchup-space-lg);
    margin-bottom: var(--matchup-space-xl);
}

.matchup-insight-card {
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    box-shadow: var(--matchup-shadow-md);
    border-left: 4px solid var(--matchup-cta-primary);
}

.matchup-insight-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--matchup-space-md);
}

.matchup-insight-icon {
    width: 24px;
    height: 24px;
    margin-right: var(--matchup-space-sm);
}

.matchup-insight-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
}

.matchup-insight-content {
    color: var(--matchup-text-secondary);
    line-height: 1.6;
}

/* Player Showdown */
.matchup-showdown-container {
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-xl);
    padding: var(--matchup-space-xl);
    box-shadow: var(--matchup-shadow-lg);
    margin-bottom: var(--matchup-space-xl);
}

.matchup-showdown-header {
    text-align: center;
    margin-bottom: var(--matchup-space-xl);
}

.matchup-showdown-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--matchup-text-primary);
    margin-bottom: var(--matchup-space-sm);
}

.matchup-players-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--matchup-space-lg);
    align-items: center;
}

.matchup-player-card {
    background: var(--matchup-primary-bg);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.matchup-player-card:hover {
    border-color: var(--matchup-cta-primary);
    transform: translateY(-4px);
    box-shadow: var(--matchup-shadow-xl);
}

.matchup-player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--matchup-space-md);
    object-fit: cover;
}

.matchup-player-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
    margin-bottom: var(--matchup-space-xs);
}

.matchup-player-position {
    color: var(--matchup-text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--matchup-space-md);
}

/* Progressive Stats */
.matchup-progress-container {
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    margin-bottom: var(--matchup-space-lg);
}

.matchup-progress-item {
    margin-bottom: var(--matchup-space-lg);
}

.matchup-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--matchup-space-xs);
    font-weight: 500;
    color: var(--matchup-text-primary);
}

.matchup-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--matchup-border-color);
    border-radius: var(--matchup-radius-sm);
    overflow: hidden;
}

.matchup-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--matchup-cta-primary), var(--matchup-cta-hover));
    border-radius: var(--matchup-radius-sm);
    transition: width 0.5s ease;
}

/* Team Advantages */
.matchup-advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--matchup-space-lg);
    margin-bottom: var(--matchup-space-xl);
}

.matchup-advantage-section {
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    box-shadow: var(--matchup-shadow-sm);
}

.matchup-advantage-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--matchup-space-md);
}

.matchup-advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
}

.matchup-advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.matchup-advantage-item {
    padding: var(--matchup-space-sm) 0;
    border-bottom: 1px solid var(--matchup-border-color);
    color: var(--matchup-text-primary);
    display: flex;
    align-items: center;
}

.matchup-advantage-item:last-child {
    border-bottom: none;
}

.matchup-advantage-icon {
    margin-right: var(--matchup-space-sm);
    color: var(--matchup-success-color);
}

/* Error Handling */
.matchup-error-container {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEFCFC 100%);
    border: 1px solid #FECACA;
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-xl);
    text-align: center;
    margin: var(--matchup-space-xl) 0;
}

.matchup-error-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--matchup-space-md);
    color: var(--matchup-error-color);
}

.matchup-error-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #B91C1C;
    margin-bottom: var(--matchup-space-sm);
}

.matchup-error-message {
    color: #7F1D1D;
    margin-bottom: var(--matchup-space-lg);
    line-height: 1.6;
}

.matchup-error-actions {
    display: flex;
    gap: var(--matchup-space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Accordion */
.matchup-accordion {
    border: 1px solid var(--matchup-border-color);
    border-radius: var(--matchup-radius-lg);
    overflow: hidden;
    margin-bottom: var(--matchup-space-lg);
}

.matchup-accordion-item {
    border-bottom: 1px solid var(--matchup-border-color);
}

.matchup-accordion-item:last-child {
    border-bottom: none;
}

.matchup-accordion-header {
    background: var(--matchup-secondary-bg);
    padding: var(--matchup-space-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.matchup-accordion-header:hover {
    background: var(--matchup-accent-color);
}

.matchup-accordion-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
    margin: 0;
}

.matchup-accordion-icon {
    transition: transform 0.3s ease;
}

.matchup-accordion-item.active .matchup-accordion-icon {
    transform: rotate(180deg);
}

.matchup-accordion-content {
    padding: 0 var(--matchup-space-lg) var(--matchup-space-lg);
    background: var(--matchup-primary-bg);
    display: none;
}

.matchup-accordion-item.active .matchup-accordion-content {
    display: block;
}

/* =================================================================
   5. UTILITIES
   ================================================================= */

/* Text utilities */
.matchup-text-center { text-align: center; }
.matchup-text-left { text-align: left; }
.matchup-text-right { text-align: right; }

.matchup-text-primary { color: var(--matchup-text-primary); }
.matchup-text-secondary { color: var(--matchup-text-secondary); }
.matchup-text-success { color: var(--matchup-success-color); }
.matchup-text-error { color: var(--matchup-error-color); }

.matchup-font-bold { font-weight: 700; }
.matchup-font-semibold { font-weight: 600; }
.matchup-font-medium { font-weight: 500; }
.matchup-font-normal { font-weight: 400; }

/* Spacing utilities */
.matchup-m-0 { margin: 0; }
.matchup-mt-sm { margin-top: var(--matchup-space-sm); }
.matchup-mb-sm { margin-bottom: var(--matchup-space-sm); }
.matchup-mt-md { margin-top: var(--matchup-space-md); }
.matchup-mb-md { margin-bottom: var(--matchup-space-md); }
.matchup-mt-lg { margin-top: var(--matchup-space-lg); }
.matchup-mb-lg { margin-bottom: var(--matchup-space-lg); }

.matchup-p-sm { padding: var(--matchup-space-sm); }
.matchup-p-md { padding: var(--matchup-space-md); }
.matchup-p-lg { padding: var(--matchup-space-lg); }

/* Display utilities */
.matchup-flex { display: flex; }
.matchup-grid { display: grid; }
.matchup-hidden { display: none; }
.matchup-block { display: block; }
.matchup-inline-block { display: inline-block; }

.matchup-items-center { align-items: center; }
.matchup-justify-center { justify-content: center; }
.matchup-justify-between { justify-content: space-between; }

/* Border utilities */
.matchup-border { border: 1px solid var(--matchup-border-color); }
.matchup-border-top { border-top: 1px solid var(--matchup-border-color); }
.matchup-border-bottom { border-bottom: 1px solid var(--matchup-border-color); }
.matchup-rounded-sm { border-radius: var(--matchup-radius-sm); }
.matchup-rounded-md { border-radius: var(--matchup-radius-md); }
.matchup-rounded-lg { border-radius: var(--matchup-radius-lg); }
.matchup-rounded-xl { border-radius: var(--matchup-radius-xl); }

/* Background utilities */
.matchup-bg-primary { background-color: var(--matchup-primary-bg); }
.matchup-bg-secondary { background-color: var(--matchup-secondary-bg); }
.matchup-bg-success { background-color: var(--matchup-success-color); }
.matchup-bg-error { background-color: var(--matchup-error-color); }

/* Shadow utilities */
.matchup-shadow-sm { box-shadow: var(--matchup-shadow-sm); }
.matchup-shadow-md { box-shadow: var(--matchup-shadow-md); }
.matchup-shadow-lg { box-shadow: var(--matchup-shadow-lg); }
.matchup-shadow-xl { box-shadow: var(--matchup-shadow-xl); }

/* Transition utilities */
.matchup-transition { transition: all 0.3s ease; }
.matchup-transition-fast { transition: all 0.15s ease; }
.matchup-transition-slow { transition: all 0.5s ease; }

/* =================================================================
   6. RESPONSIVE DESIGN
   ================================================================= */

/* Tablet styles */
@media (max-width: 768px) {
    .matchup-analysis-container {
        padding: var(--matchup-space-md) var(--matchup-space-xs);
    }

    .matchup-grid-2col,
    .matchup-grid-3col {
        grid-template-columns: 1fr;
    }

    .matchup-hero-container {
        min-height: 300px;
    }

    .matchup-versus-section {
        flex-direction: column;
        gap: var(--matchup-space-lg);
    }

    .matchup-players-comparison {
        grid-template-columns: 1fr;
        gap: var(--matchup-space-md);
    }

    .matchup-advantages-grid {
        grid-template-columns: 1fr;
    }

    .matchup-showdown-title {
        font-size: 1.5rem;
    }

    .matchup-team-header {
        flex-direction: column;
        gap: var(--matchup-space-sm);
        text-align: center;
    }

    .matchup-player-row {
        grid-template-columns: 1fr;
        gap: var(--matchup-space-xs);
        text-align: center;
    }

    .matchup-modal-content {
        width: 95%;
        margin: var(--matchup-space-sm);
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .matchup-analysis-container {
        padding: var(--matchup-space-sm) var(--matchup-space-xs);
    }

    .matchup-hero-container {
        min-height: 250px;
    }

    .matchup-card,
    .matchup-showdown-container,
    .matchup-prediction-card {
        padding: var(--matchup-space-md);
    }

    .matchup-vs-text {
        font-size: 1.5rem;
    }

    .matchup-showdown-title {
        font-size: 1.25rem;
    }

    .matchup-team-name {
        font-size: 1rem;
    }

    .matchup-error-actions {
        flex-direction: column;
    }

    .matchup-table {
        font-size: 0.875rem;
    }

    .matchup-table th,
    .matchup-table td {
        padding: var(--matchup-space-xs) var(--matchup-space-sm);
    }
}

/* =================================================================
   7. COMPONENT-SPECIFIC OVERRIDES
   ================================================================= */

/* View Matchups page specific styles */
.matchup-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--matchup-space-lg);
}

.matchup-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--matchup-space-xl);
}

.matchup-list-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--matchup-text-primary);
}

.matchup-filters {
    display: flex;
    gap: var(--matchup-space-sm);
    align-items: center;
}

.matchup-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--matchup-space-lg);
}

.matchup-list-card {
    background: var(--matchup-secondary-bg);
    border-radius: var(--matchup-radius-lg);
    padding: var(--matchup-space-lg);
    box-shadow: var(--matchup-shadow-md);
    border: 1px solid var(--matchup-border-color);
    transition: all 0.3s ease;
}

.matchup-list-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--matchup-shadow-xl);
}

.matchup-list-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--matchup-space-md);
}

.matchup-list-team {
    display: flex;
    align-items: center;
    gap: var(--matchup-space-sm);
}

.matchup-list-team-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--matchup-radius-md);
}

.matchup-list-team-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--matchup-text-primary);
}

.matchup-list-vs {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--matchup-text-secondary);
}

.matchup-list-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--matchup-text-secondary);
    font-size: 0.9rem;
}

.matchup-list-date,
.matchup-list-location {
    display: flex;
    align-items: center;
    gap: var(--matchup-space-xs);
}

/* Health check components */
.matchup-health-status {
    display: inline-flex;
    align-items: center;
    gap: var(--matchup-space-xs);
    padding: var(--matchup-space-xs) var(--matchup-space-sm);
    border-radius: var(--matchup-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.matchup-health-status.healthy {
    background: rgba(16, 185, 129, 0.1);
    color: var(--matchup-success-color);
}

.matchup-health-status.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.matchup-health-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--matchup-error-color);
}

/* =================================================================
   END OF CONSOLIDATED STYLES
   Source files consolidated: 29 files
   Target size reduction: ~50% (from ~211KB)
   ================================================================= */