        .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: 10px;
            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;
        }

        .finder-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: 680px;
        }

        /* 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: transparent;
        }

        .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);
        }

        /* ── Search bar ─────────────────────────────────────── */
        .finder-search-wrap {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #e8e8e8;
            border-radius: 7px;
            padding: 5px 10px;
            min-width: 180px;
        }

        .finder-search-icon {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        #finderSearch {
            border: none;
            background: transparent;
            outline: none;
            font-size: 13px;
            color: #333;
            width: 100%;
            font-family: var(--font-pgs);
        }

        #finderSearch::placeholder {
            color: #aaa;
        }

        /* ── Keyword chips ───────────────────────────────────── */
        .keyword-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 8px;
        }

        .keyword-chip {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            background: linear-gradient(135deg, #FFE5FD, #FFB8FA);
            color: #c040b8;
            font-size: 12px;
            font-weight: 600;
            font-family: var(--font-pgs);
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid rgba(255, 132, 247, 0.3);
        }

        .keyword-chip:hover {
            background: linear-gradient(135deg, #FFB8FA, #FF84F7);
            color: white;
            transform: translateY(-1px);
        }

        /* ── App items with project ──────────────────────────── */
        .app-item.has-project {
            cursor: pointer;
        }

        .app-icon.has-project-icon {
            position: relative;
        }

        .app-icon.has-project-icon::after {
            content: '';
            position: absolute;
            top: -4px;
            right: -4px;
            width: 10px;
            height: 10px;
            background: #FF84F7;
            border-radius: 50%;
            border: 2px solid white;
        }

        .app-level.project-hint {
            color: #FF84F7;
            font-weight: 700;
            font-size: 11px;
        }

        /* ── Project view ────────────────────────────────────── */
        .project-view {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .project-view-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f0f0f0;
        }

        .project-view-icon-wrap {
            width: 56px;
            height: 56px;
            background: #FFE5FD;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .project-view-app-icon {
            width: 34px;
            height: 34px;
            object-fit: contain;
        }

        .project-view-app-name {
            font-size: 11px;
            font-weight: 700;
            color: #FF84F7;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-family: var(--font-pgs);
        }

        .project-view-title {
            font-size: 18px;
            font-weight: 700;
            color: #1E1E1E;
            font-family: var(--font-title);
            margin: 0;
        }

        .project-view-desc {
            font-size: 13px;
            color: #555;
            font-family: var(--font-pgs);
            line-height: 1.6;
            margin: 0;
        }

        /* iframe embed */
        .project-iframe-wrap {
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #e8e8e8;
        }

        .iframe-bar {
            background: #f5f5f5;
            padding: 8px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #e8e8e8;
        }

        .iframe-type-label {
            font-size: 12px;
            font-weight: 600;
            color: #666;
            font-family: var(--font-pgs);
        }

        .iframe-open-ext {
            font-size: 12px;
            color: #FF84F7;
            font-weight: 600;
            text-decoration: none;
            font-family: var(--font-pgs);
        }

        .iframe-open-ext:hover {
            text-decoration: underline;
        }

        .project-iframe {
            width: 100%;
            height: 380px;
            border: none;
            display: block;
        }

        /* link buttons (github / instagram) */
        .project-open-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 10px;
            background: linear-gradient(135deg, #FFB8FA, #FF84F7);
            color: white;
            font-size: 14px;
            font-weight: 700;
            font-family: var(--font-pgs);
            text-decoration: none;
            transition: all 0.2s;
            align-self: flex-start;
        }

        .project-open-btn:hover {
            opacity: 0.88;
            transform: translateY(-1px);
        }

        .project-btn-icon {
            width: 18px;
            height: 18px;
            object-fit: contain;
            filter: brightness(10);
        }

        /* placeholder (no URL yet) */
        .project-embed-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 40px 24px;
            background: #fafafa;
            border-radius: 10px;
            border: 2px dashed #FFB8FA;
            text-align: center;
        }

        .embed-placeholder-emoji {
            font-size: 36px;
        }

        .project-embed-placeholder p {
            font-size: 13px;
            color: #aaa;
            font-family: var(--font-pgs);
            margin: 0;
        }

        /* search empty state */
        .search-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            height: 200px;
            color: #aaa;
            font-family: var(--font-pgs);
            font-size: 13px;
        }

        .search-empty span {
            font-size: 32px;
        }

        /* 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;
            }
        }