import React, { useState } from 'react'; import { Search, Filter, BookOpen, Users, Target, TrendingUp, Award, Eye, ChevronRight, Star, Shield, Zap } from 'lucide-react'; export default function PhilosophyFrameworkExplorer() { const [selectedSchool, setSelectedSchool] = useState('all'); const [selectedPhilosophy, setSelectedPhilosophy] = useState(null); const [searchQuery, setSearchQuery] = useState(''); // 60 Philosophy Framework Database const philosophies = [ // Dutch School (6) { id: 1, name: 'Cruyff Total Football', coach: 'Johan Cruyff', school: 'Dutch', era: '1970s-1990s', weight: 1.45, icon: '🇳🇱', color: 'orange', description: 'Revolutionary total football with positional fluidity, pressing, and technical excellence', keyPrinciples: ['Positional interchange', 'High pressing', 'Technical mastery', 'Space creation'], examplePlayers: ['Johan Cruyff', 'Pep Guardiola', 'Xavi Hernández'], formations: ['4-3-3', '3-4-3'], attacking: 9.5, passing: 9.8, defensive: 8.5, physical: 7.5 }, { id: 2, name: 'Michels Total Football', coach: 'Rinus Michels', school: 'Dutch', era: '1960s-1980s', weight: 1.40, icon: '🇳🇱', color: 'orange', description: 'Original architect of total football emphasizing versatility and collective responsibility', keyPrinciples: ['Universal player', 'Collective pressing', 'Fluid positions', 'Attacking football'], examplePlayers: ['Johan Neeskens', 'Ruud Krol', 'Johnny Rep'], formations: ['4-3-3', '3-4-3'], attacking: 9.3, passing: 9.5, defensive: 8.7, physical: 8.2 }, { id: 3, name: 'Van Gaal Structured Possession', coach: 'Louis van Gaal', school: 'Dutch', era: '1990s-2010s', weight: 1.35, icon: '🇳🇱', color: 'orange', description: 'Disciplined possession football with strict positional play and tactical intelligence', keyPrinciples: ['Positional discipline', 'Ball retention', 'Vertical passing', 'Structured build-up'], examplePlayers: ['Clarence Seedorf', 'Edgar Davids', 'Patrick Kluivert'], formations: ['4-3-3', '3-5-2'], attacking: 8.8, passing: 9.6, defensive: 8.9, physical: 7.8 }, { id: 4, name: 'Kovács Technical Revolution', coach: 'Stefan Kovács', school: 'Dutch', era: '1970s', weight: 1.25, icon: '🇳🇱', color: 'orange', description: 'Ajax technical revolution emphasizing youth development and skillful play', keyPrinciples: ['Youth development', 'Technical skills', 'Attacking intent', 'Collective play'], examplePlayers: ['Johan Cruyff', 'Piet Keizer', 'Gerrie Mühren'], formations: ['4-3-3'], attacking: 9.2, passing: 9.3, defensive: 7.9, physical: 7.5 }, { id: 5, name: 'Hiddink Pragmatic Attack', coach: 'Guus Hiddink', school: 'Dutch', era: '1990s-2010s', weight: 1.20, icon: '🇳🇱', color: 'orange', description: 'Pragmatic attacking football balancing defensive solidity with offensive threat', keyPrinciples: ['Tactical flexibility', 'Counter-attacks', 'Defensive organization', 'Efficient pressing'], examplePlayers: ['Ruud van Nistelrooy', 'Rafael van der Vaart', 'Arjen Robben'], formations: ['4-4-2', '4-2-3-1'], attacking: 8.7, passing: 8.5, defensive: 8.8, physical: 8.5 }, { id: 6, name: 'Beenhakker Possession Pragmatism', coach: 'Leo Beenhakker', school: 'Dutch', era: '1980s-1990s', weight: 1.15, icon: '🇳🇱', color: 'orange', description: 'Possession-based pragmatism with emphasis on results and tactical adaptation', keyPrinciples: ['Ball possession', 'Result-oriented', 'Tactical adaptation', 'Wing play'], examplePlayers: ['Emilio Butragueño', 'Hugo Sánchez', 'Michel'], formations: ['4-4-2', '4-3-3'], attacking: 8.9, passing: 8.8, defensive: 8.3, physical: 8.0 }, // Spanish School (7) { id: 7, name: 'Guardiola Tiki-Taka', coach: 'Pep Guardiola', school: 'Spanish', era: '2008-Present', weight: 1.45, icon: '🇪🇸', color: 'red', description: 'Ultimate possession football with short passing, positional play, and defensive pressing', keyPrinciples: ['Tiki-taka passing', 'Positional superiority', 'High pressing', 'Ball dominance'], examplePlayers: ['Xavi', 'Andrés Iniesta', 'Sergio Busquets'], formations: ['4-3-3', '3-4-3'], attacking: 9.7, passing: 10.0, defensive: 8.8, physical: 7.3 }, { id: 8, name: 'Carniglia Attacking Verve', coach: 'Luis Carniglia', school: 'Spanish', era: '1950s-1960s', weight: 1.20, icon: '🇪🇸', color: 'red', description: 'Real Madrid attacking philosophy with emphasis on wing play and counter-attacks', keyPrinciples: ['Wing play', 'Fast transitions', 'Direct football', 'Individual brilliance'], examplePlayers: ['Alfredo Di Stéfano', 'Ferenc Puskás', 'Francisco Gento'], formations: ['4-2-4', '3-2-5'], attacking: 9.5, passing: 8.7, defensive: 7.5, physical: 8.3 }, { id: 9, name: 'Muñoz European Dominance', coach: 'Miguel Muñoz', school: 'Spanish', era: '1960s-1970s', weight: 1.30, icon: '🇪🇸', color: 'red', description: 'Real Madrid European dominance through balance and tactical sophistication', keyPrinciples: ['Tactical balance', 'European experience', 'Star integration', 'Winning mentality'], examplePlayers: ['Amancio Amaro', 'Ignacio Zoco', 'Pirri'], formations: ['4-4-2', '4-3-3'], attacking: 9.0, passing: 8.8, defensive: 8.6, physical: 8.4 }, { id: 10, name: 'Aragonés Spanish Evolution', coach: 'Luis Aragonés', school: 'Spanish', era: '2000s', weight: 1.25, icon: '🇪🇸', color: 'red', description: 'Foundation of modern Spanish football with possession and technical quality', keyPrinciples: ['Ball possession', 'Technical football', 'Collective strength', 'Pressing game'], examplePlayers: ['Xavi', 'Iniesta', 'David Villa'], formations: ['4-4-2', '4-5-1'], attacking: 8.9, passing: 9.4, defensive: 8.5, physical: 7.8 }, { id: 11, name: 'Villalonga Classic Madrid', coach: 'José Villalonga', school: 'Spanish', era: '1950s', weight: 1.15, icon: '🇪🇸', color: 'red', description: 'Classic Real Madrid style with attacking flair and individual genius', keyPrinciples: ['Attacking intent', 'Individual quality', 'Wing dominance', 'Direct play'], examplePlayers: ['Di Stéfano', 'Rial', 'Kopa'], formations: ['3-2-5', '4-2-4'], attacking: 9.4, passing: 8.5, defensive: 7.3, physical: 8.0 }, { id: 12, name: 'Emery Tactical Versatility', coach: 'Unai Emery', school: 'Spanish', era: '2010s-Present', weight: 1.10, icon: '🇪🇸', color: 'red', description: 'Tactical flexibility with emphasis on pressing, transitions, and set pieces', keyPrinciples: ['Tactical adaptation', 'High pressing', 'Set piece mastery', 'Counter-pressing'], examplePlayers: ['Carlos Bacca', 'Ivan Rakitić', 'Éver Banega'], formations: ['4-4-2', '4-2-3-1'], attacking: 8.6, passing: 8.7, defensive: 9.0, physical: 8.6 }, { id: 13, name: 'Pellegrini Balanced Attack', coach: 'Manuel Pellegrini', school: 'Spanish', era: '2000s-Present', weight: 1.12, icon: '🇪🇸', color: 'red', description: 'Balanced attacking football with tactical discipline and offensive freedom', keyPrinciples: ['Attacking balance', 'Wing play', 'Midfield control', 'Defensive stability'], examplePlayers: ['Sergio Agüero', 'David Silva', 'Yaya Touré'], formations: ['4-2-3-1', '4-4-2'], attacking: 9.1, passing: 8.9, defensive: 8.4, physical: 8.2 }, // Italian School (8) { id: 14, name: 'Herrera Catenaccio', coach: 'Helenio Herrera', school: 'Italian', era: '1960s', weight: 1.35, icon: '🇮🇹', color: 'blue', description: 'Revolutionary defensive system with sweeper, tight marking, and lethal counter-attacks', keyPrinciples: ['Defensive solidity', 'Sweeper system', 'Counter-attacks', 'Psychological warfare'], examplePlayers: ['Giacinto Facchetti', 'Sandro Mazzola', 'Luis Suárez'], formations: ['5-3-2', '1-4-3-2'], attacking: 7.8, passing: 8.2, defensive: 9.8, physical: 8.7 }, { id: 15, name: 'Rocco Total Defense', coach: 'Nereo Rocco', school: 'Italian', era: '1960s-1970s', weight: 1.30, icon: '🇮🇹', color: 'blue', description: 'Tactical mastery with emphasis on defensive organization and quick transitions', keyPrinciples: ['Defensive organization', 'Man-marking', 'Quick breaks', 'Physical strength'], examplePlayers: ['Gianni Rivera', 'Giovanni Trapattoni', 'Cesare Maldini'], formations: ['5-3-2', '4-4-2'], attacking: 7.5, passing: 8.0, defensive: 9.6, physical: 9.0 }, { id: 16, name: 'Bearzot Defensive Pragmatism', coach: 'Enzo Bearzot', school: 'Italian', era: '1970s-1980s', weight: 1.25, icon: '🇮🇹', color: 'blue', description: 'Pragmatic defensive football with emphasis on collective strength and discipline', keyPrinciples: ['Team unity', 'Defensive discipline', 'Counter-attacks', 'Mental strength'], examplePlayers: ['Paolo Rossi', 'Marco Tardelli', 'Gaetano Scirea'], formations: ['4-4-2', '5-3-2'], attacking: 7.9, passing: 8.3, defensive: 9.4, physical: 8.8 }, { id: 17, name: 'Lippi Tactical Brilliance', coach: 'Marcello Lippi', school: 'Italian', era: '1990s-2000s', weight: 1.28, icon: '🇮🇹', color: 'blue', description: 'Tactical sophistication with defensive excellence and efficient attacking', keyPrinciples: ['Tactical intelligence', 'Defensive mastery', 'Set pieces', 'Experience'], examplePlayers: ['Alessandro Del Piero', 'Zinedine Zidane', 'Fabio Cannavaro'], formations: ['4-4-2', '3-5-2'], attacking: 8.4, passing: 8.6, defensive: 9.5, physical: 8.9 }, { id: 18, name: 'Sacchi Pressing Revolution', coach: 'Arrigo Sacchi', school: 'Italian', era: '1980s-1990s', weight: 1.40, icon: '🇮🇹', color: 'blue', description: 'Revolutionary high pressing and zonal marking transforming Italian football', keyPrinciples: ['High pressing', 'Zonal marking', 'Collective movement', 'Defensive line'], examplePlayers: ['Marco van Basten', 'Ruud Gullit', 'Franco Baresi'], formations: ['4-4-2'], attacking: 9.2, passing: 9.0, defensive: 9.3, physical: 8.8 }, { id: 19, name: 'Trapattoni Defensive Mastery', coach: 'Giovanni Trapattoni', school: 'Italian', era: '1970s-2000s', weight: 1.32, icon: '🇮🇹', color: 'blue', description: 'Defensive perfectionism with tactical discipline and result-oriented approach', keyPrinciples: ['Defensive perfection', 'Tactical discipline', 'Counter-attacks', 'Mental toughness'], examplePlayers: ['Paolo Maldini', 'Alessandro Costacurta', 'Roberto Baggio'], formations: ['5-3-2', '4-4-2'], attacking: 7.7, passing: 8.4, defensive: 9.7, physical: 9.1 }, { id: 20, name: 'Carcano Classic Italian', coach: 'Vittorio Pozzo', school: 'Italian', era: '1930s-1940s', weight: 1.20, icon: '🇮🇹', color: 'blue', description: 'Foundation of Italian tactical football with organized defense and team spirit', keyPrinciples: ['Team organization', 'Defensive structure', 'National pride', 'Tactical discipline'], examplePlayers: ['Giuseppe Meazza', 'Silvio Piola', 'Giovanni Ferrari'], formations: ['2-3-5', '3-2-2-3'], attacking: 8.2, passing: 7.8, defensive: 8.9, physical: 8.5 }, { id: 21, name: 'Cesarini Attacking Italian', coach: 'Renato Cesarini', school: 'Italian', era: '1930s-1950s', weight: 1.18, icon: '🇮🇹', color: 'blue', description: 'Attacking variation of Italian football with creative flair', keyPrinciples: ['Attacking mindset', 'Creative play', 'Technical quality', 'Late goals'], examplePlayers: ['Giuseppe Meazza', 'Raimundo Orsi'], formations: ['2-3-5', '3-2-5'], attacking: 8.8, passing: 8.5, defensive: 7.9, physical: 8.0 }, // English School (8) { id: 22, name: 'Ferguson Winning Mentality', coach: 'Alex Ferguson', school: 'English', era: '1980s-2013', weight: 1.42, icon: '🏴', color: 'red', description: 'Relentless attacking football with mental strength and never-give-up attitude', keyPrinciples: ['Winning mentality', 'Wing play', 'Youth development', 'Fergie time'], examplePlayers: ['Cristiano Ronaldo', 'Roy Keane', 'Ryan Giggs'], formations: ['4-4-2', '4-4-1-1'], attacking: 9.3, passing: 8.7, defensive: 8.6, physical: 9.2 }, { id: 23, name: 'Busby Babes Philosophy', coach: 'Matt Busby', school: 'English', era: '1940s-1960s', weight: 1.35, icon: '🏴', color: 'red', description: 'Youth-focused attacking football with emphasis on entertainment and skill', keyPrinciples: ['Youth development', 'Attacking football', 'Entertainment', 'Technical skill'], examplePlayers: ['Bobby Charlton', 'George Best', 'Denis Law'], formations: ['4-2-4', '4-3-3'], attacking: 9.5, passing: 8.8, defensive: 7.8, physical: 8.3 }, { id: 24, name: 'Robson Battling Spirit', coach: 'Bobby Robson', school: 'English', era: '1980s-2000s', weight: 1.22, icon: '🏴', color: 'red', description: 'Passionate football with tactical intelligence and fighting spirit', keyPrinciples: ['Fighting spirit', 'Tactical awareness', 'Team unity', 'Versatility'], examplePlayers: ['Gary Lineker', 'Bryan Robson', 'Paul Gascoigne'], formations: ['4-4-2', '3-5-2'], attacking: 8.8, passing: 8.5, defensive: 8.7, physical: 9.0 }, { id: 25, name: 'Venables Technical English', coach: 'Terry Venables', school: 'English', era: '1980s-1990s', weight: 1.18, icon: '🏴', color: 'red', description: 'Technical approach to English football with continental influences', keyPrinciples: ['Technical football', 'Tactical flexibility', 'Continental style', 'Possession play'], examplePlayers: ['Paul Gascoigne', 'Alan Shearer', 'Teddy Sheringham'], formations: ['3-5-2', '4-5-1'], attacking: 8.6, passing: 8.9, defensive: 8.4, physical: 8.5 }, { id: 26, name: 'Winterbottom Foundation', coach: 'Walter Winterbottom', school: 'English', era: '1940s-1960s', weight: 1.15, icon: '🏴', color: 'red', description: 'Foundation of modern English football with tactical education', keyPrinciples: ['Tactical education', 'Technical development', 'Team organization', 'Physical preparation'], examplePlayers: ['Stanley Matthews', 'Tom Finney', 'Billy Wright'], formations: ['2-3-5', '4-2-4'], attacking: 8.5, passing: 8.2, defensive: 7.9, physical: 8.4 }, { id: 27, name: 'Shankly Liverpool Way', coach: 'Bill Shankly', school: 'English', era: '1950s-1970s', weight: 1.38, icon: '🏴', color: 'red', description: 'Liverpool philosophy with passing football, work ethic, and socialism', keyPrinciples: ['Passing game', 'Work ethic', 'Team unity', 'Attacking intent'], examplePlayers: ['Kevin Keegan', 'Ian Callaghan', 'Roger Hunt'], formations: ['4-3-3', '4-4-2'], attacking: 9.0, passing: 8.9, defensive: 8.5, physical: 8.9 }, { id: 28, name: 'Clough Psychological Mastery', coach: 'Brian Clough', school: 'English', era: '1960s-1990s', weight: 1.30, icon: '🏴', color: 'red', description: 'Psychological leadership with simple football philosophy and discipline', keyPrinciples: ['Psychological leadership', 'Simple football', 'Discipline', 'Counter-attacks'], examplePlayers: ['John Robertson', 'Trevor Francis', 'Tony Woodcock'], formations: ['4-4-2'], attacking: 8.7, passing: 8.6, defensive: 8.9, physical: 8.7 }, { id: 29, name: 'Paisley Liverpool Dynasty', coach: 'Bob Paisley', school: 'English', era: '1970s-1980s', weight: 1.37, icon: '🏴', color: 'red', description: 'Liverpool dynasty with European mastery and passing excellence', keyPrinciples: ['European success', 'Passing excellence', 'Team balance', 'Winning culture'], examplePlayers: ['Kenny Dalglish', 'Graeme Souness', 'Alan Hansen'], formations: ['4-4-2', '4-3-3'], attacking: 9.1, passing: 9.2, defensive: 8.8, physical: 8.8 }, // German School (6) { id: 30, name: 'Heynckes Clinical Efficiency', coach: 'Jupp Heynckes', school: 'German', era: '1980s-2010s', weight: 1.32, icon: '🇩🇪', color: 'yellow', description: 'German efficiency with tactical discipline and clinical finishing', keyPrinciples: ['Tactical discipline', 'Clinical finishing', 'Team harmony', 'Experience'], examplePlayers: ['Arjen Robben', 'Franck Ribéry', 'Bastian Schweinsteiger'], formations: ['4-2-3-1', '4-1-4-1'], attacking: 9.2, passing: 9.0, defensive: 9.1, physical: 8.7 }, { id: 31, name: 'Cramer Youth Development', coach: 'Dettmar Cramer', school: 'German', era: '1960s-1980s', weight: 1.20, icon: '🇩🇪', color: 'yellow', description: 'Foundation of German youth development and tactical education', keyPrinciples: ['Youth development', 'Tactical education', 'Technical training', 'Systematic approach'], examplePlayers: ['Franz Beckenbauer', 'Gerd Müller'], formations: ['4-2-4', '4-3-3'], attacking: 8.7, passing: 8.6, defensive: 8.5, physical: 8.6 }, { id: 32, name: 'Beckenbauer Libero System', coach: 'Franz Beckenbauer', school: 'German', era: '1980s-1990s', weight: 1.38, icon: '🇩🇪', color: 'yellow', description: 'Sweeper system with elegant build-up play and tactical intelligence', keyPrinciples: ['Libero system', 'Build-up play', 'Tactical intelligence', 'Elegance'], examplePlayers: ['Lothar Matthäus', 'Jürgen Klinsmann', 'Rudi Völler'], formations: ['5-3-2', '3-5-2'], attacking: 8.9, passing: 9.1, defensive: 9.3, physical: 8.5 }, { id: 33, name: 'Happel Austrian-German', coach: 'Ernst Happel', school: 'German', era: '1960s-1980s', weight: 1.28, icon: '🇩🇪', color: 'yellow', description: 'Austrian-German tactical brilliance with defensive solidity', keyPrinciples: ['Tactical brilliance', 'Defensive organization', 'Counter-attacks', 'Versatility'], examplePlayers: ['Ruud Krol', 'Johan Neeskens', 'Rob Rensenbrink'], formations: ['4-3-3', '5-3-2'], attacking: 8.6, passing: 8.7, defensive: 9.2, physical: 8.8 }, { id: 34, name: 'Herberger German Tradition', coach: 'Sepp Herberger', school: 'German', era: '1930s-1960s', weight: 1.25, icon: '🇩🇪', color: 'yellow', description: 'Foundation of German football tradition with discipline and organization', keyPrinciples: ['German discipline', 'Team organization', 'Physical strength', 'Mental toughness'], examplePlayers: ['Fritz Walter', 'Helmut Rahn', 'Horst Eckel'], formations: ['3-2-5', '4-2-4'], attacking: 8.5, passing: 8.3, defensive: 8.8, physical: 9.0 }, { id: 35, name: 'Hitzfeld Champions League Master', coach: 'Ottmar Hitzfeld', school: 'German', era: '1990s-2000s', weight: 1.34, icon: '🇩🇪', color: 'yellow', description: 'European mastery with tactical flexibility and winning mentality', keyPrinciples: ['European success', 'Tactical flexibility', 'Squad rotation', 'Big game mentality'], examplePlayers: ['Karl-Heinz Riedle', 'Matthias Sammer', 'Jürgen Kohler'], formations: ['4-4-2', '3-5-2'], attacking: 8.8, passing: 8.8, defensive: 9.0, physical: 8.9 }, // French School (5) { id: 36, name: 'Wenger Beautiful Football', coach: 'Arsène Wenger', school: 'French', era: '1980s-2010s', weight: 1.36, icon: '🇫🇷', color: 'blue', description: 'Beautiful attacking football with technical excellence and youth development', keyPrinciples: ['Technical excellence', 'Youth development', 'Attacking football', 'Scientific approach'], examplePlayers: ['Thierry Henry', 'Patrick Vieira', 'Dennis Bergkamp'], formations: ['4-4-2', '4-2-3-1'], attacking: 9.6, passing: 9.4, defensive: 8.3, physical: 8.0 }, { id: 37, name: 'Suaudeau Nantes School', coach: 'Jean-Claude Suaudeau', school: 'French', era: '1980s-1990s', weight: 1.18, icon: '🇫🇷', color: 'blue', description: 'French technical school with emphasis on youth and collective play', keyPrinciples: ['Youth academy', 'Technical play', 'Collective football', 'Possession'], examplePlayers: ['Didier Deschamps', 'Marcel Desailly', 'Christian Karembeu'], formations: ['4-3-3', '4-4-2'], attacking: 8.7, passing: 9.0, defensive: 8.4, physical: 8.2 }, { id: 38, name: 'Platini Creative Genius', coach: 'Michel Platini', school: 'French', era: '1980s-1990s', weight: 1.30, icon: '🇫🇷', color: 'blue', description: 'Creative football philosophy emphasizing individual brilliance and flair', keyPrinciples: ['Creative freedom', 'Individual brilliance', 'Attacking flair', 'Technical mastery'], examplePlayers: ['Michel Platini', 'Jean Tigana', 'Alain Giresse'], formations: ['4-4-2', '4-3-3'], attacking: 9.4, passing: 9.3, defensive: 7.9, physical: 7.8 }, { id: 39, name: 'Fontaine Goal Machine', coach: 'Just Fontaine', school: 'French', era: '1950s-1960s', weight: 1.15, icon: '🇫🇷', color: 'blue', description: 'Goal-scoring philosophy with emphasis on attacking football', keyPrinciples: ['Goal-scoring', 'Attacking intent', 'Direct football', 'Clinical finishing'], examplePlayers: ['Just Fontaine', 'Raymond Kopa', 'Roger Piantoni'], formations: ['4-2-4', '3-2-5'], attacking: 9.5, passing: 8.4, defensive: 7.5, physical: 8.3 }, { id: 40, name: 'Deschamps Pragmatic Success', coach: 'Didier Deschamps', school: 'French', era: '2010s-Present', weight: 1.28, icon: '🇫🇷', color: 'blue', description: 'Pragmatic approach balancing defensive solidity with attacking talent', keyPrinciples: ['Defensive solidity', 'Counter-attacks', 'Star management', 'Tournament success'], examplePlayers: ['Kylian Mbappé', 'N\'Golo Kanté', 'Antoine Griezmann'], formations: ['4-2-3-1', '4-3-3'], attacking: 9.0, passing: 8.7, defensive: 9.1, physical: 8.9 }, // South American School (7) { id: 41, name: 'Santana Brazilian Flair', coach: 'Telê Santana', school: 'South American', era: '1970s-1990s', weight: 1.40, icon: '🇧🇷', color: 'yellow', description: 'Beautiful Brazilian football with samba style and attacking artistry', keyPrinciples: ['Samba football', 'Attacking art', 'Individual skill', 'Joga Bonito'], examplePlayers: ['Zico', 'Sócrates', 'Falcão'], formations: ['4-2-2-2', '4-3-3'], attacking: 9.8, passing: 9.5, defensive: 7.8, physical: 7.9 }, { id: 42, name: 'Zagallo Winning Culture', coach: 'Mário Zagallo', school: 'South American', era: '1970s-1990s', weight: 1.33, icon: '🇧🇷', color: 'yellow', description: 'Brazilian winning mentality with tactical discipline and team unity', keyPrinciples: ['Winning culture', 'Team unity', 'Tactical discipline', 'Experience'], examplePlayers: ['Jairzinho', 'Rivellino', 'Tostão'], formations: ['4-3-3', '4-2-2-2'], attacking: 9.3, passing: 9.0, defensive: 8.5, physical: 8.6 }, { id: 43, name: 'Feola 1958 Revolution', coach: 'Vicente Feola', school: 'South American', era: '1950s-1960s', weight: 1.28, icon: '🇧🇷', color: 'yellow', description: 'Foundation of Brazilian World Cup success with attacking brilliance', keyPrinciples: ['Attacking brilliance', 'Star integration', 'Tactical innovation', 'World Cup success'], examplePlayers: ['Pelé', 'Garrincha', 'Didi'], formations: ['4-2-4'], attacking: 9.7, passing: 9.2, defensive: 7.9, physical: 8.4 }, { id: 44, name: 'Menotti La Nuestra', coach: 'César Menotti', school: 'South American', era: '1970s-1980s', weight: 1.38, icon: '🇦🇷', color: 'blue', description: 'Argentine romantic football emphasizing creativity, beauty, and collective play', keyPrinciples: ['Beautiful football', 'Creative freedom', 'Collective play', 'La Nuestra'], examplePlayers: ['Mario Kempes', 'Osvaldo Ardiles', 'Daniel Passarella'], formations: ['4-3-3', '4-2-3-1'], attacking: 9.5, passing: 9.4, defensive: 8.2, physical: 8.1 }, { id: 45, name: 'Bilardo Pragmatic Argentina', coach: 'Carlos Bilardo', school: 'South American', era: '1980s-1990s', weight: 1.32, icon: '🇦🇷', color: 'blue', description: 'Pragmatic winning football with tactical discipline and results focus', keyPrinciples: ['Winning mentality', 'Tactical discipline', 'Pragmatism', 'Maradona factor'], examplePlayers: ['Diego Maradona', 'Jorge Valdano', 'Jorge Burruchaga'], formations: ['3-5-2', '5-3-2'], attacking: 8.9, passing: 8.7, defensive: 9.0, physical: 8.9 }, { id: 46, name: 'Bielsa El Loco', coach: 'Marcelo Bielsa', school: 'South American', era: '1990s-Present', weight: 1.35, icon: '🇦🇷', color: 'blue', description: 'Intense pressing football with high energy, man-marking, and attacking aggression', keyPrinciples: ['High pressing', 'Man-marking', 'High intensity', 'Attacking aggression'], examplePlayers: ['Carlos Tevez', 'Javier Saviola', 'Juan Román Riquelme'], formations: ['3-3-3-1', '3-3-1-3'], attacking: 9.4, passing: 8.8, defensive: 8.7, physical: 9.5 }, { id: 47, name: 'Simeone Cholismo', coach: 'Diego Simeone', school: 'South American', era: '2010s-Present', weight: 1.30, icon: '🇦🇷', color: 'blue', description: 'Warrior mentality with defensive solidity, counter-attacks, and fighting spirit', keyPrinciples: ['Warrior mentality', 'Defensive solidity', 'Counter-attacks', 'Team sacrifice'], examplePlayers: ['Diego Godín', 'Koke', 'Antoine Griezmann'], formations: ['4-4-2', '4-4-1-1'], attacking: 8.3, passing: 8.4, defensive: 9.6, physical: 9.4 }, // Eastern European School (4) { id: 48, name: 'Lobanovskyi Scientific Football', coach: 'Valeriy Lobanovskyi', school: 'Eastern European', era: '1970s-2000s', weight: 1.40, icon: '🇺🇦', color: 'blue', description: 'Revolutionary scientific approach with data analysis and physical conditioning', keyPrinciples: ['Scientific approach', 'Data analysis', 'Physical conditioning', 'Collective pressing'], examplePlayers: ['Oleg Blokhin', 'Andriy Shevchenko', 'Serhiy Rebrov'], formations: ['4-4-2', '4-2-3-1'], attacking: 9.3, passing: 9.1, defensive: 9.0, physical: 9.3 }, { id: 49, name: 'Sebes Hungarian Revolution', coach: 'Gusztáv Sebes', school: 'Eastern European', era: '1950s', weight: 1.35, icon: '🇭🇺', color: 'red', description: 'Revolutionary Hungarian football with fluid positions and technical brilliance', keyPrinciples: ['Fluid positions', 'Technical brilliance', 'Deep-lying forward', 'Tactical innovation'], examplePlayers: ['Ferenc Puskás', 'Nándor Hidegkuti', 'Sándor Kocsis'], formations: ['3-2-3-2', '4-2-4'], attacking: 9.7, passing: 9.4, defensive: 8.3, physical: 8.5 }, { id: 50, name: 'Guttmann Father of Modern Football', coach: 'Béla Guttmann', school: 'Eastern European', era: '1950s-1960s', weight: 1.32, icon: '🇭🇺', color: 'red', description: 'Tactical pioneer with flexible systems and psychological insight', keyPrinciples: ['Tactical flexibility', 'Psychological warfare', 'European success', 'Pressing game'], examplePlayers: ['Eusébio', 'Mário Coluna', 'José Águas'], formations: ['4-2-4', '3-3-4'], attacking: 9.4, passing: 9.0, defensive: 8.5, physical: 8.7 }, { id: 51, name: 'Gorski Polish School', coach: 'Kazimierz Górski', school: 'Eastern European', era: '1970s', weight: 1.20, icon: '🇵🇱', color: 'red', description: 'Polish technical football with counter-attacking brilliance', keyPrinciples: ['Technical football', 'Counter-attacks', 'Wing play', 'Physical strength'], examplePlayers: ['Grzegorz Lato', 'Robert Gadocha', 'Kazimierz Deyna'], formations: ['4-2-4', '4-3-3'], attacking: 9.0, passing: 8.8, defensive: 8.4, physical: 8.8 }, // Modern Masters (9) { id: 52, name: 'Mourinho The Special One', coach: 'José Mourinho', school: 'Modern Masters', era: '2000s-Present', weight: 1.43, icon: '🌍', color: 'purple', description: 'Defensive solidity with counter-attacking brilliance and psychological mastery', keyPrinciples: ['Defensive organization', 'Counter-attacks', 'Psychological warfare', 'Winning mentality'], examplePlayers: ['Didier Drogba', 'Frank Lampard', 'John Terry'], formations: ['4-3-3', '4-2-3-1'], attacking: 8.7, passing: 8.6, defensive: 9.7, physical: 9.2 }, { id: 53, name: 'Klopp Gegenpressing', coach: 'Jürgen Klopp', school: 'Modern Masters', era: '2000s-Present', weight: 1.41, icon: '🌍', color: 'purple', description: 'High-intensity gegenpressing with emotional leadership and heavy metal football', keyPrinciples: ['Gegenpressing', 'High intensity', 'Emotional leadership', 'Quick transitions'], examplePlayers: ['Mohamed Salah', 'Virgil van Dijk', 'Roberto Firmino'], formations: ['4-3-3'], attacking: 9.6, passing: 9.0, defensive: 9.2, physical: 9.7 }, { id: 54, name: 'Ancelotti Balanced Maestro', coach: 'Carlo Ancelotti', school: 'Modern Masters', era: '2000s-Present', weight: 1.38, icon: '🌍', color: 'purple', description: 'Balanced approach with tactical flexibility and man-management excellence', keyPrinciples: ['Balance', 'Flexibility', 'Man-management', 'Champions League success'], examplePlayers: ['Kaká', 'Luka Modrić', 'Cristiano Ronaldo'], formations: ['4-3-3', '4-4-2'], attacking: 9.2, passing: 9.1, defensive: 8.9, physical: 8.6 }, { id: 55, name: 'Conte 3-5-2 Revolution', coach: 'Antonio Conte', school: 'Modern Masters', era: '2010s-Present', weight: 1.34, icon: '🌍', color: 'purple', description: 'Modern 3-5-2 system with intense training and tactical discipline', keyPrinciples: ['3-5-2 system', 'Intense training', 'Wing-backs', 'Tactical discipline'], examplePlayers: ['Andrea Pirlo', 'Arturo Vidal', 'Diego Costa'], formations: ['3-5-2', '3-4-3'], attacking: 9.0, passing: 8.8, defensive: 9.3, physical: 9.4 }, { id: 56, name: 'Tuchel Tactical Genius', coach: 'Thomas Tuchel', school: 'Modern Masters', era: '2010s-Present', weight: 1.36, icon: '🌍', color: 'purple', description: 'Tactical brilliance with flexible systems and defensive excellence', keyPrinciples: ['Tactical flexibility', 'Defensive structure', 'Build-up play', 'Positional play'], examplePlayers: ['Thiago Silva', 'N\'Golo Kanté', 'Mason Mount'], formations: ['3-4-2-1', '4-2-3-1'], attacking: 8.8, passing: 9.2, defensive: 9.5, physical: 8.7 }, { id: 57, name: 'Pochettino High Press', coach: 'Mauricio Pochettino', school: 'Modern Masters', era: '2010s-Present', weight: 1.29, icon: '🌍', color: 'purple', description: 'High pressing with youth development and attacking football', keyPrinciples: ['High pressing', 'Youth development', 'Attacking intent', 'Physical fitness'], examplePlayers: ['Harry Kane', 'Dele Alli', 'Son Heung-min'], formations: ['4-2-3-1', '4-4-2'], attacking: 9.1, passing: 8.7, defensive: 8.8, physical: 9.3 }, { id: 58, name: 'Nagelsmann Young Genius', coach: 'Julian Nagelsmann', school: 'Modern Masters', era: '2010s-Present', weight: 1.32, icon: '🌍', color: 'purple', description: 'Modern tactical innovation with data-driven approach and flexible systems', keyPrinciples: ['Tactical innovation', 'Data analysis', 'Positional flexibility', 'Youth development'], examplePlayers: ['Joshua Kimmich', 'Serge Gnabry', 'Thomas Müller'], formations: ['3-4-2-1', '4-2-3-1'], attacking: 9.3, passing: 9.3, defensive: 8.9, physical: 8.8 }, { id: 59, name: 'Flick High Line Dominance', coach: 'Hansi Flick', school: 'Modern Masters', era: '2010s-Present', weight: 1.35, icon: '🌍', color: 'purple', description: 'High defensive line with intense pressing and attacking dominance', keyPrinciples: ['High defensive line', 'Intense pressing', 'Attacking dominance', 'Positional play'], examplePlayers: ['Robert Lewandowski', 'Thomas Müller', 'Alphonso Davies'], formations: ['4-2-3-1'], attacking: 9.7, passing: 9.4, defensive: 9.1, physical: 9.2 }, { id: 60, name: 'DeVisser Scouting Philosophy', coach: 'Piet de Visser', school: 'Modern Masters', era: '1980s-Present', weight: 1.25, icon: '🌍', color: 'purple', description: 'Revolutionary scouting approach discovering hidden talent worldwide', keyPrinciples: ['Talent identification', 'Global scouting', 'Youth potential', 'Hidden gems'], examplePlayers: ['Romário', 'Ronaldo', 'Zlatan Ibrahimović'], formations: ['Various'], attacking: 8.9, passing: 8.7, defensive: 8.3, physical: 8.5 }, ]; const schools = [ { id: 'all', name: 'All Schools', count: 60, icon: '🌍' }, { id: 'Dutch', name: 'Dutch School', count: 6, icon: '🇳🇱' }, { id: 'Spanish', name: 'Spanish School', count: 7, icon: '🇪🇸' }, { id: 'Italian', name: 'Italian School', count: 8, icon: '🇮🇹' }, { id: 'English', name: 'English School', count: 8, icon: '🏴' }, { id: 'German', name: 'German School', count: 6, icon: '🇩🇪' }, { id: 'French', name: 'French School', count: 5, icon: '🇫🇷' }, { id: 'South American', name: 'South American School', count: 7, icon: '🌎' }, { id: 'Eastern European', name: 'Eastern European School', count: 4, icon: '🇪🇺' }, { id: 'Modern Masters', name: 'Modern Masters', count: 9, icon: '🎯' }, ]; const filteredPhilosophies = philosophies.filter(p => { const matchesSchool = selectedSchool === 'all' || p.school === selectedSchool; const matchesSearch = p.name.toLowerCase().includes(searchQuery.toLowerCase()) || p.coach.toLowerCase().includes(searchQuery.toLowerCase()); return matchesSchool && matchesSearch; }); const stats = { totalPhilosophies: philosophies.length, avgWeight: (philosophies.reduce((sum, p) => sum + p.weight, 0) / philosophies.length).toFixed(2), topWeighted: philosophies.reduce((max, p) => p.weight > max.weight ? p : max, philosophies[0]), schoolsCount: schools.length - 1 }; return (
Tactical DNA Mapping System
{philosophy.description}
{selectedPhilosophy.description}
This philosophy has a weight of {selectedPhilosophy.weight} in the Empire FGA system, placing it among the {selectedPhilosophy.weight >= 1.40 ? 'most influential' : selectedPhilosophy.weight >= 1.30 ? 'highly significant' : 'important'} tactical frameworks in football history. Players who align with this philosophy receive enhanced ratings when demonstrating mastery of its key principles.