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

        :root {
            --primary: #00ff88;
            --secondary: #00d4ff;
            --dark: #0a0e27;
            --darker: #050810;
            --text: #e0e0e0;
            --text-dim: #8892b0;
        }

        body {
            font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
            background: var(--darker);
            color: var(--text);
            overflow-x: hidden;
        }

        .grid-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            pointer-events: none;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo::before {
            content: '>';
            color: var(--secondary);
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        .nav-links {
            display: flex;
            gap: 50px;
            list-style: none;
            counter-reset: item;
        }

        .nav-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::before {
            content: '0' counter(item) '.';
            counter-increment: item;
            color: var(--primary);
            margin-right: 5px;
            font-size: 12px;
        }

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

        .e5-section {
            position: relative;
            padding: 150px 80px 100px;
            z-index: 1;
        }

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

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            gap: 20px;
        }

        .section-number {
            color: var(--primary);
            font-size: 20px;
            font-weight: bold;
        }

        .section-title {
            color: var(--text);
            font-size: 32px;
            white-space: nowrap;
        }

        .section-line-horizontal {
            height: 1px;
            background: rgba(0, 255, 136, 0.3);
            flex-grow: 1;
        }

        .e5-intro {
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 40px;
            margin-bottom: 60px;
            border-left: 4px solid var(--primary);
        }

        .e5-intro h2 {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .e5-intro p {
            color: var(--text-dim);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .highlight {
            color: var(--primary);
            font-weight: bold;
        }

        /* Compétences Grid */
        .competences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .competence-card {
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 30px;
            transition: all 0.3s ease;
        }

        .competence-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
        }

        .competence-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        }

        .competence-icon {
            font-size: 32px;
        }

        .competence-code {
            color: var(--primary);
            font-size: 18px;
            font-weight: bold;
        }

        .competence-title {
            color: var(--text);
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .competence-description {
            color: var(--text-dim);
            font-size: 13px;
            line-height: 1.6;
        }

        /* Tableau de suivi */
        .suivi-section {
            margin-bottom: 60px;
        }

        .suivi-title {
            color: var(--text);
            font-size: 26px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .table-wrapper {
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 30px;
            overflow-x: auto;
        }

        .competence-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .competence-table thead {
            background: rgba(0, 255, 136, 0.1);
        }

        .competence-table th {
            color: var(--primary);
            padding: 15px 10px;
            text-align: left;
            font-weight: bold;
            border-bottom: 2px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
        }

        .competence-table td {
            color: var(--text-dim);
            padding: 15px 10px;
            border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        }

        .competence-table tbody tr {
            transition: all 0.3s ease;
        }

        .competence-table tbody tr:hover {
            background: rgba(0, 255, 136, 0.05);
        }

        .project-name {
            color: var(--text);
            font-weight: bold;
        }

        .check-icon {
            color: var(--primary);
            font-size: 18px;
            text-align: center;
        }

        .no-check {
            color: var(--text-dim);
            opacity: 0.3;
        }

        /* Stats résumé */
        .stats-resume {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }

        .stat-resume-box {
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-resume-box:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .stat-icon {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 32px;
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-dim);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Documents */
        .documents-section {
            background: rgba(10, 14, 39, 0.4);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 40px;
        }

        .documents-title {
            color: var(--text);
            font-size: 22px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .document-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.15);
            padding: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .document-item:hover {
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .doc-icon {
            font-size: 28px;
        }

        .doc-info {
            flex: 1;
        }

        .doc-name {
            color: var(--text);
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .doc-type {
            color: var(--text-dim);
            font-size: 11px;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            nav {
                padding: 20px;
            }
            .nav-links {
                display: none;
            }
            .e5-section {
                padding: 120px 20px 50px;
            }
            .section-title {
                font-size: 24px;
            }
            .table-wrapper {
                padding: 15px;
            }
            .competence-table {
                font-size: 11px;
            }
            .competence-table th,
            .competence-table td {
                padding: 10px 5px;
            }
        }