    /* Match Analytics - Flashscore Style - Ultra Compact Premium */

    .match-analytics-container {
        background: transparent;
        padding: 0;
        overflow: visible;
    }

    /* Live Indicator */
    .analytics-live-indicator {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        border-radius: 20px;
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
        animation: pulse 2s ease-in-out infinite;
    }

    .live-dot {
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        animation: blink 1.5s ease-in-out infinite;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.02); }
    }

    /* Loading Animation - Minimal */
    .analytics-loading {
        padding: 1.5rem;
        text-align: center;
        background: transparent;
    }

    .analytics-spinner {
        position: relative;
        width: 32px;
        height: 32px;
        margin: 0 auto 0.75rem;
    }

    .spinner-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid transparent;
        border-top-color: #667eea;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .spinner-ring:nth-child(1) {
        border-top-color: #667eea;
    }

    .spinner-ring:nth-child(2) {
        border-top-color: #764ba2;
        width: 75%;
        height: 75%;
        top: 12.5%;
        left: 12.5%;
    }

    .spinner-ring:nth-child(3) {
        border-top-color: #f093fb;
        width: 50%;
        height: 50%;
        top: 25%;
        left: 25%;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .loading-text {
        color: #667eea;
        font-weight: 500;
        font-size: 0.813rem;
        margin: 0;
    }

    /* Section Styles - Flashscore Compact */
    .analytics-section {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid #e9ecef;
        background: #ffffff;
    }

    .analytics-section:last-child {
        border-bottom: none;
    }

    .analytics-section:first-child {
        padding-top: 1rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }

    .section-icon-wrapper {
        width: 32px;
        height: 32px;
        background: #667eea;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .section-title-wrapper {
        flex: 1;
    }

    .section-title {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        color: #2c3e50;
        line-height: 1.2;
    }

    .section-description {
        display: none; /* Hide description for compactness */
    }

    /* PPDA Styles - Flashscore Style */
    .ppda-comparison {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    @media (max-width: 768px) {
        .ppda-comparison {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }
    }

    .ppda-team-card {
        background: #ffffff;
        border-radius: 6px;
        padding: 0.875rem;
        border: 1px solid #e9ecef;
        transition: all 0.2s;
    }

    .ppda-team-card:hover {
        border-color: #667eea;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
    }

    .team-header-premium {
        margin-bottom: 0.625rem;
    }

    .team-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .team-name {
        font-weight: 600;
        font-size: 0.813rem;
        color: #2c3e50;
    }

    .ppda-badge-premium {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
    }

    .ppda-badge-green {
        background: #27ae60;
    }

    .ppda-badge-yellow {
        background: #f39c12;
    }

    .ppda-badge-red {
        background: #e74c3c;
    }

    .ppda-value-wrapper {
        text-align: center;
        margin-bottom: 0.625rem;
    }

    .ppda-value-large {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
        color: #2c3e50;
        margin-bottom: 0.25rem;
    }

    .ppda-label-premium {
        font-size: 0.688rem;
        color: #6c757d;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .ppda-bar-premium {
        width: 100%;
        height: 20px;
        background: #f1f3f5;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .ppda-fill-premium {
        height: 100%;
        border-radius: 10px;
        transition: width 0.6s ease;
        position: relative;
    }

    .ppda-fill-green {
        background: #27ae60;
    }

    .ppda-fill-yellow {
        background: #f39c12;
    }

    .ppda-fill-red {
        background: #e74c3c;
    }

    .ppda-bar-label {
        position: absolute;
        top: -16px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        font-size: 0.625rem;
        color: #95a5a6;
        font-weight: 500;
    }

    .ppda-details-premium {
        margin-top: 0.625rem;
        padding-top: 0.625rem;
        border-top: 1px solid #e9ecef;
    }

    .detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .detail-card {
        background: #f8f9fa;
        border-radius: 4px;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid #e9ecef;
    }

    .detail-card:hover {
        background: #e9ecef;
    }

    .detail-icon {
        font-size: 1.125rem;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #667eea;
        border-radius: 4px;
        flex-shrink: 0;
        color: white;
    }

    .detail-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }

    .detail-label {
        font-size: 0.688rem;
        color: #6c757d;
        font-weight: 500;
    }

    .detail-value {
        font-size: 0.938rem;
        font-weight: 600;
        color: #2c3e50;
    }

    .detail-breakdown-premium {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 4px;
    }

    .breakdown-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.125rem;
    }

    .breakdown-label {
        font-size: 0.625rem;
        color: #6c757d;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.2px;
    }

    .breakdown-value {
        font-size: 0.875rem;
        font-weight: 600;
        color: #667eea;
    }

    .ppda-comparison-info-premium {
        margin-top: 0.625rem;
        padding: 0.625rem;
        background: #e8f5e9;
        border-left: 3px solid #27ae60;
        border-radius: 4px;
    }

    .comparison-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #2c3e50;
    }

    .comparison-badge i {
        color: #27ae60;
        font-size: 0.875rem;
    }

    .comparison-text {
        margin: 0;
        font-weight: 500;
        font-size: 0.813rem;
    }

    /* Heat Map Styles - Flashscore Style */
    .heatmap-comparison {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    @media (max-width: 768px) {
        .heatmap-comparison {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }
    }

    .heatmap-team-card {
        background: #ffffff;
        border-radius: 6px;
        padding: 0.875rem;
        border: 1px solid #e9ecef;
        transition: all 0.2s;
    }

    .heatmap-team-card:hover {
        border-color: #f093fb;
        box-shadow: 0 2px 8px rgba(240, 147, 251, 0.08);
    }

    .heatmap-icon-badge {
        font-size: 1.125rem;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f093fb;
        border-radius: 4px;
        color: white;
    }

    /* Futsal Field Heat Map - Horizontal */
    .heatmap-field-container {
        margin: 1rem 0;
    }

.futsal-field {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 2 / 1; /* Футзальное поле 40x20 метров (2:1) */
    min-height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25), 
                inset 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Goals */
.field-goal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 1);
    z-index: 3;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

    .field-goal-left {
        left: 0;
        border-radius: 0 3px 3px 0;
    }

    .field-goal-right {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    /* Field Lines - Only center line */
    .field-line {
        position: absolute;
        background: rgba(255, 255, 255, 0.4);
        z-index: 1;
    }

.field-center-line {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

    /* Hide other lines */
    .field-penalty-left,
    .field-penalty-right,
    .field-corner-top-left,
    .field-corner-top-right,
    .field-corner-bottom-left,
    .field-corner-bottom-right {
        display: none;
    }

/* Center Circle */
.field-center-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.field-center-circle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

/* Field Zones - Premium Heat Map with gradient colors */
.field-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    background: rgba(52, 152, 219, 0.15); /* Default blue (cold) */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.field-zone-attack {
    left: 0;
    width: 33.33%;
    border-radius: 0 0 0 6px;
}

.field-zone-midfield {
    left: 33.33%;
    width: 33.33%;
}

.field-zone-defense {
    right: 0;
    width: 33.33%;
    border-radius: 0 0 6px 0;
}

/* Premium Heat Map Color Scale - Cold to Hot */
/* Very Low Activity (0-15%) - Blue/Cyan */
.field-zone.activity-very-low {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.2) 0%, 
        rgba(46, 134, 193, 0.25) 100%) !important;
    box-shadow: inset 0 0 25px rgba(52, 152, 219, 0.2);
}

