
    :root {
        --primary: #ff6933;
        --background-light: #f8f6f5;
        --border-light: #f4eae6;
        --text-main: #1d110c;
        --text-muted: #a15d45;
        --politique: #e11d48;
        --sport: #2563eb;
        --culture: #0891b2;
        --economie: #16a34a;
        --societe: #ff6933;
        --secondary: #2D5016;
        --border-color: #f4eae6;
    }

    body {
        font-family: 'Work Sans', sans-serif;
        background-color: var(--background-light);
        color: var(--text-main);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }

        /* Header Styles */
    .navbar-custom {
        background-color: rgba(248, 246, 245, 0.95);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
    }

    .navbar-brand-custom {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
    }

    .logo-icon {
        background-image: url('images/logo.png');
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: center;
    }

    .brand-text {
        font-size: 1.25rem;
        font-weight: 900;
        color: var(--secondary);
        margin: 0;
    }

    .nav-link-custom {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-dark);
        padding: 0.5rem 0;
        margin: 0 1rem;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: all 0.3s;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    .search-box {
        background-color: var(--border-color);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        padding: 0.5rem 1rem;
        max-width: 320px;
    }

    .search-box input {
        border: none;
        background: transparent;
        outline: none;
        width: 100%;
        padding: 0 0.5rem;
        font-size: 0.875rem;
    }

    .search-box input::placeholder {
        color: var(--text-muted);
    }

    .btn-subscribe {
        background-color: var(--primary);
        color: white;
        font-weight: 700;
        padding: 0.5rem 1.25rem;
        border: none;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        transition: all 0.3s;
    }

    .btn-subscribe:hover {
        background-color: var(--primary);
        opacity: 0.9;
        transform: scale(1.02);
    }

    /* Page Heading */
    .page-title {
        font-size: 3rem;
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: -0.033em;
    }

    .page-subtitle {
        color: var(--text-muted);
        font-size: 1.125rem;
        font-weight: 500;
    }

    .update-badge {
        background-color: rgba(255, 105, 51, 0.1);
        color: var(--primary);
        font-size: 0.875rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Filter Chips */
    .bri {
        height: 40px;
        padding: 0 1.5rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        border: 1px solid var(--border-light);
        background: white;
        color: var(--text-main);
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .bri:hover {
        border-color: var(--primary);
    }

    .bri.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        box-shadow: 0 10px 25px rgba(255, 105, 51, 0.2);
    }

    /* Article Cards */
    .article-card {
        background: white;
        border-radius: 0.75rem;
        overflow: hidden;
        border: 1px solid var(--border-light);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .article-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .article-image {
        width: 100%;
        aspect-ratio: 16/9;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .category-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 0.625rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 0.25rem 0.75rem;
        border-radius: 0.25rem;
        color: white;
    }

    .badge-politique {
        background-color: var(--politique);
    }

    .badge-sport {
        background-color: var(--sport);
    }

    .badge-culture {
        background-color: var(--culture);
    }

    .badge-economie {
        background-color: var(--economie);
    }

    .badge-societe {
        background-color: var(--societe);
    }

    .article-body {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .article-date {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
    }

    .article-title {
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-main);
    }
    
        
        

    .article-card:hover .article-title {
        color: var(--primary);
    }

    .article-excerpt {
        font-size: 0.875rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        
    }

    .btn-read-more {
        background-color: rgba(255, 105, 51, 0.1);
        color: var(--primary);
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-weight: 700;
        font-size: 0.875rem;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: auto;
        width: 100%;
    }

    .btn-read-more:hover {
        background-color: var(--primary);
        color: white;
    }

    /* Pagination */
    .pagination-custom {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem 0;
    }

    .page-link-custom {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.875rem;
        transition: all 0.2s;
    }
    .page-link-custom.page-arrow {
        border: 1px solid var(--border-light);
        color: var(--text-main);
    }

    .page-link-custom.page-arrow:hover {
        background-color: rgba(255, 105, 51, 0.05);
    }

    .page-link-custom.page-number {
        color: var(--text-main);
    }

    .page-link-custom.page-number:hover {
        color: var(--primary);
    }

    .page-link-custom.active {
        background-color: var(--primary);
        color: white;
        box-shadow: 0 10px 25px rgba(255, 105, 51, 0.2);
    }

    /* Footer */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    background-image: url('images/logo.png');
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    background-color: var(--text-muted);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
}

.footer-desc {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-bottom a {
    color: #6b7280;
    text-decoration: none;
    margin: 0 0.75rem;
}

.footer-bottom a:hover {
    color: white;
}

    
