/* --- VARIABLES & COULEURS --- */
:root {
    --blanc-creme: #FAF6EE;
    --blanc-pur: #FFFFFF;
    --orange-goupil: #FF6B35;
    --orange-hover: #E05320;
    --bleu-gaming: #1E293B;
    --texte-sombre: #2B2D42;
    --texte-leger: #6C757D;
    --transition: all 0.3s ease;
    --header-hauteur: 80px;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--blanc-creme);
    color: var(--texte-sombre);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    background-color: var(--orange-goupil);
    color: var(--blanc-pur);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--orange-goupil);
    color: var(--blanc-pur);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--orange-goupil);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: rgba(250, 246, 238, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: var(--header-hauteur);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--texte-sombre);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--texte-sombre);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links li:not(.nav-social) a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--orange-goupil);
    transition: var(--transition);
}

.nav-links li:not(.nav-social) a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--orange-goupil);
}

.nav-social i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-social i:hover {
    transform: scale(1.2);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--texte-sombre);
    padding: 5px;
}

/* --- HERO SECTION --- */
#accueil, .game-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-hauteur);
    background: linear-gradient(135deg, var(--bleu-gaming) 0%, #0F172A 100%);
    color: var(--blanc-pur);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--orange-goupil);
    display: block;
    font-size: 3.2rem;
    margin-top: 5px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #94A3B8;
    margin-bottom: 30px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 350px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* --- FIL D'ARIANE / BREADCRUMB (Dans le fond bleu) --- */
.breadcrumb-container {
    background-color: transparent;
    padding: 0 0 25px 0;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
    color: #94A3B8; /* Gris clair élégant sur bleu */
}

.breadcrumb a {
    color: #E2E8F0;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--orange-goupil);
}

.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
    color: #64748B;
}

.breadcrumb li:last-child {
    color: var(--orange-goupil);
    font-weight: 600;
}

.breadcrumb li:last-child::after {
    content: '';
}

/* --- SECTION A PROPOS --- */
#presentation {
    background-color: var(--blanc-pur);
}

.about-box {
    background-color: var(--blanc-creme);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about-info-chips {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.chip {
    background-color: var(--blanc-pur);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chip i {
    color: var(--orange-goupil);
}

/* --- SECTION UNIVERS & ENCARTS --- */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background-color: var(--blanc-pur);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border-top: 4px solid transparent;
    text-align: center;
}

.action-card:hover {
    transform: translateY(-5px);
    border-top: 4px solid var(--orange-goupil);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.action-icon {
    font-size: 2.5rem;
    color: var(--orange-goupil);
    margin-bottom: 20px;
}

.action-card h3 {
    margin-bottom: 15px;
    color: var(--texte-sombre);
    font-size: 1.4rem;
}

/* --- SECTION CALENDRIER & BADGES --- */
#calendrier {
    background-color: var(--blanc-pur);
}

.calendar-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: var(--blanc-creme);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    overflow-x: auto;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 500px;
}

.calendar-table th, 
.calendar-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.calendar-table th {
    background-color: var(--bleu-gaming);
    color: var(--blanc-pur);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.calendar-table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.calendar-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.calendar-table tr:last-child td {
    border-bottom: none;
}

.calendar-table tr:hover td {
    background-color: rgba(255, 107, 53, 0.05);
}

.badge-dispo {
    background-color: #2ec4b6;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-complet {
    background-color: #e63946;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-special {
    background-color: #9b5de5;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-annule {
    background-color: #6c757d;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-externe {
    background-color: #f15bb5;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- MODALITÉS ADHÉSION & CONTACT --- */
.membership-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--blanc-pur);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.membership-info h3, .other-contact h3 {
    color: var(--bleu-gaming);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.membership-info h3 i, .other-contact h3 i {
    color: var(--orange-goupil);
}

.price-list {
    list-style: none;
    margin-bottom: 20px;
}

.price-list li {
    padding: 8px 0;
    border-bottom: 1px dotted rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.price-list li strong {
    color: var(--orange-goupil);
    white-space: nowrap; 
}

.price-list li.price-sub {
    padding-left: 20px; 
    font-style: italic;  
    opacity: 0.9;        
}

.membership-note {
    font-size: 0.9rem;
    color: var(--texte-leger);
    background-color: var(--blanc-creme);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--orange-goupil);
}

.other-contact p {
    margin-bottom: 15px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--texte-sombre);
    font-weight: 500;
    transition: var(--transition);
}

.channel-item:hover {
    color: var(--orange-goupil);
}

.channel-item i {
    width: 32px;
    height: 32px;
    background-color: var(--blanc-creme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-goupil);
    flex-shrink: 0;
}

.cta-mail-box {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.cta-mail-box p {
    margin-bottom: 15px;
    font-weight: 500;
}

/* --- STYLE SPÉCIFIQUE PAGES JEUX --- */
.game-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.game-tags .tag {
    background-color: rgba(255, 107, 53, 0.15);
    color: var(--orange-goupil);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.game-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.geo-callout {
    background-color: var(--blanc-creme);
    border-left: 4px solid var(--orange-goupil);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.game-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.game-spec-table th, .game-spec-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: left;
}

.game-spec-table th {
    background-color: var(--blanc-creme);
    color: var(--bleu-gaming);
    width: 35%;
}

.sidebar-info .info-card {
    background: var(--blanc-pur);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin-bottom: 25px;
}

.sidebar-info .highlight-card {
    background: var(--bleu-gaming);
    color: var(--blanc-pur);
}

.session-list {
    list-style: none;
    margin: 15px 0;
}

.session-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    font-size: 0.95rem;
}

/* --- SECTION PARTENAIRES --- */
#partenaires {
    background-color: var(--blanc-pur);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--texte-sombre);
    font-weight: 600;
    transition: var(--transition);
}

.partner-item img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    margin-bottom: 10px;
}

