.hero-section {
    position: relative;
    min-height: calc(100vh - 85px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a; 
    overflow: hidden;
}

.hero-image {
    width: 50%;           
    max-width: 900px;     
    height: auto;
    display: block;
    border-radius: 20px;
    filter: brightness(0.75); 
    position: relative;
    z-index: 1;
    margin-top: 0px;
}

.hero-section::before {
    display: none; 
}

.monster-overlay {
    position: absolute;
    top: 2%; 
    left: 35%;         
    width: 90%;        
    max-width: 450px;
    z-index: 3;        
    pointer-events: none; 
}

.cta-button {
    position: absolute;
    z-index: 2;
    padding: 18px 40px;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFFF00;
    border: 3px solid #FFFF00;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    margin-top: 220px;
}

.cta-button:hover {
    background-color: #FFFF00;
    color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,255,0,0.6);
}

/* 1. ÉCART IDENTIQUE AUTOUR DU DIVIDER */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0; /* Gère tout l'espace de manière symétrique */
}

.divider-line {
    width: 80px;
    height: 2px;
    background: #444;
}

.divider-dot {
    width: 12px;
    height: 12px;
    background: #FFFF00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,0,0.7);
}

/* 2. RÉDUCTION DU VIDE SECTION PRÉSENTATION */
.presentation-site {
    background-color: #1a1a1a;
    color: #e5e5e5;
    padding: 10px 20px; /* Paddings haut/bas réduits au minimum */
    text-align: left;
}

.presentation-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 40px;
    margin-top: 0; /* S'assure qu'aucune marge cachée ne déséquilibre le divider */
    text-align: center;
}

.presentation-intro {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #cccccc;
}

.presentation-site p {
    max-width: 850px;
    margin: 0 auto 28px auto;
    line-height: 1.8;
    font-size: 1.15rem;
}

.presentation-highlight {
    font-weight: 600;
    color: #aaaaaa;
    margin-top: 40px;
}

.presentation-cta {
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 0; /* Évite de pousser le divider du bas */
}

.gold {
    color: #FFFF00;
    font-weight: 800;
}

.accent {
    color: #d4d4d4;
    font-weight: 600;
}

/* 3. RÉDUCTION DU VIDE SECTION CAROUSEL */
.movements-carousel {
    background-color: #1a1a1a;
    padding: 10px 0 20px 0; /* Paddings réduits */
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    max-width: 1000px;        
    margin: 0 auto;
    gap: 20px;               
}

.logo-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper {
    width: 280px;            
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#move-title {
    color: #FFFF00;
    font-size: 1.7rem;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
}

#move-description {
    color: #e5e5e5;
    font-size: 1.05rem;
    line-height: 1.6; /* Hauteur de ligne équilibrée */
    text-align: left;
    
    /* Le style particulier */
    border-left: 3px solid #FFFF00; /* Rappel du thème Gold */
    padding-left: 20px;
    margin-top: 15px;
    
    /* Effet de profondeur */
    background: linear-gradient(90deg, rgba(255, 255, 0, 0.05) 0%, transparent 100%);
    
    /* Optionnel : pour un look très "Shadow" */
    font-family: 'Inter', sans-serif; 
    letter-spacing: 0.5px;
    font-style: italic;
}

/* On peut aussi styliser la première lettre pour le style */
#move-description::first-letter {
    color: #FFFF00;
    font-weight: bold;
    font-size: 1.2rem;
}

.movement-subtitle {
    color: #aaaaaa;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.movement-subtitle-line {
    width: 80px;
    height: 3px;
    background: #FFFF00;
    margin: 10px auto 25px auto;
    border-radius: 3px;
}

.movement-logo {
    max-width: 250px; 
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.3));
}

.movement-info {
    flex: 0 1 auto;          
    max-width: 500px;        
    color: white;
}

.nav-arrow {
    background: none;
    border: none;
    color: #FFFF00;
    font-size: 80px;
    cursor: pointer;
    transition: transform 0.2s;
    line-height: 1;
}

.nav-arrow:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px #FFFF00;
}

.yt-card {
    display: inline-block;
    text-decoration: none;
    color: #FFFF00;
    transition: 0.3s;
}

.yt-card img {
    width: 250px;
    border-radius: 12px;
    border: 2px solid #333;
    display: block;
    margin-bottom: 10px;
}

.yt-card span {
    font-size: 0.9rem;
    font-weight: bold;
}

.yt-card:hover img {
    border-color: #FFFF00;
    transform: translateY(-5px);
}

/* --- TEAM SECTION --- */
.team-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
/* ==========================================================================
   SECTION ÉQUIPE (ROSTER)
   ========================================================================== */

.team-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* --- Carte Joueur --- */
.player-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 20px;
    width: 320px;
    transition: all 0.3s ease;
    position: relative;
}

.player-card:hover {
    border-color: #FFFF00;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- Frame Image --- */
.player-frame {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 350px;
    border: 2px solid #444;
}

.player-img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: 0.5s ease;
}

.player-card:hover .player-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.player-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #FFFF00;
    color: #000;
    font-weight: 900;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-style: italic;
    z-index: 2;
}

/* --- Stats & Skills --- */
.player-stats {
    margin-top: 20px;
}

.player-stats h3 {
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.stat-row {
    margin-bottom: 15px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 900;
    color: #FFFF00;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* --- Barres de progression --- */
.bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar {
    flex-grow: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.fill {
    height: 100%;
    width: 0; /* Géré par le style inline dans le HTML */
    background: linear-gradient(90deg, #b3b300, #FFFF00);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

/* Déclenche l'animation au survol de la carte */
.player-card:hover .fill {
    animation: barFill 1.2s ease-out forwards;
}

@keyframes barFill {
    from { width: 0; }
}

.stat-value {
    font-family: 'monospace', sans-serif;
    font-weight: 900;
    color: #ffffff;
    font-size: 0.9rem;
    min-width: 55px;
    text-align: right;
}

/* ==========================================================================
   SECTION CONTACT
   ========================================================================== */

.contact-section {
    padding: 60px 20px;
    background: #1a1a1a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #FFFF00;
    background: #2a2a2a;
}



/* --- CONTACT SECTION --- */
.contact-section {
    padding: 60px 20px;
    background: #1a1a1a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #FFFF00;
    background: #2a2a2a;
}



/* 4. AJUSTEMENTS MOBILE */
@media (max-width: 600px) {
    .hero-image {
        width: 95%; 
        margin-top: 0px;
    }
    
    .cta-button {
        margin-top: 130px;
        padding: 10px 18px;   
        font-size: 16px;      
        border-width: 2px;    
        border-radius: 8px;   
    }

    .monster-overlay {
        top: 10%; 
        left: 5%;
    }

    .hero-section {
        min-height: 40vh; 
    }

    .section-divider {
        margin: 25px 0;
    }

    .carousel-container {
        flex-direction: column;
        text-align: center;
    }

    /* --- CORRECTION ICI --- */
    .logo-wrapper {
        width: 100%; 
        height: auto; /* Remplace le 200px par auto pour éviter le débordement vers le haut */
        min-height: auto; 
        padding: 15px 0; /* Ajoute un peu de respiration */
    }

    /* On réduit un peu le logo sur mobile pour que ça ne prenne pas tout l'écran */
    .movement-logo {
        max-width: 180px; 
    }
    /* ---------------------- */

    .movement-subtitle {
        font-size: 1.1rem;
    }

    .team-grid {
        gap: 20px;
    }
    
    .player-card {
        width: 100%;
        max-width: 350px;
    }

    .player-frame {
        height: 300px;
    }

    .player-img {
    height: 180%;
    }

}