/*
Theme Name: JeuxVideoGeek
Theme URI: https://jeuxvideogeek.com
Author: JeuxVideoGeek
Author URI: https://jeuxvideogeek.com
Description: Thème WordPress moderne pour site de jeux vidéo, entièrement compatible avec Elementor
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jeuxvideogeek
Tags: gaming, blog, elementor, responsive, modern
*/

/* Reset général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

#page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.site-footer,
#colophon {
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --jvg-primary: #ff0080;
    --jvg-secondary: #00d4ff;
    --jvg-dark: #1a1a2e;
    --jvg-light: #f5f5f5;
    --jvg-text: #333333;
    --jvg-text-light: #666666;
    --jvg-border: #e0e0e0;
    --jvg-gradient: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
    --jvg-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --jvg-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
    --jvg-transition: all 0.3s ease;
}

/* Container principal */
.jvg-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.jvg-article {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--jvg-shadow);
}

/* En-tête de l'article */
.jvg-article-header {
    padding: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), #ffffff);
}

.jvg-article-meta-top {
    margin-bottom: 20px;
}

.jvg-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.jvg-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--jvg-gradient);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    transition: var(--jvg-transition);
}

.jvg-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--jvg-shadow);
}

.jvg-article-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--jvg-dark);
    margin: 0 0 30px 0;
    background: var(--jvg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Méta-informations */
.jvg-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--jvg-border);
}

.jvg-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--jvg-text-light);
    font-size: 14px;
}

.jvg-meta-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.jvg-author {
    font-weight: 600;
    color: var(--jvg-text);
}

.jvg-author-avatar {
    border-radius: 50%;
    border: 2px solid var(--jvg-primary);
}

.jvg-author-name {
    font-weight: 700;
}

/* Image mise en avant */
.jvg-featured-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--jvg-dark);
}

.jvg-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.jvg-img-responsive {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--jvg-transition);
}

.jvg-featured-image:hover .jvg-img-responsive {
    transform: scale(1.05);
}

/* Contenu de l'article */
.jvg-article-content {
    padding: 60px 40px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--jvg-text);
}

.jvg-article-content p {
    margin-bottom: 24px;
}

.jvg-article-content h2,
.jvg-article-content h3,
.jvg-article-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--jvg-dark);
}

.jvg-article-content h2 {
    font-size: 36px;
    padding-left: 20px;
    border-left: 5px solid var(--jvg-primary);
}

.jvg-article-content h3 {
    font-size: 28px;
}

.jvg-article-content h4 {
    font-size: 22px;
}

.jvg-article-content a {
    color: var(--jvg-primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--jvg-transition);
}

.jvg-article-content a:hover {
    border-bottom-color: var(--jvg-primary);
}

.jvg-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: var(--jvg-shadow);
}

.jvg-article-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: var(--jvg-light);
    border-left: 5px solid var(--jvg-secondary);
    font-style: italic;
    font-size: 20px;
    color: var(--jvg-text);
}

.jvg-article-content ul,
.jvg-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.jvg-article-content li {
    margin-bottom: 10px;
}

.jvg-article-content code {
    background: var(--jvg-dark);
    color: var(--jvg-secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.jvg-article-content pre {
    background: var(--jvg-dark);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
}

.jvg-article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Footer de l'article (tags) */
.jvg-article-footer {
    padding: 30px 40px;
    background: var(--jvg-light);
    border-top: 1px solid var(--jvg-border);
}

.jvg-tags {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jvg-tags svg {
    flex-shrink: 0;
    color: var(--jvg-primary);
}

.jvg-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jvg-tag-list a {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    color: var(--jvg-text);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: var(--jvg-transition);
    border: 1px solid var(--jvg-border);
}

.jvg-tag-list a:hover {
    background: var(--jvg-primary);
    color: #ffffff;
    border-color: var(--jvg-primary);
    transform: translateY(-2px);
}

/* Partage social */
.jvg-social-share {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid var(--jvg-border);
}

.jvg-share-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--jvg-dark);
    margin-bottom: 20px;
}

.jvg-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.jvg-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    transition: var(--jvg-transition);
    text-decoration: none;
}

.jvg-share-facebook {
    background: #1877f2;
}

.jvg-share-twitter {
    background: #1da1f2;
}

.jvg-share-linkedin {
    background: #0a66c2;
}

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