.partner-item:hover img {
    transform: scale(1.05);
}

.partner-item:hover {
    color: var(--orange-goupil);
}

/* --- FOOTER --- */
footer {
    background-color: var(--bleu-gaming);
    color: var(--blanc-creme);
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-socials {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    color: var(--blanc-creme);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--orange-goupil);
    transform: translateY(-3px);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    :root {
        --header-hauteur: 70px;
    }
    
    #accueil, .game-hero {
        padding-top: calc(var(--header-hauteur) + 40px);
        min-height: auto; 
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-hauteur);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-hauteur));
        background-color: rgba(250, 246, 238, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 30px;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-social {
        margin-top: 10px;
    }

    .hero-grid, .game-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h1 span {
        font-size: 2.5rem;
    }

    .hero-image img {
        max-width: 280px;
    }
    
    .calendar-wrapper {
        padding: 15px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .membership-container {
        padding: 20px;
    }
}

/* --- SECTION DESCRIPTION DES JEUX --- */
.game-description {
    padding: 60px 0;
}

/* Encart principal (style aligné sur les cartes de l'index) */
.main-content {
    background: var(--blanc-pur, #FFFFFF);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

/* Espacements & respirations internes */
.main-content h2 {
    margin-bottom: 20px;
    color: var(--bleu-gaming, #0F172A);
}

.main-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--bleu-gaming, #0F172A);
}

.main-content p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #334155;
}

.main-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.main-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Encart d'appel SEO / Geo local */
.geo-callout {
    background-color: #F1F5F9;
    border-left: 4px solid var(--orange-goupil, #FF6B00);
    padding: 20px 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.geo-callout h4 {
    margin-bottom: 8px;
    color: var(--bleu-gaming, #0F172A);
}

.geo-callout p {
    margin-bottom: 0;
}

/* Adaptation Responsive (Mobiles & Tablettes) */
@media (max-width: 768px) {
    .main-content {
        padding: 25px 20px; /* Marges réduites sur mobile */
    }
}

/* --- AMÉLIORATIONS RESPONSIVE SPÉCIFIQUES POUR LES PAGES JEUX --- */

/* Responsive pour le tableau de spécifications */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
}

/* Optimisation mobile globale */
@media (max-width: 768px) {
    
    /* Hero section */
    .game-hero {
        padding: calc(var(--header-hauteur) + 20px) 0 40px 0;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }

    /* Fil d'Ariane sur mobile */
    .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 0.85rem;
    }

    /* Grille de contenu principal & Sidebar */
    .game-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-content {
        padding: 25px 18px;
        border-radius: 12px;
    }

    /* Transformation du tableau en disposition verticale sur mobile */
    .game-spec-table, 
    .game-spec-table tbody, 
    .game-spec-table tr, 
    .game-spec-table th, 
    .game-spec-table td {
        display: block;
        width: 100%;
    }

    .game-spec-table tr {
        margin-bottom: 15px;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        overflow: hidden;
    }

    .game-spec-table th {
        width: 100%;
        background-color: #F1F5F9;
        color: var(--bleu-gaming);
        font-weight: 700;
        border-bottom: 1px solid #E2E8F0;
        padding: 10px 12px;
    }

    .game-spec-table td {
        padding: 10px 12px;
        border-bottom: none;
    }

    /* Callout GEO */
    .geo-callout {
        padding: 15px 18px;
        border-left-width: 4px;
    }
}

/* --- CATALOGUE DE JEUX --- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.catalog-card {
    background: var(--fond-carte, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .card-img {
    transform: scale(1.05);
}

/* Badges */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--rouge-goupil, #e74c3c);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-star { background: #f39c12; }
.badge-accent { background: #8e44ad; }

/* Contenu de la carte */
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bleu-gaming, #2980b9);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.mini-tag {
    background: #f0f2f5;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    color: #555;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-card {
    align-self: flex-start;
    width: 100%;
    text-align: center;
    background: var(--bleu-accent, #3498db);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-card:hover {
    background: var(--bleu-hover, #2980b9);
}

/* Styles spécifiques pour l'équipe */
.team-section {
    margin-bottom: 50px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}
.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.team-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bleu-gaming, #2b3a4a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px;
}
.team-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--texte-principal);
}
.team-card .role {
    color: var(--orange-goupil, #ff5722);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.team-card p {
    font-size: 0.9rem;
    color: var(--texte-leger);
}
.founders-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}
.founder-chip {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 8px;
}
.founder-chip i {
    color: var(--orange-goupil, #ff5722);
}

/* Style des Fiches Membres Ludiques */
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
}

.role-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 8px 0 15px;
}

.badge {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 12px;
}

.badge-primary { background: var(--orange-goupil); color: #fff; }
.badge-secondary { background: #4a5568; color: #fff; }
.badge-sub { background: #e2e8f0; color: #4a5568; }

.player-profile {
    border-top: 1px dashed #e2e8f0;
    padding-top: 12px;
    width: 100%;
}

.archetype {
    font-size: 0.85rem;
    color: var(--texte-leger);
    margin-bottom: 6px;
}

.quote {
    font-style: italic;
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 12px;
}

.favorite-games {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.game-tag {
    background: #edf2f7;
    color: #2d3748;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}