        .section-skills-finder {
            width: 100%;
            padding: 80px 5%;
            background-color: white;
        }

        .section-skills-finder-container {
            max-width: 1352px;
            margin: 0 auto;
            width: 100%;
        }

        .section-skills-finder h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 50px;
            font-family: var(--font-title);
            border-left: 4px solid #FF84F7;
            padding-left: 20px;
            color: black;
        }

        .finder-window {
            width: 100%;
            max-width: 1200px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
            margin: 0 auto 80px auto;
        }

        /* Barre de titre macOS */
        .title-bar {
            background: #FFE5FD;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .traffic-lights {
            display: flex;
            gap: 8px;
        }

        .traffic-light {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .traffic-light.red { background: #FF5F57; }
        .traffic-light.yellow { background: #FFBD2E; }
        .traffic-light.green { background: #28CA42; }

        /* Toolbar */
        .toolbar {
            background: #f5f5f5;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-buttons {
            display: flex;
            gap: 8px;
        }

        .nav-btn {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 32px;
            font-weight: 400;
            transition: all 0.2s;
            color: #000;
            line-height: 1;
            font-family: -apple-system, BlinkMacSystemFont, sans-serif;
            padding-bottom: 4px;
        }

        .nav-btn:hover:not(:disabled) {
            background: #e8e8e8;
            cursor: pointer;
        }

        .nav-btn:disabled {
            opacity: 0.3;
            cursor: default;
            pointer-events: none;
        }

        .breadcrumb {
            flex: 1;
            font-size: 13px;
            color: #666;
            padding: 0 12px;
            font-family: var(--font-pgs);
        }

        .breadcrumb span {
            color: #333;
            font-weight: 600;
            font-family: var(--font-pgs);
        }

        /* Conteneur principal */
        .finder-content {
            display: flex;
            height: 500px;
        }

        /* Sidebar */
        .sidebar {
            width: 200px;
            background: #f9f9f9;
            padding: 16px 8px;
            font-family: var(--font-pgs);
        }

        .sidebar-section {
            margin-bottom: 20px;
        }

        .sidebar-title {
            font-size: 11px;
            font-weight: 700;
            color: #888;
            text-transform: uppercase;
            padding: 0 8px;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .sidebar-item {
            padding: 6px 12px;
            font-size: 16px;
            color: #333;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .sidebar-item:hover {
            background: #e8e8e8;
        }

        .sidebar-item.active {
            background: linear-gradient(135deg, #FFB8FA, #FF84F7);
            color: white;
        }

        .sidebar-icon {
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sidebar-icon-img {
            width: 16px;
            height: 16px;
            object-fit: contain;
        }

        /* Zone principale */
        .main-content {
            flex: 1;
            padding: 24px;
            overflow-y: auto;
        }

        .content-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1E1E1E;
            border-left: 4px solid #FF84F7;
            padding-left: 16px;
            font-family: var(--font-title);

        }

        /* Grille d'icônes */
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 24px;
        }

        .app-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .app-item:hover {
            background: #f5f5f5;
        }

        .app-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            background: #FFE5FD;
            box-shadow: 0 4px 12px rgba(255, 229, 253, 0.4);
        }

        .app-icon-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .app-name {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            text-align: center;
            font-family:var(--font-pgs);
        }

        .app-level {
            font-size: 11px;
            color: #888;
            font-family:var(--font-pgs);
        }

        /* Vue liste des dossiers */
        .folders-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 24px;
        }

        .folder-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .folder-item:hover {
            background: #f5f5f5;
        }

        .folder-icon {
            font-size: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .folder-icon-img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .folder-name {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            text-align: center;
            font-family:var(--font-pgs);
        }

        .folder-count {
            font-size: 11px;
            color: #888;
            font-family:var(--font-pgs);
        }

        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding: 20px;
            }

            .finder-content {
                flex-direction: column;
                height: auto;
            }

            .sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #ddd;
            }

            .apps-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 16px;
            }

            .app-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }
        }