.jvg-share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--jvg-shadow-hover);
}

/* Navigation entre articles */
.jvg-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
    border-top: 1px solid var(--jvg-border);
}

.jvg-nav-previous,
.jvg-nav-next {
    min-height: 100px;
}

.jvg-nav-link {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--jvg-light);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--jvg-transition);
    height: 100%;
}

.jvg-nav-link:hover {
    background: var(--jvg-gradient);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--jvg-shadow-hover);
}

.jvg-nav-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--jvg-text-light);
    margin-bottom: 10px;
}

.jvg-nav-link:hover .jvg-nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.jvg-nav-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--jvg-dark);
}

.jvg-nav-link:hover .jvg-nav-title {
    color: #ffffff;
}

.jvg-nav-next .jvg-nav-link {
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .jvg-article-container {
        padding: 20px 10px;
    }

    .jvg-article-header {
        padding: 30px 20px;
    }

    .jvg-article-title {
        font-size: 32px;
    }

    .jvg-article-meta {
        gap: 15px;
    }

    .jvg-article-content {
        padding: 40px 20px;
        font-size: 16px;
    }

    .jvg-article-content h2 {
        font-size: 28px;
    }

    .jvg-article-content h3 {
        font-size: 22px;
    }

    .jvg-article-footer,
    .jvg-social-share {
        padding: 20px;
    }

    .jvg-post-navigation {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .jvg-nav-next .jvg-nav-link {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .jvg-article-title {
        font-size: 24px;
    }

    .jvg-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .jvg-share-buttons {
        gap: 10px;
    }

    .jvg-share-btn {
        width: 45px;
        height: 45px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jvg-article {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================================================
   STYLES POUR SINGLE ARTICLE (PAGE ARTICLE UNIQUE)
   ========================================================================== */

/* Article unique */
.jvg-single-article {
    background: #fff;
}

/* Image de mise en avant pleine largeur avec titre superposé */
.jvg-single-featured-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.jvg-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Overlay sur l'image */
.jvg-single-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    padding: 80px 40px 50px;
    z-index: 2;
    pointer-events: none;
}

.jvg-single-overlay-content {
    max-width: 1200px;
    margin: 0 auto;
}

.jvg-single-title-overlay {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff !important;
    margin: 0;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.5px;
}

/* Container du contenu */
.jvg-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.jvg-single-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Header avec métadonnées et boutons sociaux */
.jvg-single-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

/* Métadonnées : Avatar + Pseudo + Date */
.jvg-single-meta {
    flex: 1;
}

.jvg-single-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jvg-single-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #2F7CFF;
}

.jvg-single-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jvg-single-author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.jvg-single-date {
    font-size: 13px;
    color: #999;
}

/* Boutons de partage et interactions */
.jvg-single-social-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Boutons de partage social */
.jvg-social-share-buttons {
    display: flex;
    gap: 10px;
}

.jvg-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.jvg-share-facebook {
    background: #1877f2;
}

.jvg-share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.jvg-share-twitter {
    background: #1da1f2;
}

.jvg-share-twitter:hover {
    background: #0c85d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

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

.jvg-share-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

/* Boutons Like/Dislike */
.jvg-like-dislike-buttons {
    display: flex;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid #e5e5e5;
}

.jvg-like-btn,
.jvg-dislike-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.jvg-like-btn:hover {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #4caf50;
    transform: translateY(-2px);
}

.jvg-like-btn.active {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.jvg-like-btn.active svg {
    fill: white;
}

.jvg-dislike-btn:hover {
    background: #ffebee;
    border-color: #f44336;
    color: #f44336;
    transform: translateY(-2px);
}

.jvg-dislike-btn.active {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.jvg-dislike-btn.active svg {
    fill: white;
}

.jvg-like-count,
.jvg-dislike-count {
    font-size: 13px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .jvg-single-title-overlay {
        font-size: 32px;
    }
    
    .jvg-single-meta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .jvg-single-social-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .jvg-like-dislike-buttons {
        padding-left: 0;
        border-left: none;
    }
}

/* Contenu de l'article */
.jvg-single-article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.jvg-single-article-content p {
    margin-bottom: 20px;
}

.jvg-single-article-content h2,
.jvg-single-article-content h3,
.jvg-single-article-content h4 {
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.jvg-single-article-content h2 {
    font-size: 32px;
    padding-left: 15px;
    border-left: 4px solid #2F7CFF;
}

.jvg-single-article-content h3 {
    font-size: 26px;
}

.jvg-single-article-content h4 {
    font-size: 20px;
}

.jvg-single-article-content a {
    color: #2F7CFF;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.jvg-single-article-content a:hover {
    color: #1a5acc;
}

.jvg-single-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Vidéos et iframes en pleine largeur */
.jvg-single-article-content iframe,
.jvg-single-article-content video,
.jvg-single-article-content embed,
.jvg-single-article-content object {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.jvg-single-article-content iframe {
    aspect-ratio: 16 / 9;
    min-height: 500px;
}

/* Container responsive pour vidéos embed */
.jvg-single-article-content .wp-block-embed,
.jvg-single-article-content .wp-embed-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    margin: 30px 0;
}

.jvg-single-article-content .wp-block-embed iframe,
.jvg-single-article-content .wp-embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.jvg-single-article-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: #f8f8f8;
    border-left: 4px solid #2F7CFF;
    font-style: italic;
    font-size: 18px;
    color: #555;
}

.jvg-single-article-content ul,
.jvg-single-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.jvg-single-article-content li {
    margin-bottom: 10px;
}

.jvg-single-article-content code {
    background: #f4f4f4;
    color: #e83e8c;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.jvg-single-article-content pre {
    background: #2d2d2d;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
}

.jvg-single-article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Tags */
.jvg-single-tags {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.jvg-single-tags .tag-label {
    font-weight: 700;
    margin-right: 10px;
    color: #666;
}

.jvg-single-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: #2F7CFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: background 0.2s ease;
}

.jvg-single-tags a:hover {
    background: #1a5acc;
}

/* Navigation entre articles */
.jvg-single-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.jvg-nav-previous,
.jvg-nav-next {
    font-size: 14px;
}

.jvg-nav-next {
    text-align: right;
}

.jvg-single-navigation a {
    color: #2F7CFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.jvg-single-navigation a:hover {
    color: #1a5acc;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .jvg-single-title {
        font-size: 28px;
    }
    
    .jvg-single-article-content {
        font-size: 16px;
    }
    
    .jvg-single-article-content h2 {
        font-size: 24px;
    }
    
    .jvg-single-article-content h3 {
        font-size: 20px;
    }
    
    .jvg-single-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .jvg-nav-next {
        text-align: left;
    }
}

/* ==========================================================================
   COMMENTAIRES - Design moderne et épuré
   ========================================================================== */

.comments-area {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid #e8e8e8;
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}

/* Enlever la numérotation des commentaires */
.comment-list > li::before,
.children > li::before {
    display: none !important;
    content: none !important;
}

/* Commentaire individuel */
.comment {
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    list-style: none;
}

.comment:last-child {
    border-bottom: none;
}

.comment-body {
    display: flex;
    gap: 20px;
}

/* Avatar */
.comment-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    border: 2px solid #f0f0f0;
}

/* Zone de contenu */
.comment-content-wrapper {
    flex: 1;
    min-width: 0;
}

/* Header du commentaire */
.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-author .fn {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.comment-author .fn:hover {
    color: #2F7CFF;
}

.comment-author .says {
    display: none;
}

/* Métadonnées */
.comment-metadata {
    font-size: 13px;
    color: #999;
}

.comment-metadata a {
    color: #999;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #666;
}

/* Contenu du commentaire */
.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2e2e;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    word-wrap: break-word;
}7;
    color: #333;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    word-wrap: break-word;
}

.comment-content p {
    margin: 0 0 12px 0;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

/* Actions du commentaire */
.reply {
    margin-top: 12px;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #2F7CFF;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.comment-reply-link:hover {
    background: #2F7CFF;
    color: white;
    border-color: #2F7CFF;
}

.comment-reply-link::before {
    content: "↩"
    list-style: none;
    margin-left: 64px;
    margin-top: 0;
    padding: 0;76px;
    margin-top: 20px;
    padding: 0;
}

.children .comment {
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}50px;
    padding: 35px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.comment-reply-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25

.comment-reply-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a2e2e;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.comment-reply-title small {
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
}

.comment-reply-title small a {
    color: #2F7CFF;
    text-decoration: none;
}

.comment-reply-title small a:hover {
    text-decoration: underline;
}

/* Formulaire */
.comment-form {
    display: grid;
    gap: 16px;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: #2a2e2e;
    margin-bottom: 8px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.comment-form .required {
    color: #ef4444;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c5d0d8;
    border-radius: 4px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.2s ease;
    background: #fff;
    color: #2a2e2e;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #2F7CFF;
    box-shadow: 0 0 0 1px #2F7CFF;
}

.comment-form textarea {
    min-height: 100px;
    resize: ve2px 28px;
    background: #2F7CFF;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.comment-form .submit:hover {
    background: #1a5acc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 124, 255, 0.3)
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.comment-form .submit:hover {
    background: #1a5acc;
}

/* Modération */
.comment-awaiting-moderation {
    display: inline-block;
    padding: 6px 12px;
    background: #fff3cd;
    color: #856404;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 8px;
    border: 1px solid #ffeaa7;
}

/* Aucun commentaire */
.no-comments {
    padding: 40px;
    text-align: center;
    color: #687a86;
    font-size: 15px;
    background: #f9fafb;
    border-radius: 4px;
}

/* ==========================================================================
   STYLES POUR LA PAGE D'ARCHIVE
   ========================================================================== */

/* Container principal de l'archive */
.jvg-archive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: visible;
    width: 100%;
}

.jvg-archive-content {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.jvg-archive-main {
    min-width: 0;
    width: 100%;
}

/* En-tête de l'archive */
.jvg-archive-header {
    margin-bottom: 40px;
}

.jvg-archive-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--jvg-dark);
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 4px solid #2F7CFF;
    position: relative;
}

/* Liste des articles */
.jvg-articles-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    width: 100%;
}

/* Article item - Carte blanche */
.jvg-article-item {
    display: grid !important;
    grid-template-columns: 270px 1fr !important;
    gap: 0 !important;
    background: #ffffff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.jvg-article-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

/* Image de l'article */
.jvg-article-image {
    width: 270px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.jvg-article-image a {
    display: block;
    height: 100%;
}

.jvg-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 180px;
}

/* Corps de l'article */
.jvg-article-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Compteur de commentaires avec emoji */
.jvg-comment-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    color: #999;
}

/* Ligne de métadonnées */
.jvg-article-meta-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.jvg-category-badge {
    background: #007bff;
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.jvg-post-date {
    color: #888;
    font-size: 12px;
}

/* Titre de l'article */
.jvg-post-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #222;
    padding-right: 35px;
}

.jvg-post-title a {
    color: #222;
    text-decoration: none;
}

.jvg-post-title a:hover {
    color: #007bff;
}

/* Extrait */
.jvg-post-excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

/* Lien 'Lire la suite' */
.jvg-read-more-link {
    color: #007bff;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.jvg-read-more-link:hover {
    text-decoration: underline;
}

/* Responsive pour archives */
@media (max-width: 1024px) {
    .jvg-archive-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .jvg-article-item {
        grid-template-columns: 1fr;
    }
    
    .jvg-article-image {
        width: 100%;
        height: 200px;
    }
    
    .jvg-post-title {
        padding-right: 0;
    }
}

.jvg-read-more-link:hover {
    text-decoration: underline;
}

/* Sidebar */
.jvg-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.jvg-widget {
    background: #1E3A5F;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    color: white;
}

.jvg-widget .widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    color: white;
}

/* Widget Partenaires */
.jvg-partners-widget {
    background: #1E3A5F;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Widget Les + Aimés / Hypés */
.jvg-popular-widget,
.jvg-hyped-widget {
    background: transparent;
    padding: 0;
}

.jvg-popular-widget .widget-title,
.jvg-hyped-widget .widget-title {
    color: var(--jvg-dark);
    padding: 15px 20px;
    background: linear-gradient(90deg, #FF0080 0%, #FF00F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.jvg-popular-item,
.jvg-hyped-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 120px;
}

.jvg-popular-item .popular-thumbnail,
.jvg-hyped-item .hyped-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jvg-popular-item img,
.jvg-hyped-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jvg-popular-item::before,
.jvg-hyped-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.jvg-popular-item .popular-content,
.jvg-hyped-item .hyped-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 2;
}

.jvg-popular-item h4,
.jvg-hyped-item h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.jvg-popular-item h4 a,
.jvg-hyped-item h4 a {
    color: white;
    text-decoration: none;
}

.jvg-popular-item h4 a:hover,
.jvg-hyped-item h4 a:hover {
    color: #2F7CFF;
}

.popular-likes,
.hyped-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

/* Pagination */
.jvg-pagination {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.jvg-pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jvg-pagination-list li {
    margin: 0;
}

.jvg-pagination a,
.jvg-pagination span {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
}

.jvg-pagination a:hover {
    background: #2F7CFF;
    color: white;
    border-color: #2F7CFF;
}

.jvg-pagination .current {
    background: #2F7CFF;
    color: white;
    border-color: #2F7CFF;
    font-weight: 700;
}

.jvg-pagination .dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* ============================================
   HEADER MODERNE
   ============================================ */

.jvg-modern-header {
    background: linear-gradient(135deg, #1a2540 0%, #2c3e5f 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.jvg-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Left Section */
.jvg-header-left {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
}

/* Brand / Logo */
.jvg-brand {
    flex-shrink: 0;
}

.jvg-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.jvg-brand-link:hover {
    transform: translateY(-2px);
}

.jvg-brand-link i {
    font-size: 32px;
    background: linear-gradient(135deg, #4a90e2 0%, #7b68ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jvg-brand-text {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.jvg-brand img {
    max-height: 45px;
    width: auto;
}

/* Navigation */
.jvg-nav {
    flex: 1;
}

.jvg-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jvg-nav-menu li {
    margin: 0;
    position: relative;
}

.jvg-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 18px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.jvg-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #7b68ee);
    transition: width 0.3s ease;
}

.jvg-nav-menu > li > a:hover {
    color: #fff;
}

.jvg-nav-menu > li > a:hover::after,
.jvg-nav-menu > li.current-menu-item > a::after {
    width: 100%;
}

.jvg-nav-menu > li.current-menu-item > a {
    color: #fff;
}

/* Sous-menus */
.jvg-nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a2540;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 8px;
}

.jvg-nav-menu li:hover > .sub-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.jvg-nav-menu .sub-menu a {
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.jvg-nav-menu .sub-menu a:hover {
    background: rgba(74, 144, 226, 0.15);
    color: #fff;
}

/* Right Section */
.jvg-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.jvg-search-toggle,
.jvg-mobile-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jvg-search-toggle:hover {
    background: rgba(74, 144, 226, 0.3);
    transform: scale(1.1);
}

.jvg-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.jvg-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* User Area */
.jvg-user-avatar {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.jvg-user-avatar:hover {
    border-color: #4a90e2;
    transform: scale(1.05);
}

.jvg-user-avatar img {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.jvg-login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4a90e2 0%, #7b68ee 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.jvg-login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

/* Search Overlay */
.jvg-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 64, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jvg-search-container {
    position: relative;
    width: 90%;
    max-width: 700px;
}

.jvg-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.jvg-search-input {
    flex: 1;
    border: none;
    padding: 20px 30px;
    font-size: 18px;
    outline: none;
}

.jvg-search-submit {
    background: linear-gradient(135deg, #4a90e2 0%, #7b68ee 100%);
    border: none;
    color: #fff;
    padding: 20px 35px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.jvg-search-submit:hover {
    transform: scale(1.05);
}

.jvg-search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.jvg-search-close:hover {
    background: #fff;
    color: #1a2540;
    transform: rotate(90deg);
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .jvg-header-left {
        gap: 30px;
    }
    
    .jvg-nav-menu > li > a {
        padding: 22px 14px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .jvg-header-container {
        padding: 0 20px;
        height: 60px;
    }
    
    .jvg-nav {
        display: none;
    }
    
    .jvg-mobile-toggle {
        display: flex;
    }
    
    .jvg-login-link span {
        display: none;
    }
    
    .jvg-brand-text {
        font-size: 20px;
    }
}

/* Header et Footer par défaut */
.site-header {
    background: var(--jvg-dark);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: #2F7CFF;
}

.site-footer {
    background: var(--jvg-dark);
    color: white;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .jvg-archive-content {
        grid-template-columns: 1fr;
    }
    
    .jvg-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .jvg-article-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .jvg-article-image img {
        width: 100%;
    }
    
    .jvg-archive-title {
        font-size: 28px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

        display: none;
    }

    .jvg-article {
        box-shadow: none;
    }
}
