/* --- VARIABLES ET RESET --- */

:root {
    --fuma-primary: #d4af37; 
    --fuma-bg-dark: #000000;      
    --fuma-bg-card: #141619;      
    --fuma-text-main: #f5f5f7;    
    --fuma-text-dim: #a1a1a6;     
    --fuma-border: 1px solid rgba(255, 255, 255, 0.05);
}

html { scroll-behavior: smooth; }

body, .fuma-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: var(--fuma-bg-dark);
    color: var(--fuma-text-main);
    line-height: 1.7;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
.fuma-logo, 
.fuma-logo:visited, 
.fuma-logo:hover, 
.fuma-logo:active {
    color: var(--fuma-primary); /* Le doré #d4af37 */
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
}

.fuma-logo span {
    color: var(--fuma-text-main); /* Le blanc pour "CLUBS" */
}


.fuma-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: var(--fuma-border);
    padding: 15px 0;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-weight: 800;
    color: var(--fuma-primary);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fuma-burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 10001;
}

.fuma-burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--fuma-text-main);
    margin: 6px 0;
    transition: 0.4s;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--fuma-text-main);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--fuma-primary); }

/* --- HERO SECTION --- */

.fuma-hero {
    padding: 60px 20px; 
    text-align: center;
    background: radial-gradient(circle at 50% -20%, #1e2126 0%, var(--fuma-bg-dark) 80%);
}

.fuma-hero-subtitle {
    color: var(--fuma-primary);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.fuma-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--fuma-primary);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fuma-cta:hover { 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* --- SECTIONS & CONTAINERS --- */

.fuma-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.fuma-section-title {
    font-size: 1.1rem;
    color: var(--fuma-text-dim);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.fuma-section-title::before, .fuma-section-title::after {
    content: ""; flex: 1; height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    max-width: 100px;
}

.fuma-about {
    text-align: center;
    max-width: 800px;  
    margin: 0 auto;    
    padding: 40px 20px;
}

.fuma-about p {
    color: var(--fuma-text-dim);
    font-size: 1rem;
}

/* --- VIDEO --- */

.fuma-video-container {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: var(--fuma-border);
    background: #000;
    margin-bottom: 45px;
}

.fuma-video-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* --- SEARCH & CLUB CARDS (GRID) --- */

.fuma-search-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 300px;
}

.fuma-search-input {
    background: var(--fuma-bg-card);
    border: var(--fuma-border);
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    width: 100% !important;
    max-width: 100%;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

.fuma-search-input:focus {
    border-color: var(--fuma-primary);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.fuma-club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.club-card {
    background: linear-gradient(145deg, #141619, #0a0b0c);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.club-card:hover {
    transform: translateY(-8px);
    border-color: var(--fuma-primary);
}

.club-card img { width: 75px; height: 75px; object-fit: contain; }



.club-name {
    margin-top: 15px;
    font-size: 0.7rem;
    color: var(--fuma-text-dim);
    text-transform: uppercase;
    text-align: center;
}


.team-cell .team-name:hover {
    color: var(--fuma-primary) !important;
    cursor: pointer;
}

.fuma-loading-wrapper {
    grid-column: 1 / -1; /* S'étend de la première à la dernière colonne */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px; /* Donne de l'espace vertical pour le centrage */
    width: 100%;
    text-align: center;
}


/* --- CLUB PROFILE PAGE --- */

.club-profile-header img {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}


/* Conteneur pour aligner les boutons proprement */
.form-actions-container {
    display: grid;
    grid-template-columns: 1fr; /* Un par ligne sur mobile */
    gap: 12px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .form-actions-container {
        grid-template-columns: 2fr 1fr 1fr; /* Update prend plus de place */
    }
}

/* Base commune pour tous les boutons */
.fuma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

/* BOUTON PRINCIPAL (Update) - Or/Noir */
.fuma-btn-primary {
    background: var(--fuma-primary);
    color: #000;
}
.fuma-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* BOUTON LOGOUT - Contour blanc/discret */
.fuma-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.fuma-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* BOUTON DELETE - Rouge danger */
.fuma-btn-danger {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
}
.fuma-btn-danger:hover {
    background: #f44336;
    color: #fff;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}


.fuma-btn-logout {
    background: #444;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.status-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--fuma-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.club-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    background: var(--fuma-bg-card);
    padding: 25px;
    border-radius: 12px;
    border: var(--fuma-border);
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item strong {
    font-size: 1.8rem;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item span, .stat-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fuma-text-dim);
}

.stats-bar .stat-item input {
    background: transparent;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    width: 60px;
    outline: none;
}

.sidebar-box {
    background: var(--fuma-bg-card);
    padding: 25px;
    border-radius: 12px;
    border: var(--fuma-border);
    margin-bottom: 20px;
}

.sidebar-box .fuma-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 65, 165, 0.4);
    filter: brightness(1.1);
}

.sidebar-title {
    font-size: 0.75rem;
    color: var(--fuma-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.roster-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--fuma-text-dim);
}

.roster-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    word-break: break-all; /* Coupe le mot si trop long */
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
}

.roster-list li a {
    white-space: normal; /* Autorise le retour à la ligne */
}

.roster-list li:last-child { border: none; }


.player-team-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}
.mini-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}



/* --- TROPHÉES --- */

.trophy-section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.trophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.trophy-badge {
    background: var(--fuma-bg-card);
    border: 1px solid var(--fuma-primary);
    padding: 8px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.trophy-badge:hover {
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.1);
}

.trophy-icon { font-size: 1.2rem; }

.trophy-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--fuma-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* À ajouter/modifier dans style.css */

.roster-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word; /* Force le retour à la ligne si un nom est trop long */
}

