/* ============================================
           STYLES PROMPTS - Version blog.php
           ============================================ */
        
        .prompts-section {
            padding: 20px 0 60px 0;
            background: var(--bg-main);
            transition: background var(--transition-speed) ease;
        }

        /* Filtres - style identique à blog.php */
        .prompts-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid var(--border);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn:hover {
            color: var(--text-title);
            background: var(--bg-card);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            color: #fff;
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 4px 15px rgba(18, 58, 72, 0.2);
        }

        .filter-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 22px;
            height: 22px;
            padding: 0 8px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.2);
            color: inherit;
        }

        .filter-btn.active .filter-count {
            background: rgba(255, 255, 255, 0.25);
        }

        /* Grille - identique à blog.php */
        .prompts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        /* Carte prompt - style identique aux articles */
        .prompt-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: promptFadeIn 0.6s ease forwards;
            display: flex;
            flex-direction: column;
        }

        .prompt-card:nth-child(1) { animation-delay: 0.05s; }
        .prompt-card:nth-child(2) { animation-delay: 0.10s; }
        .prompt-card:nth-child(3) { animation-delay: 0.15s; }
        .prompt-card:nth-child(4) { animation-delay: 0.20s; }
        .prompt-card:nth-child(5) { animation-delay: 0.25s; }
        .prompt-card:nth-child(6) { animation-delay: 0.30s; }
        .prompt-card:nth-child(7) { animation-delay: 0.35s; }
        .prompt-card:nth-child(8) { animation-delay: 0.40s; }
        .prompt-card:nth-child(9) { animation-delay: 0.45s; }
        .prompt-card:nth-child(10) { animation-delay: 0.50s; }
        .prompt-card:nth-child(11) { animation-delay: 0.55s; }
        .prompt-card:nth-child(12) { animation-delay: 0.60s; }

        @keyframes promptFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .prompt-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px var(--shadow-hover);
        }

        [data-theme="dark"] .prompt-card {
            border-color: var(--border-dark);
        }

        [data-theme="dark"] .prompt-card:hover {
            border-color: var(--accent);
            box-shadow: 0 20px 60px var(--shadow-hover);
        }

        /* Header de la carte - style outil */
        .prompt-card-header {
            padding: 16px 20px 12px 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-sub);
            transition: all var(--transition-speed) ease;
        }

        [data-theme="dark"] .prompt-card-header {
            border-color: var(--border-dark);
            background: rgba(255, 255, 255, 0.03);
        }

        .outil-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
        }

        .outil-badge i {
            font-size: 14px;
        }

        .categorie-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-card);
            border: 1px solid var(--border);
            transition: all var(--transition-speed) ease;
        }

        [data-theme="dark"] .categorie-badge {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .prompt-card:hover .categorie-badge {
            border-color: var(--accent);
        }

        /* Corps de la carte */
        .prompt-card-body {
            padding: 18px 20px 14px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .prompt-card-body h3 {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 4px 0;
        }

        .prompt-card-body h3 a {
            color: var(--text-title);
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }

        .prompt-card-body h3 a:hover {
            color: var(--accent);
        }

        .prompt-card-body .prompt-objectif {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0 0 6px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Tags */
        .prompt-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 6px;
        }

        .prompt-tag {
            display: inline-block;
            padding: 2px 12px;
            background: var(--bg-sub);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .prompt-tag:hover {
            color: var(--text-title);
            border-color: var(--accent);
            transform: translateY(-1px);
        }

        [data-theme="dark"] .prompt-tag {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
        }

        [data-theme="dark"] .prompt-tag:hover {
            border-color: var(--accent);
        }

        /* Footer de la carte */
        .prompt-card-footer {
            padding: 12px 20px 16px 20px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        [data-theme="dark"] .prompt-card-footer {
            border-color: var(--border-dark);
        }

        .prompt-date {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .prompt-date i {
            font-size: 13px;
        }

        .btn-voir-prompt {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 18px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            background: var(--accent);
            border: none;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .btn-voir-prompt:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(18, 58, 72, 0.25);
            color: #fff;
        }

        .btn-voir-prompt i {
            font-size: 13px;
        }

        /* Barre de recherche */
        .search-bar-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .search-bar-wrapper form {
            display: flex;
            gap: 10px;
            width: 100%;
            max-width: 400px;
        }

        .search-bar-wrapper input {
            flex: 1;
            border-radius: 999px;
            padding: 10px 20px;
            border: 1px solid var(--border);
            background: var(--bg-sub);
            color: var(--text-title);
            transition: all var(--transition-speed) ease;
        }

        [data-theme="dark"] .search-bar-wrapper input {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .search-bar-wrapper input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(18, 58, 72, 0.1);
        }

        .search-bar-wrapper .btn-search {
            border-radius: 999px;
            background: var(--accent);
            color: #fff;
            padding: 10px 20px;
            border: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .search-bar-wrapper .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(18, 58, 72, 0.25);
        }

        /* Information sur les résultats */
        .search-results-info {
            text-align: center;
            padding: 8px 20px;
            background: var(--bg-sub);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 14px;
            color: var(--text-muted);
            display: inline-block;
            margin: 0 auto 24px auto;
        }

        [data-theme="dark"] .search-results-info {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
        }

        /* État vide */
        .prompts-empty {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all var(--transition-speed) ease;
        }

        .prompts-empty i {
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .prompts-empty h3 {
            font-size: 20px;
            color: var(--text-title);
            margin-bottom: 8px;
        }

        .prompts-empty p {
            color: var(--text-muted);
        }

        .prompts-empty .btn-reset {
            background: var(--accent);
            color: #fff;
            border-radius: 999px;
            padding: 10px 30px;
            text-decoration: none;
            display: inline-block;
            margin-top: 12px;
            transition: all 0.3s ease;
        }

        .prompts-empty .btn-reset:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(18, 58, 72, 0.25);
        }

        /* Pagination - identique à blog.php */
        .prompts-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .pagination-prev,
        .pagination-next {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid var(--border);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .pagination-prev:hover,
        .pagination-next:hover {
            color: var(--text-title);
            background: var(--bg-card);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .pagination-pages {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .pagination-pages a,
        .pagination-pages span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 8px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid transparent;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .pagination-pages a:hover {
            color: var(--text-title);
            background: var(--bg-card);
            border-color: var(--border);
            transform: translateY(-2px);
        }

        .pagination-pages a.active {
            color: #fff;
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 4px 15px rgba(18, 58, 72, 0.2);
        }

        .pagination-pages span {
            color: var(--text-muted);
            background: transparent;
            cursor: default;
        }

        .pagination-info {
            text-align: center;
            margin-top: 12px;
            color: var(--text-muted);
            font-size: 13px;
        }

        /* ============================================
           RESPONSIVE - Identique à blog.php
           ============================================ */
        @media (max-width: 968px) {
            .prompts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .prompt-card-body h3 {
                font-size: 16px;
            }

            .prompts-filters {
                gap: 8px;
            }

            .filter-btn {
                font-size: 13px;
                padding: 6px 16px;
            }
        }

        @media (max-width: 600px) {
            .prompts-section {
                padding: 10px 0 40px 0;
            }

            .prompts-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .prompt-card-body {
                padding: 14px 16px 10px 16px;
            }

            .prompt-card-body h3 {
                font-size: 15px;
            }

            .prompt-card-body .prompt-objectif {
                font-size: 13px;
            }

            .prompt-card-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .prompts-filters {
                gap: 6px;
            }

            .filter-btn {
                font-size: 12px;
                padding: 4px 12px;
            }

            .filter-count {
                min-width: 18px;
                height: 18px;
                font-size: 10px;
                padding: 0 6px;
            }

            .prompts-pagination {
                gap: 8px;
            }

            .pagination-prev,
            .pagination-next {
                font-size: 13px;
                padding: 8px 14px;
            }

            .pagination-pages a,
            .pagination-pages span {
                min-width: 34px;
                height: 34px;
                font-size: 13px;
            }

            .btn-voir-prompt {
                width: 100%;
                justify-content: center;
            }

            .search-results-info {
                font-size: 13px;
                padding: 6px 14px;
            }

            .search-bar-wrapper form {
                max-width: 100%;
                padding: 0 10px;
            }

            /* Désactiver les délais d'animation sur mobile */
            .prompt-card {
                animation-delay: 0s !important;
            }
        }

        @media (max-width: 400px) {
            .prompt-card-body h3 {
                font-size: 14px;
            }

            .filter-btn {
                font-size: 11px;
                padding: 3px 10px;
            }
        }