/* CONFIGURATION REVUE PROFESSIONNELLE - ADAPTÉ AU THÈME */
html { scroll-behavior: smooth; }
body { 
    background-color: var(--bg-color); 
    color: var(--text-color); 
    margin: 0; 
    padding: 0; 
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 25px;
    font-family: 'Georgia', Times, serif;
    line-height: 1.8;
    color: var(--section-text);
    background-color: var(--section-bg);
}

/* SOMMAIRE */
.article-summary {
    background: var(--section-bg);
    padding: 30px;
    border-left: 5px solid var(--accent);
    margin: 40px 0;
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.article-summary h4 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--section-text);
    opacity: 0.7;
}

.article-summary ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.article-summary li {
    margin-bottom: 8px;
}

.article-summary a { 
    color: var(--text-color); 
    text-decoration: none;
    font-size: 0.95rem;
}

.article-summary a:hover { 
    color: var(--accent); 
}

/* TABLE OF CONTENTS (Alternative style) */
.table-of-contents {
    background: var(--section-bg);
    padding: 30px;
    border-left: 5px solid var(--accent);
    margin: 40px 0;
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.table-of-contents h3 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--section-text) !important;
    opacity: 0.7;
    font-weight: 700;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a { 
    color: var(--text-color); 
    text-decoration: none;
    font-size: 0.95rem;
}

.table-of-contents a:hover { 
    color: var(--accent); 
}

/* TITRAGE */
.article-content h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--text-color);
}

.article-content h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    margin: 60px 0 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 3px solid var(--accent);
    padding-top: 15px;
    color: var(--text-color);
}

.article-content h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    margin: 40px 0 15px;
    color: var(--accent);
    font-weight: 700;
}

.article-content h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin: 30px 0 12px;
    color: var(--text-color);
    font-weight: 600;
}

/* LETTRINE */
.drop-cap::first-letter {
    font-family: 'Arial', sans-serif;
    float: left;
    font-size: 5.5rem;
    line-height: 0.8;
    margin: 10px 15px 0 0;
    font-weight: 900;
    color: #1E90FF;
}

/* META INFO */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0 40px;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--section-text);
    opacity: 0.7;
}

.article-meta span {
    display: inline-block;
}

/* INTRO / LEAD */
.intro {
    margin: 40px 0;
}

.lead {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* PARAGRAPHES */
.article-content p { 
    margin-bottom: 25px; 
    font-size: 1.2rem; 
    text-align: justify; 
}

/* LISTES */
.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content li {
    margin-bottom: 12px;
}

/* IMAGES */
.article-content figure { 
    margin: 45px 0; 
}

.article-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border);
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.article-content figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--section-text);
    opacity: 0.7;
    text-align: center;
    font-family: 'Arial', sans-serif;
    padding-bottom: 10px;
}

/* TABLEAUX */
.specs-table,
.plugin-meta table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: 'Arial', sans-serif;
    background: var(--section-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.specs-table tr,
.plugin-meta table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table tr:first-child,
.plugin-meta table tr:first-child {
    background: var(--header-bg);
    font-weight: 700;
}

.specs-table tr:last-child,
.plugin-meta table tr:last-child {
    border-bottom: none;
}

.specs-table td,
.plugin-meta table td {
    padding: 15px 20px;
    font-size: 1rem;
    text-align: left;
    vertical-align: middle;
}

.specs-table td:first-child,
.plugin-meta table td:first-child {
    color: var(--accent);
    font-weight: 600;
    width: 30%;
}

/* Tableaux de comparaison multi-colonnes */
.specs-table tr:first-child td {
    color: var(--text-color);
    text-align: center;
    font-weight: 700;
}

.specs-table tr:not(:first-child) td:first-child {
    text-align: left;
    color: var(--accent);
}

.specs-table tr:not(:first-child) td:not(:first-child) {
    text-align: center;
    color: var(--section-text);
}

/* Effet hover sur les lignes */
.specs-table tr:not(:first-child):hover,
.plugin-meta table tr:not(:first-child):hover {
    background: var(--header-bg);
    transition: background 0.2s ease;
}

/* Checkmarks et crosses dans tableaux */
.specs-table td:contains("✅"),
.specs-table td:contains("✓") {
    color: #44FF44;
}

.specs-table td:contains("❌"),
.specs-table td:contains("✗") {
    color: #FF4444;
}

/* PLUGIN META */
.plugin-meta {
    background: var(--section-bg);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
    font-family: 'Arial', sans-serif;
    border: 1px solid var(--border);
}

.plugin-meta p {
    margin: 10px 0;
    font-size: 1.05rem;
}

.plugin-meta strong {
    color: var(--accent);
    font-weight: 600;
}

/* INFO BOXES */
.info-box {
    background: var(--section-bg);
    padding: 25px 30px;
    border-left: 4px solid var(--accent);
    margin: 35px 0;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    border: 1px solid var(--border);
}

.info-box h4 {
    margin-top: 0;
    color: var(--accent);
    font-size: 1.1rem;
}

.info-box p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* WARNING BOXES */
.warning-box {
    background: var(--section-bg);
    padding: 25px 30px;
    border-left: 4px solid #FF4444;
    margin: 35px 0;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    border: 1px solid var(--border);
}

.warning-box h4 {
    margin-top: 0;
    color: #FF4444;
    font-size: 1.1rem;
}

.warning-box p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* SUCCESS BOXES */
.success-box {
    background: linear-gradient(135deg, #1C2C1C 0%, #253A25 100%);
    padding: 25px 30px;
    border-left: 4px solid #44FF44;
    margin: 35px 0;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
}

.success-box h4 {
    margin-top: 0;
    color: #44FF44;
    font-size: 1.1rem;
}

.success-box p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* SOCIAL SHARE */
.social-share {
    margin: 40px 0;
    padding: 25px;
    background: #1C1C1E;
    border-radius: 8px;
    text-align: center;
}

.social-share h4 {
    margin-top: 0;
    color: #F5F5F7;
    font-family: 'Arial', sans-serif;
}

.social-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.linkedin {
    background: #0A66C2;
    color: white;
}

/* VERDICT / CONCLUSION */
.verdict-section {
    background: linear-gradient(135deg, #1C1C1E 0%, #252527 100%);
    padding: 35px;
    border-radius: 12px;
    margin: 50px 0;
    border: 2px solid #1E90FF;
}

.verdict-section h2 {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros, .cons {
    background: #1C1C1E;
    padding: 25px;
    border-radius: 8px;
}

.pros h3 {
    color: #44FF44;
    margin-top: 0;
}

.cons h3 {
    color: #FF4444;
    margin-top: 0;
}

.pros ul li::before {
    content: "✓ ";
    color: #44FF44;
    font-weight: bold;
    margin-right: 8px;
}

.cons ul li::before {
    content: "✗ ";
    color: #FF4444;
    font-weight: bold;
    margin-right: 8px;
}

/* RATING */
.rating {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin: 25px 0;
    font-family: 'Arial', sans-serif;
}

.rating-stars {
    color: #FFD700;
    font-size: 2rem;
}

.rating-score {
    color: #1E90FF;
    font-weight: 800;
    font-size: 2.5rem;
}

/* BREADCRUMBS */
.breadcrumbs {
    background: #1C1C1E;
    padding: 15px 25px;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #1E90FF;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #888;
    margin: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .article-content h1 { 
        font-size: 2.2rem; 
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .article-content p { 
        text-align: left;
        font-size: 1.1rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .article-summary,
    .table-of-contents {
        padding: 20px;
    }
    
    .social-share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}