.roster-list li a {
    color: var(--fuma-text-main);
    text-decoration: none;
    flex: 1; /* Prend tout l'espace restant */
}



/* --- FORMULAIRE DE PROFIL --- */

.fuma-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--fuma-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.fuma-form-row {
    display: flex;
    gap: 10px;
}

.fuma-form-row .form-group {
    flex: 1;
    min-width: 0;
}

/* Pour la ligne de filtres */
.division-filter-container {
    display: flex;
    margin-top:20px;
    flex-direction: row; /* Force l'alignement horizontal */
    flex-wrap: nowrap;   /* Empêche le saut à la ligne sur mobile */
    gap: 10px;
    padding: 15px;
    overflow-x: auto;    /* Permet de scroller horizontalement si l'écran est trop petit */
    -webkit-overflow-scrolling: touch;
}

.selector-wrapper {
    flex: 1;             /* Chaque menu prend une part égale de l'espace */
    min-width: 120px;    /* Empêche les menus de devenir trop minuscules */
}

.fuma-search-input {
    width: 100%;         /* Le select prend toute la largeur du wrapper */
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis; /* Coupe le texte proprement s'il est trop long */
}

.selector-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fuma-primary);
    font-weight: 600;
    margin-left: 5px;
}

/* Conteneur des boutons */
.form-actions-container {
    grid-column: 1 / -1; /* Prend toute la largeur du formulaire */
    display: flex;
    flex-direction: column; /* Empilés pour plus de clarté */
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

/* Bouton principal (déjà existant dans votre thème, on l'assure ici) */
.fuma-btn-primary {
    width: 100%;
    max-width: 400px;
    background: var(--fuma-primary);
    color: #000;
    border: none;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.fuma-btn-primary:hover {
    transform: scale(1.02);
}

/* Bouton Supprimer - Style élégant et dangereux */
.fuma-btn-delete {
    display: none; /* Sera affiché par le JS si le profil existe */
    background: transparent;
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.4);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.fuma-btn-delete:hover {
    background: #ff4444;
    color: white;
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
}

/* --- INPUTS SPÉCIFIQUES & SELECTS --- */

input[list], select.fuma-search-input {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 35px;
}

input::-webkit-calendar-picker-indicator {
    display: none !important;
}

select option {
    background-color: #141619;
    color: white;
}


/* Style spécifique pour le bouton supprimer */
#btn-delete-profile {
    display: none; /* Caché par défaut, affiché par le JS */
    background-color: transparent;
    color: #ff4d4d; /* Rouge élégant */
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    border-radius: 4px;
    width: 100%; /* S'adapte à la largeur du formulaire */
}

#btn-delete-profile:hover {
    background-color: #ff4d4d;
    color: #fff;
    border-color: #ff4d4d;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.2);
}

#btn-delete-profile:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}


/* --- UTILS & ANIMATIONS --- */

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* MODIFICATIONS ICI */
    min-height: 100vh; /* Prend 100% de la hauteur de l'écran */
    width: 100%;       /* Prend toute la largeur */
    
    color: var(--fuma-primary);
}

