:root {
            /* Couleurs Resolute */
            --primary-blue: #1B3D5F;
            --primary-yellow: #F7B52C;
            --light-yellow: #FDD675;
            --dark-blue: #0F2438;
            --accent-blue: #2E5A7D;
            --white: #ffffff;
            --light-gray: #F8FAFC;
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --border-light: #E5E7EB;
            --success-color: #28a745;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, var(--light-gray) 0%, #E0E7FF 100%);
            color: var(--text-dark);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Header moderne */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .top-bar a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            padding: 12px 20px;
            border-radius: 12px;
        }

        .top-bar a:hover {
            color: var(--primary-blue);
            background: var(--light-gray);
            transform: translateX(-4px);
        }

        .logo {
            width: 70px;
            height: 50px;
          
           
        }

        /* Container principal */
        .container {
            max-width: 1400px;
            margin: 100px auto 0;
            padding: 2rem;
        }

        /* Section hero */
        .header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 1rem;
        }

        .header h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .header p {
            font-size: 1.25rem;
            color: var(--text-light);
            font-weight: 500;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Section filtres */
        .filter-section {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-light);
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .filter-group {
            position: relative;
        }

        .filter-label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-select {
            width: 100%;
            padding: 18px 24px;
            border: 2px solid var(--border-light);
            border-radius: 16px;
            background: white;
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            appearance: none;
            cursor: pointer;
            position: relative;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 4px rgba(247, 181, 44, 0.1);
            transform: translateY(-2px);
        }

        .filter-group::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid var(--text-light);
            pointer-events: none;
            margin-top: 14px;
        }

        .filter-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 36px;
            border: none;
            border-radius: 16px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
            color: var(--primary-blue);
            box-shadow: 0 8px 20px rgba(247, 181, 44, 0.3);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(247, 181, 44, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--border-light);
        }

        .btn-secondary:hover {
            background: var(--light-gray);
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* Section résultats */
        .results-section {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-light);
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--light-gray);
        }

        .results-count {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .results-count::before {
            content: '';
            width: 4px;
            height: 30px;
            background: var(--primary-yellow);
            border-radius: 2px;
        }

        /* Cards d'offres modernes */
        .job-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-yellow);
        }

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

        .job-header {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .job-logo {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.2rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(27, 61, 95, 0.3);
        }

        .job-info {
            flex: 1;
        }

        .job-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            text-decoration: none;
            line-height: 1.3;
            cursor: pointer;
        }

        .job-title:hover {
            color: var(--primary-yellow);
        }

        .job-company {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .job-tag {
            background: var(--light-gray);
            color: var(--text-dark);
            padding: 10px 16px;
            border-radius: 12px;
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border-light);
            transition: all 0.2s ease;
        }

        .job-tag.primary {
            background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
            color: var(--primary-blue);
            border: none;
        }

        .job-tag.time {
            background: rgba(27, 61, 95, 0.1);
            color: var(--primary-blue);
            border: 1px solid rgba(27, 61, 95, 0.2);
        }

        .job-tag.deadline {
            background: rgba(247, 181, 44, 0.1);
            color: #D4941C;
            border: 1px solid rgba(247, 181, 44, 0.2);
        }

        .job-tag i {
            font-size: 0.75rem;
        }

        .job-tag:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Styles pour les boutons de partage */
        .share-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: flex-end;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }

        .share-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-right: 0.5rem;
        }

        .share-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
            cursor: pointer;
            border: none;
            background: none;
        }

        .share-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .share-linkedin {
            background: #0077b5;
            color: white;
        }

        .share-linkedin:hover {
            background: #005582;
            color: white;
        }

        .share-whatsapp {
            background: #25d366;
            color: white;
        }

        .share-whatsapp:hover {
            background: #1da851;
            color: white;
        }

        .share-copy {
            background: #6c757d;
            color: white;
        }

        .share-copy:hover {
            background: #5a6268;
            color: white;
        }

        /* Toast notification */
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--success-color);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            z-index: 1000;
            transform: translateX(400px);
            transition: transform 0.3s ease;
        }

        .toast.show {
            transform: translateX(0);
        }

        /* État vide */
        .empty-state {
            text-align: center;
            padding: 5rem 2rem;
            color: var(--text-light);
        }

        .empty-state i {
            font-size: 5rem;
            margin-bottom: 2rem;
            color: var(--primary-yellow);
            opacity: 0.7;
        }

        .empty-state h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .empty-state p {
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .filter-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
                margin-top: 90px;
            }

            .top-bar {
                padding: 0 1rem;
                height: 70px;
            }

            .filter-section,
            .results-section {
                padding: 1.5rem;
            }

            .filter-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .job-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .job-logo {
                align-self: center;
            }

            .filter-actions {
                flex-direction: column;
            }

            .results-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .header {
                padding: 2rem 1rem;
                margin-bottom: 2rem;
            }

            .job-tags {
                justify-content: center;
            }

            .share-actions {
                justify-content: center;
            }

            .share-label {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .job-tags {
                flex-direction: column;
                align-items: center;
            }

            .job-tag {
                justify-content: center;
                min-width: 120px;
            }

            .top-bar a span {
                display: none;
            }
        }

        /* Animations */
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .job-card {
            animation: slideUp 0.5s ease-out;
            animation-fill-mode: both;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    