.player-info {
    margin: 0px 3em;

}

.info-stat {
    margin: 2em 0px;
    padding-top: 1em;
    border-top: solid 1px;
}

.cinquantecinquante {
    display: flex;
    flex-direction: row;
}

.cardPlayer {
    width: 75%;
}

.player-name {
    width: 150%;
}

h1.player-name {
    font-size: 4.25em;
    text-transform: uppercase;
    font-family: 'NovaRound', sans-serif;
    color: #FF2672;
}

h3.rose {
    color: #FF2672;
    font-size: 2.25em;
}

p.paragraphe {
    margin: 2em 0px;
    text-align: justify;
}

.player-posteclub {
    gap: 5px;
    margin: 15px 0px;
    display: flex;
    align-items: center;
}

h3 a {
    font-family: 'NovaRound', sans-serif;
}

.Z {
    color: #00FFDE;
    font-weight: bold;
}

.D {
    color: #FF4E25;
    font-weight: bold;
}

.C {
    color: #FFAA25;
    font-weight: bold;
}

.B {
    color: #D8FF00;
    font-weight: bold;
}

.A {
    color: #89E427;
    font-weight: bold;
}

.S {
    color: #FFDD81;
    font-weight: bold;
}



.circle-deco {
    width: 70px;
}

.circle-deco img {
    width: 100%;
}

img.player-face {
    position: fixed;
    top: 0;
    left: 5em;
    width: 45.5%;
    object-fit: cover;
    z-index: -1;
    opacity: 15%;
}

.infoRPTC {
    display: flex;
    gap: 2em;
}

button.pick-button {
    position: absolute;
    top: 85%;
    right: 32%;
    background: #FF2672;
    padding: 15px 25px;
    color: white;
    border-radius: 80px;
    border: none;
    cursor: pointer;
}

button.pick-button:hover {
    background: #464040;
    transition: 0.3s;
}

button.pick-button:disabled {
    background: #464040;
}

button.pick-button:disabled:hover {
    transition: 0s;
    cursor: not-allowed;
}

.paragraphe a {
    text-decoration: none;
    color: #FF2672;
    font-weight: 700;
    font-family: 'NovaRound', sans-serif;
}

.paragraphe a:hover {
    color: #FFDD81;
    transition: 0.3s;
}

.votre-ordre {
    font-size: 90%;
    position: absolute;
    top: 79%;
    right: 32%;
    z-index: 800;
    padding: 10px;
    border-radius: 80px;
}

button.pick-button-v2 {
    background: #FF2672;
    padding: 15px 25px;
    color: white;
    border-radius: 80px;
    border: none;
    cursor: pointer;
}

button.pick-button-v2:hover {
    background: #464040;
    transition: 0.3s;
}

button.pick-button-v2:disabled {
    background: #464040;
    cursor: no-drop;
}

.lemessage {
    font-style: italic;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2em;
}

@media screen and (max-width: 768px) {

    .cinquantecinquante {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 80px;
    }

    div.player-name {
        width: 100%;
        margin-bottom: 6%;
    }

    h1.player-name {
        text-align: center;
        width: 100%;
        font-size: 3.25em;
        overflow-wrap: break-word;
        /* Permet au texte de s'adapter si nécessaire */
        word-break: break-word;
        line-height: 1.2;
        /* Ajuste l'espacement des lignes */
        max-width: 100%;
        /* Empêche le dépassement */
    }



    .player-info {
        margin: 0px 1em;
    }

    h3.rose {
        color: #FF2672;
        font-size: 1.75em;
        text-align: center;
    }

    img.player-face {
        position: fixed;
        top: 20px;
        left: 0;
        width: 220%;
        object-fit: cover;
        z-index: -1;
        opacity: 15%;
    }

    .infoRPTC {
        display: flex;
        gap: 2em;
        justify-content: center;
    }

    .player-posteclub {
        gap: 5px;
        margin: 15px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cardPlayer {
        width: 100%;
    }

    button.pick-button {
        position: fixed;
        top: auto;
        bottom: 3em;
        right: auto;
    }

    .lemessage {
        font-style: normal;
        padding: 5%;
        margin-left: 13%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 2em;
        position: fixed;
        bottom: 3px;
        left: 0;
        right: 0;
        text-align: center;
        gap: 10px;
    }

    .pick-button-center {
        display: flex;
        justify-content: center;
    }

    p.paragraphe {
        margin: 2em 0px;
        text-align: justify;
    }

    .votre-ordre {
        display: flex;
        justify-content: center;
        position: fixed;
        bottom: 8em;
        left: 30%;
        right: 20%;
        font-size: 12px;
        z-index: 800;
        padding: 10px;
        border-radius: 80px;
        background: #FF2672;
        text-align: center;
        top: auto;
    }

    div.lemessage p {
        padding: 10px 50px;
        border-radius: 80px;
        background: #FF2672;
        text-align: center;
        font-size: 12px;
    }

}