.fuma-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--fuma-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
    align-items: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--fuma-primary);
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s;
    z-index: 999;
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.fuma-footer {
    padding: 40px 0 20px;
    text-align: center;
    border-top: var(--fuma-border);
    margin-top: 50px;
}

.fuma-social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-icon {
    color: var(--fuma-text-dim);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--fuma-primary);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

/* On réutilise ta classe fuma-credits existante mais on ajuste un peu */
.fuma-credits {
    text-align: center;
    padding: 10px 0;
    color: var(--fuma-text-dim);
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.6;
    text-transform: uppercase;
}

/* --- RÉGLAGE SPÉCIFIQUE POUR LES CLUBS (Écart large) --- */
#fuma-js-clubs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    /* row-gap (vertical) : 40px | column-gap (horizontal) : 20px */
    gap: 15px 20px; 
    padding: 20px 0;
}

/* --- RÉGLAGE SPÉCIFIQUE POUR LES JOUEURS (Écart serré) --- */
#fuma-js-players {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
    /* row-gap (vertical) : 15px | column-gap (horizontal) : 12px */
    gap: 45px 12px; 
    padding: 10px;
}

#fuma-js-players .club-card img:not(.mini-logo) {
    width: 85px !important;
    height: 85px !important;
    min-width: 85px;
    min-height: 85px;
    object-fit: cover;
    
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 5px;
}

/* Règle spécifique pour vos mini-logos (pour qu'ils restent petits) */
.mini-logo {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important; /* Garde les proportions du logo */
    border: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

.club-card {
    /* On s'assure que la box ne dépasse pas une certaine hauteur */
    height: auto;
    max-height: 200px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    transition: transform 0.2s ease;
}


.club-card:hover {
    transform: scale(1.03);
}

.stats-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.stat-card {
    background: var(--fuma-bg-card);
    padding: 20px;
    border-radius: 15px;
    border: var(--fuma-border);
}
.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.progress-bar {
    background: rgba(255,255,255,0.1);
    height: 6px;
    border-radius: 3px;
    margin: 10px 0 20px;
}
.progress-bar div {
    background: var(--fuma-primary);
    height: 100%;
    border-radius: 3px;
}



/* --- RESPONSIVE --- */

@media (max-width: 850px) {
    .fuma-hero-subtitle { font-size: 1.3rem; }
    .fuma-burger { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column; justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; margin-left: 0; }
    .fuma-burger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .fuma-burger.active span:nth-child(2) { opacity: 0; }
    .fuma-burger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
    .club-grid-layout { grid-template-columns: 1fr; gap: 30px; }
    .stats-bar { padding: 15px; }
    .stat-item strong { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .fuma-profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    #fuma-js-players .club-card {
        padding: 15px 10px;
    }
    
    /* Si ton JS injecte le nom dans un span ou une div spécifique */
    #fuma-js-players .club-card span, 
    #fuma-js-players .club-card p {
        font-size: 0.65rem;
        line-height: 1.2;
        display: block;
    }
}

@media (max-width: 600px) {
    .fuma-form-row { flex-direction: column; gap: 0; }
    .fuma-container { padding: 0 15px 40px; }
    .fuma-profile-grid { display: flex; flex-direction: column; }
    .fuma-section-title { font-size: 0.9rem; letter-spacing: 2px; }
    .fuma-search-input { font-size: 16px !important; padding: 15px 20px; }
    .sidebar-box { padding: 20px 15px; }
}


@media (max-width: 850px) {
    .club-grid-layout {
        display: flex;
        flex-direction: column; 
        gap: 20px;
        width: 100%; /* Force la largeur à 100% du parent */
        overflow: hidden; /* Empêche tout dépassement résiduel */
    }
    
    .fuma-container {
        padding: 0 15px; /* Réduit les marges pour gagner de la place */
    }
}

@media (max-width: 850px) {
    .sidebar-box {
        position: static !important; /* Annule le sticky du script.js */
        width: 100% !important;
        box-sizing: border-box;
    }
}

/* À ajouter/modifier dans votre bloc @media (max-width: 600px) */

@media (max-width: 600px) {
    .stats-bar {
        flex-direction: row; /* Empile W, D et L verticalement */
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .stat-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 10px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .trophy-badge {
        width: 100%; /* Un trophée par ligne sur très petit écran */
        justify-content: center;
    }
}

.club-title-responsive {
    font-size: 3.5rem;
    color: var(--fuma-primary);
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .club-title-responsive {
        font-size: 2rem; /* Taille réduite pour mobile */
    }
}









