/* Low Activity (15-30%) - Green/Teal */
.field-zone.activity-low {
    background: linear-gradient(135deg, 
        rgba(39, 174, 96, 0.25) 0%, 
        rgba(46, 213, 115, 0.3) 100%) !important;
    box-shadow: inset 0 0 25px rgba(39, 174, 96, 0.2);
}

/* Medium Activity (30-50%) - Yellow/Orange */
.field-zone.activity-medium {
    background: linear-gradient(135deg, 
        rgba(241, 196, 15, 0.35) 0%, 
        rgba(243, 156, 18, 0.4) 100%) !important;
    box-shadow: inset 0 0 30px rgba(243, 156, 18, 0.25);
}

/* High Activity (50-70%) - Orange/Red */
.field-zone.activity-high {
    background: linear-gradient(135deg, 
        rgba(243, 156, 18, 0.45) 0%, 
        rgba(231, 76, 60, 0.5) 100%) !important;
    box-shadow: inset 0 0 35px rgba(231, 76, 60, 0.3);
}

/* Very High Activity (70%+) - Red/Dark Red */
.field-zone.activity-very-high {
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.55) 0%, 
        rgba(192, 57, 43, 0.6) 100%) !important;
    box-shadow: inset 0 0 40px rgba(192, 57, 43, 0.35);
}

