        :root {
            /* === PALETTE PRINCIPALE ORANGE === */
            --primary: #FF6A00;
            --primary-light: #FF8533;
            --primary-lighter: #FFB366;
            --primary-dark: #E55A00;
            --primary-darker: #CC4400;
            
            /* === PALETTE SECONDAIRE === */
            --secondary: #2D3748;
            --secondary-light: #4A5568;
            --secondary-dark: #1A202C;
            
            /* === PALETTE D'ACCENT ORGANISÉE === */
            --accent-purple: #8B5CF6;
            --accent-purple-light: #A78BFA;
            --accent-green: #10B981;
            --accent-green-light: #34D399;
            --accent-yellow: #F59E0B;
            --accent-yellow-light: #FBBF24;
            --accent-pink: #EC4899;
            --accent-blue: #3B82F6;
            --accent-gold: #FFD700;
            
            /* === BACKGROUNDS SOMBRES COHÉRENTS === */
            --bg-primary: #0F1419;
            --bg-secondary: #1A202C;
            --bg-tertiary: #2D3748;
            --bg-card: #1E2A3A;
            --bg-overlay: rgba(255, 106, 0, 0.15);
            --bg-glass: rgba(30, 42, 58, 0.8);
            --bg-gradient-dark: linear-gradient(135deg, #0F1419 0%, #1A202C 50%, #2D3748 100%);
            
            /* === TEXTES POUR THÈME SOMBRE === */
            --text-primary: #F7FAFC;
            --text-secondary: #E2E8F0;
            --text-muted: #A0AEC0;
            --text-light: #718096;
            --text-white: #FFFFFF;
            
            /* === DÉGRADÉS ORGANISÉS === */
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            --gradient-primary-soft: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
            --gradient-purple: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
            --gradient-green: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
            --gradient-yellow: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-light) 100%);
            --gradient-hero: linear-gradient(135deg, rgba(255, 106, 0, 0.9) 0%, rgba(229, 90, 0, 0.8) 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(255, 106, 0, 0.8) 0%, rgba(229, 90, 0, 0.6) 100%);
            
            /* === OMBRES COHÉRENTES === */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
            --shadow-glow-orange: 0 0 30px rgba(255, 106, 0, 0.4);
            --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.4);
            --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.4);
            --shadow-glow-yellow: 0 0 30px rgba(245, 158, 11, 0.4);
            
            /* === RAYONS DE BORDURE === */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-2xl: 32px;
            --radius-full: 9999px;
            
            /* === ESPACEMENTS === */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 80px;
            
                
        /* Variables typographiques supprimées - maintenant dans typography.css */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
            /* Typographie gérée par typography.css */
        }
        /* === CLASSES UTILITAIRES POUR COULEURS === */
        .bg-primary { background: var(--bg-primary) !important; }
        .bg-secondary { background: var(--bg-secondary) !important; }
        .bg-tertiary { background: var(--bg-tertiary) !important; }
        .bg-glass { background: var(--bg-glass) !important; backdrop-filter: blur(10px); }
        
        .text-primary { color: var(--text-primary) !important; }
        .text-secondary { color: var(--text-secondary) !important; }
        .text-muted { color: var(--text-muted) !important; }
        .text-white { color: var(--text-white) !important; }
        
        .gradient-primary { background: var(--gradient-primary) !important; }
        .gradient-purple { background: var(--gradient-purple) !important; }
        .gradient-green { background: var(--gradient-green) !important; }
        .gradient-yellow { background: var(--gradient-yellow) !important; }
        
        .shadow-sm { box-shadow: var(--shadow-sm) !important; }
        .shadow-md { box-shadow: var(--shadow-md) !important; }
        .shadow-lg { box-shadow: var(--shadow-lg) !important; }
        .shadow-xl { box-shadow: var(--shadow-xl) !important; }
        .shadow-glow-orange { box-shadow: var(--shadow-glow-orange) !important; }
        .shadow-glow-purple { box-shadow: var(--shadow-glow-purple) !important; }
        .shadow-glow-green { box-shadow: var(--shadow-glow-green) !important; }
        
        .radius-sm { border-radius: var(--radius-sm) !important; }
        .radius-md { border-radius: var(--radius-md) !important; }
        .radius-lg { border-radius: var(--radius-lg) !important; }
        .radius-xl { border-radius: var(--radius-xl) !important; }
        .radius-2xl { border-radius: var(--radius-2xl) !important; }
        .radius-full { border-radius: var(--radius-full) !important; }
        
        /* === CLASSES DE ROTATION CARTOON === */
        .rotate-1 { transform: rotate(1deg); }
        .rotate-2 { transform: rotate(2deg); }
        .rotate-3 { transform: rotate(3deg); }
        .rotate--1 { transform: rotate(-1deg); }
        .rotate--2 { transform: rotate(-2deg); }
        .rotate--3 { transform: rotate(-3deg); }
        
        /* Ambiance visuelle sombre renforcée */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 106, 0, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
                linear-gradient(135deg, rgba(15, 20, 25, 0.3) 0%, rgba(26, 32, 44, 0.2) 100%);
            pointer-events: none;
            z-index: -1;
        }

        /* Particules flottantes pour l'ambiance */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 106, 0, 0.3), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 133, 51, 0.2), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 69, 0, 0.4), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255, 106, 0, 0.2), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(255, 133, 51, 0.3), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: float 20s linear infinite;
            pointer-events: none;
            z-index: -1;
            opacity: 0.6;
        }

        @keyframes float {
            0% { transform: translateY(0px) translateX(0px); }
            33% { transform: translateY(-10px) translateX(5px); }
            66% { transform: translateY(5px) translateX(-5px); }
            100% { transform: translateY(0px) translateX(0px); }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section {
            padding: 120px 0;
            position: relative;
        }

        .section.compact {
            padding: 80px 0;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 11, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255, 106, 0, 0.2);
            transition: var(--transition);
        }

        .nav.scrolled {
            background: rgba(10, 10, 11, 0.98);
            box-shadow: var(--shadow-md);
            border-bottom-color: rgba(255, 106, 0, 0.4);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            font-weight: 800;
            font-size: 28px;
            color: var(--text-primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 48px;
            width: auto;
            object-fit: contain;
            transition: var(--transition);
        }

        .logo:hover img {
            box-shadow: var(--shadow-glow);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
            padding: 12px 20px;
            border-radius: 12px;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 20px;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 1px;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(255, 106, 0, 0.1);
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-link.active {
            color: var(--primary);
            background: rgba(255, 106, 0, 0.15);
        }

        .lang-switch {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .lang-switch:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        /* Hero Section avec World Panorama */
        .hero-section {
            min-height: 100vh;
            background-image: url('/assets/world-panorama.jpg') !important;
            background-size: cover !important;
            background-position: center !important;
            background-attachment: fixed !important;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 106, 0, 0.5);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to top, var(--bg-primary), transparent);
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            z-index: 3;
            position: relative;
            max-width: 900px;
            padding: 0 32px;
        }

        .hero-title {
            font-family: var(--font-title);
            font-size: clamp(48px, 8vw, 96px);
            font-weight: var(--fw-bold);
            color: white;
            margin-bottom: 24px;
            line-height: var(--lh-tight);
            letter-spacing: var(--ls-tight);
            text-transform: uppercase;
            transform: rotate(-2deg);
            display: inline-block;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: clamp(20px, 3vw, 32px);
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 32px;
            font-weight: var(--fw-medium);
            letter-spacing: var(--ls-normal);
            transform: rotate(1deg);
            display: inline-block;
        }

        .hero-description {
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: var(--fw-light);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: var(--lh-relaxed);
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary);
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-cta:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow-strong);
            background: white;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
            color: rgba(255, 255, 255, 0.8);
            font-size: 24px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Header Banner pour les autres pages */
        .header-banner {
            background: var(--gradient-secondary);
            padding: 160px 0 120px;
            position: relative;
            overflow: hidden;
            margin-top: 88px;
        }

        .header-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
            z-index: 1;
        }

        .header-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, var(--bg-primary), transparent);
            z-index: 2;
        }

        .header-banner h1 {
            font-family: var(--font-title);
            font-size: clamp(48px, 6vw, 80px);
            font-weight: var(--fw-bold);
            position: relative;
            z-index: 3;
            color: white;
            text-align: center;
            line-height: var(--lh-tight);
            letter-spacing: var(--ls-tight);
            text-transform: uppercase;
        }

        /* Cards */
        .card {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border-radius: var(--radius-2xl);
            padding: var(--space-2xl);
            border: 1px solid rgba(255, 106, 0, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-glass);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 106, 0, 0.4);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover::after {
            opacity: 1;
        }

        .card-title {
            font-family: 'Cinzel', serif;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.3;
            letter-spacing: 1px;
        }

        .card-text {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .section-header-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            margin: 0 auto var(--space-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow-orange);
            position: relative;
            z-index: 1;
        }
        
        .section-header-icon i {
            font-size: 40px;
            color: white;
        }
        
        .section-header-icon.primary {
            background: var(--gradient-primary);
            box-shadow: var(--shadow-glow-orange);
        }
        
        .section-header-icon.purple {
            background: var(--gradient-purple);
            box-shadow: var(--shadow-glow-purple);
        }
        
        .section-header-icon.green {
            background: var(--gradient-green);
            box-shadow: var(--shadow-glow-green);
        }
        
        .section-header-icon.yellow {
            background: var(--gradient-yellow);
            box-shadow: var(--shadow-glow-yellow);
        }

        .section-title {
            font-family: var(--font-title);
            font-size: clamp(40px, 5vw, 64px);
            font-weight: var(--fw-bold);
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
            color: var(--primary);
            letter-spacing: var(--ls-tight);
            transform: rotate(-1deg);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .section-subtitle {
            font-family: 'Crimson Text', serif;
            font-size: 20px;
            color: var(--text-muted);
            font-weight: 400;
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            letter-spacing: 0.3px;
        }

        /* Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .game-card {
            background: var(--gradient-card);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(255, 106, 0, 0.2);
            backdrop-filter: blur(20px);
        }

        .game-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 106, 0, 0.5);
        }

        .game-cover {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            transition: var(--transition);
        }

        .game-card:hover .game-cover {
            transform: scale(1.05);
        }

        .game-info {
            padding: 32px;
        }

        .game-title {
            font-family: 'Cinzel', serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
            line-height: 1.3;
            letter-spacing: 0.8px;
        }

        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .game-tag {
            background: rgba(255, 106, 0, 0.2);
            color: var(--text-secondary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(255, 106, 0, 0.3);
            transition: var(--transition);
        }

        .game-tag:hover {
            background: rgba(255, 106, 0, 0.3);
            color: var(--primary);
        }

        .development-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
            z-index: 10;
            box-shadow: var(--shadow-md);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Game Detail */
        .game-detail {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
        }

        .game-detail-cover {
            position: sticky;
            top: 120px;
        }

        .game-detail-cover img {
            width: 100%;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .game-detail-cover:hover img {
            box-shadow: var(--shadow-glow);
        }

        .game-detail-info h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            margin-bottom: 32px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .game-meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
            padding: 32px;
            background: var(--gradient-card);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(255, 106, 0, 0.2);
            backdrop-filter: blur(20px);
        }

        .game-meta-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .game-meta-label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        .game-meta-value {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 16px;
        }

        .game-description {
            margin-bottom: 48px;
        }

        .game-description h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 24px;
            color: var(--primary);
            font-weight: 700;
        }

        .game-features {
            margin-bottom: 48px;
        }

        .game-features h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 24px;
            color: var(--primary);
            font-weight: 600;
        }

        .game-features ul {
            list-style: none;
        }

        .game-features li {
            padding: 12px 0 12px 32px;
            position: relative;
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
        }

        .game-features li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 14px;
        }

        /* === SYSTÈME DE BOUTONS COHÉRENT === */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-xl);
            background: var(--gradient-primary);
            color: var(--text-white);
            border: none;
            border-radius: var(--radius-xl);
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: var(--shadow-md);
            letter-spacing: 0.5px;
            transform: rotate(-1deg);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: rotate(0deg) translateY(-2px) scale(1.02);
            box-shadow: var(--shadow-glow-orange);
        }

        .btn.secondary {
            background: var(--bg-glass);
            border: 2px solid var(--primary);
            color: var(--primary);
            backdrop-filter: blur(10px);
            transform: rotate(1deg);
        }

        .btn.secondary:hover {
            background: var(--gradient-primary);
            color: var(--text-white);
            transform: rotate(0deg) translateY(-2px) scale(1.02);
            box-shadow: var(--shadow-glow-orange);
        }

        .btn.purple {
            background: var(--gradient-purple);
            transform: rotate(0.5deg);
        }

        .btn.purple:hover {
            box-shadow: var(--shadow-glow-purple);
        }

        .btn.green {
            background: var(--gradient-green);
            transform: rotate(-0.5deg);
        }

        .btn.green:hover {
            box-shadow: var(--shadow-glow-green);
        }

        .btn.yellow {
            background: var(--gradient-yellow);
            transform: rotate(1.5deg);
        }

        .btn.yellow:hover {
            box-shadow: var(--shadow-glow-yellow);
        }

        /* === SYSTÈME DE TAGS === */
        .tag {
            display: inline-flex;
            align-items: center;
            padding: var(--space-sm) var(--space-md);
            border-radius: var(--radius-full);
            font-family: var(--font-title);
            font-weight: 500;
            font-size: 14px;
            color: var(--text-white);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.3px;
        }

        .tag:hover {
            transform: rotate(0deg) scale(1.05);
        }

        /* === SYSTÈME DE TITRES MODERNES ET LISIBLES === */
        .title-cartoon {
            font-family: var(--font-title);
            font-weight: var(--fw-bold) !important;
            color: #FFFFFF !important;
            letter-spacing: var(--ls-tight);
            display: inline-block;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.9), rgba(255, 154, 80, 0.8)) !important;
            padding: 12px 24px !important;
            border-radius: 12px !important;
            border-left: 4px solid #FF6A00 !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
            position: relative;
            overflow: hidden;
        }
        
        .title-cartoon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
            z-index: 1;
        }
        
        .title-cartoon > * {
            position: relative;
            z-index: 2;
        }

        .title-cartoon.large {
            font-size: clamp(42px, 5vw, 64px) !important;
            padding: 16px 32px !important;
            border-radius: 16px !important;
        }

        .title-cartoon.medium {
            font-size: clamp(28px, 4vw, 42px) !important;
            padding: 14px 28px !important;
        }

        .title-cartoon.small {
            font-size: clamp(22px, 3vw, 28px) !important;
            padding: 10px 20px !important;
        }

        .title-cartoon:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
        }

        .subtitle-cartoon {
            font-family: var(--font-body);
            font-weight: var(--fw-medium);
            color: var(--text-secondary);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 8px 16px;
            border-radius: 8px;
            border-left: 3px solid rgba(255, 106, 0, 0.5);
            letter-spacing: var(--ls-normal);
            display: inline-block;
            transform: rotate(1deg);
        }

        /* Grid Layouts */
        .grid {
            display: grid;
            gap: 40px;
        }

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

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

        /* Stats Section */
        .stats-section {
            background: var(--bg-secondary);
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
            padding: 40px 32px;
            background: var(--gradient-card);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(255, 106, 0, 0.2);
            transition: var(--transition);
            backdrop-filter: blur(20px);
        }

        .stat-item:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 106, 0, 0.4);
            box-shadow: var(--shadow-glow);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            display: block;
        }

        .stat-label {
            font-size: 16px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid rgba(255, 106, 0, 0.2);
            padding: 80px 0 40px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 32px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            gap: 32px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 28px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 106, 0, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-fade-in-scale {
            animation: fadeInScale 0.6s ease-out forwards;
        }

        /* === RESPONSIVE DESIGN AMÉLIORÉ === */
        
        /* Large screens */
        @media (max-width: 1400px) {
            .container {
                max-width: 1200px;
                padding: 0 32px;
            }
        }

        @media (max-width: 1200px) {
            .container {
                padding: 0 24px;
            }
            
            .nav-container {
                padding: 16px 24px;
            }
            
            /* Grid layouts */
            .game-detail {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .game-detail-cover {
                position: static;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .grid-2 {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }
            
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-xl);
            }
        }

        /* Tablets */
        @media (max-width: 768px) {
            /* Navigation mobile */
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }
            
            .logo img {
                height: 40px;
            }

            /* Hero sections */
            .hero-section {
                background-attachment: scroll;
                min-height: 60vh;
            }

            .section {
                padding: 60px 0;
            }
            
            .section.compact {
                padding: 40px 0;
            }

            .header-banner {
                padding: 100px 0 60px;
                min-height: 60vh;
            }

            /* Typography responsive */
            .brush-title {
                padding: 0.3em 0.8em;
            }
            
            h1.brush-title {
                font-size: clamp(28px, 6vw, 48px) !important;
            }
            
            h2.brush-title {
                font-size: clamp(24px, 5vw, 36px) !important;
            }
            
            h3.brush-title {
                font-size: clamp(20px, 4vw, 28px) !important;
            }

            /* Grids responsive */
            .games-grid,
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-lg);
            }

            /* Cards */
            .card {
                padding: var(--space-xl);
                transform: none !important;
            }
            
            .card:hover {
                transform: translateY(-4px) !important;
            }

            /* Game sections */
            .game-meta {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }

            /* Footer */
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: var(--space-lg);
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: var(--space-lg);
            }
            
            /* Buttons responsive */
            .btn {
                padding: var(--space-md) var(--space-lg);
                font-size: 14px;
            }
        }

        /* Mobile phones */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .nav-container {
                padding: 12px 16px;
            }

            /* Hero adjustments */
            .hero-section {
                min-height: 50vh;
            }
            
            .hero-content {
                padding: 0 16px;
            }

            .header-banner {
                padding: 80px 0 40px;
                min-height: 50vh;
            }

            /* Typography mobile */
            h1.brush-title {
                font-size: clamp(24px, 8vw, 32px) !important;
            }
            
            h2.brush-title {
                font-size: clamp(20px, 6vw, 28px) !important;
            }
            
            h3.brush-title {
                font-size: clamp(18px, 5vw, 24px) !important;
            }
            
            .subtitle-box {
                padding: 12px 20px;
                font-size: 16px;
            }

            /* Sections mobile */
            .section {
                padding: 40px 0;
            }

            .card {
                padding: var(--space-lg);
                margin-bottom: var(--space-lg);
            }

            /* Game info mobile */
            .game-info {
                padding: var(--space-lg);
            }

            /* Stats mobile */
            .stats-grid {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }
            
            .stat-item {
                padding: var(--space-lg);
            }
            
            .stat-number {
                font-size: 36px;
            }

            /* Tags mobile */
            .game-tags {
                justify-content: center;
                gap: var(--space-sm);
            }
            
            .game-tag {
                font-size: 12px;
                padding: 8px 12px;
            }
            
            /* Buttons mobile */
            .btn {
                width: 100%;
                max-width: 280px;
                padding: var(--space-md) var(--space-lg);
                font-size: 14px;
            }
            
            /* Navigation mobile improvements */
            .lang-switch {
                padding: 8px 16px;
                font-size: 12px;
            }
        }

        /* Extra small devices */
        @media (max-width: 320px) {
            .container {
                padding: 0 12px;
            }
            
            .nav-container {
                padding: 8px 12px;
            }
            
            .card {
                padding: var(--space-md);
            }
            
            .subtitle-box {
                padding: 10px 16px;
                font-size: 14px;
            }
        }
        
        /* === RESPONSIVE GLOBAL COMPLET === */
        
        /* Desktop Large (1400px+) */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }
        
        /* Desktop (1200px - 1399px) */
        @media (max-width: 1399px) {
            .container {
                max-width: 1140px;
            }
        }
        
        /* Tablet Large (992px - 1199px) */
        @media (max-width: 1199px) {
            .container {
                max-width: 960px;
                padding: 0 24px;
            }
            
            .section-header {
                margin-bottom: 60px;
            }
            
            .card {
                padding: var(--space-xl);
            }
        }
        
        /* Tablet (768px - 991px) */
        @media (max-width: 991px) {
            .container {
                max-width: 720px;
                padding: 0 20px;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .section-header h2 {
                font-size: clamp(32px, 5vw, 48px) !important;
            }
            
            .subtitle-box {
                font-size: 16px;
                padding: 12px 20px;
            }
            
            /* Grids responsive */
            [style*="grid-template-columns"] {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
            }
            
            .mission-grid,
            .stats-grid,
            .action-cards-grid,
            .production-grid,
            .team-grid,
            .value-grid,
            .faq-grid {
                grid-template-columns: 1fr !important;
                gap: var(--space-xl) !important;
            }
            
            .featured-game-layout {
                grid-template-columns: 1fr !important;
                gap: var(--space-xl) !important;
            }
            
            /* Cards */
            .card {
                padding: var(--space-lg);
                transform: none !important;
            }
            
            .card:hover {
                transform: translateY(-4px) !important;
            }
            
            /* Ronds avec icônes */
            [style*="width: 80px"][style*="height: 80px"][style*="border-radius: 50%"],
            .section-header-icon {
                width: 70px !important;
                height: 70px !important;
            }
            
            [style*="width: 80px"][style*="height: 80px"][style*="border-radius: 50%"] i,
            .section-header-icon i {
                font-size: 28px !important;
            }
            
            [style*="width: 40px"][style*="height: 40px"][style*="border-radius: 50%"] {
                width: 36px !important;
                height: 36px !important;
            }
            
            [style*="width: 40px"][style*="height: 40px"][style*="border-radius: 50%"] i {
                font-size: 14px !important;
            }
        }
        
        /* Mobile Large (576px - 767px) */
        @media (max-width: 767px) {
            .container {
                max-width: 540px;
                padding: 0 16px;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .section-header h2 {
                font-size: clamp(28px, 6vw, 40px) !important;
            }
            
            .subtitle-box {
                font-size: 14px;
                padding: 10px 16px;
            }
            
            .card {
                padding: var(--space-md);
            }
            
            /* Ronds plus petits sur mobile */
            [style*="width: 80px"][style*="height: 80px"][style*="border-radius: 50%"],
            .section-header-icon {
                width: 60px !important;
                height: 60px !important;
                margin-bottom: var(--space-md) !important;
            }
            
            [style*="width: 80px"][style*="height: 80px"][style*="border-radius: 50%"] i,
            .section-header-icon i {
                font-size: 24px !important;
            }
            
            [style*="width: 40px"][style*="height: 40px"][style*="border-radius: 50%"] {
                width: 32px !important;
                height: 32px !important;
            }
            
            [style*="width: 40px"][style*="height: 40px"][style*="border-radius: 50%"] i {
                font-size: 12px !important;
            }
            
            /* Stats grid 2 colonnes */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: var(--space-md) !important;
            }
        }
        
        /* Mobile (max-width: 575px) */
        @media (max-width: 575px) {
            .container {
                padding: 0 12px;
            }
            
            .section-header {
                margin-bottom: 32px;
            }
            
            .section-header h2 {
                font-size: clamp(24px, 7vw, 36px) !important;
            }
            
            .subtitle-box {
                font-size: 13px;
                padding: 8px 12px;
            }
            
            .card {
                padding: var(--space-md);
            }
            
            /* Tous les grids en 1 colonne */
            .mission-grid,
            .stats-grid,
            .action-cards-grid,
            .production-grid,
            .team-grid,
            .value-grid,
            .faq-grid {
                grid-template-columns: 1fr !important;
                gap: var(--space-lg) !important;
            }
            
            /* Ronds encore plus petits */
            [style*="width: 80px"][style*="height: 80px"][style*="border-radius: 50%"],
            .section-header-icon {
                width: 50px !important;
                height: 50px !important;
            }
            
            [style*="width: 80px"][style*="height: 80px"][style*="border-radius: 50%"] i,
            .section-header-icon i {
                font-size: 20px !important;
            }
            
            [style*="width: 40px"][style*="height: 40px"][style*="border-radius: 50%"] {
                width: 28px !important;
                height: 28px !important;
            }
            
            [style*="width: 40px"][style*="height: 40px"][style*="border-radius: 50%"] i {
                font-size: 11px !important;
            }
        }
        
        /* === RESPONSIVE SPÉCIFIQUE HOMEPAGE === */
        @media (max-width: 768px) {
            .mission-grid {
                grid-template-columns: 1fr !important;
                gap: var(--space-xl) !important;
            }
            
            .featured-game-layout {
                grid-template-columns: 1fr !important;
                gap: var(--space-xl) !important;
                text-align: center;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: var(--space-lg) !important;
            }
            
            .action-cards-grid {
                grid-template-columns: 1fr !important;
                gap: var(--space-lg) !important;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr !important;
                gap: var(--space-md) !important;
            }
            
            .mission-grid {
                gap: var(--space-lg) !important;
            }
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