.zone-label-field {
    font-size: 0.688rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.zone-percentage-field {
    font-size: 1.15rem;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

    /* Field Stats */
    .field-stats {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-around;
        padding: 0.4rem;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(3px);
        z-index: 3;
    }

    .field-stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.1rem;
    }

    .field-stat-item .stat-label {
        font-size: 0.563rem;
        color: rgba(255, 255, 255, 0.85);
        text-transform: uppercase;
        letter-spacing: 0.2px;
    }

    .field-stat-item .stat-value {
        font-size: 0.813rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .heatmap-interpretation-premium {
        margin-top: 0.75rem;
        padding: 0.625rem;
        background: #f8f9fa;
        border-radius: 4px;
        border-left: 3px solid #667eea;
    }

    .interpretation-badge {
        display: flex;
        align-items: center;
    }

    .interpretation-text {
        margin: 0;
        color: #2c3e50;
        font-weight: 500;
        font-size: 0.813rem;
        line-height: 1.4;
    }

    /* Error Styles - Minimal */
    .analytics-error {
        padding: 1.5rem;
        text-align: center;
        background: transparent;
    }

    .error-message-premium {
        max-width: 500px;
        margin: 0 auto;
    }

    .error-icon-wrapper {
        width: 48px;
        height: 48px;
        margin: 0 auto 0.75rem;
        background: #fee;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .error-icon-wrapper i {
        font-size: 1.5rem;
        color: #e74c3c;
    }

    .error-text {
        margin: 0;
        font-size: 0.813rem;
        color: #2c3e50;
        font-weight: 500;
        line-height: 1.5;
    }

    /* Responsive - Ultra Compact */
    @media (max-width: 768px) {
        .analytics-section {
            padding: 0.875rem 1rem;
        }
        
        .section-header {
            gap: 0.5rem;
        }
        
        .section-icon-wrapper {
            width: 28px;
            height: 28px;
            font-size: 0.813rem;
        }
        
        .section-title {
            font-size: 0.938rem;
        }
        
        .ppda-value-large {
            font-size: 1.75rem;
        }
        
        .ppda-team-card,
        .heatmap-team-card {
            padding: 0.75rem;
        }
        
        .detail-grid {
            grid-template-columns: 1fr;
        }
        
        .futsal-field {
            max-width: 100%;
            min-height: 85px;
            aspect-ratio: 2 / 1;
        }
        
        .field-goal {
            height: 24px;
            width: 4px;
        }
        
        .field-center-circle {
            width: 40px;
            height: 40px;
        }
        
        .zone-label-field {
            font-size: 0.625rem;
        }
        
        .zone-percentage-field {
            font-size: 0.938rem;
        }
        
        .field-stats {
            padding: 0.3rem;
        }
        
        .field-stat-item .stat-label {
            font-size: 0.5rem;
        }
        
        .field-stat-item .stat-value {
            font-size: 0.688rem;
        }
    }

    @media (max-width: 576px) {
        .analytics-section {
            padding: 0.75rem;
        }
        
        .ppda-value-large {
            font-size: 1.5rem;
        }
        
        .section-title {
            font-size: 0.875rem;
        }
        
        .futsal-field {
            max-width: 100%;
            min-height: 70px;
            aspect-ratio: 2 / 1;
        }
        
        .field-goal {
            height: 20px;
            width: 3px;
        }
        
        .field-center-circle {
            width: 32px;
            height: 32px;
        }
        
        .zone-label-field {
            font-size: 0.563rem;
        }
        
        .zone-percentage-field {
            font-size: 0.813rem;
        }
    }
