.characterSelection {
    background: rgb(85, 176, 232);
    background: radial-gradient(circle, rgba(85, 176, 232, 1) 0%, rgba(63, 94, 251, 1) 86%);
    font-family: 'Yanone Kaffeesatz';
    font-size: 2em;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Organise les éléments enfants en colonne */
    z-index: 1000;
    /* text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.65); */
    opacity: 1;
    transition: opacity 0.15s ease-in-out;
    text-align: center;
}

span {
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.65);
}

/* Style de la liste des personnages */
#character-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espace entre les cartes de personnage */
    margin-top: 20px;
    width: 80%;
    max-width: 1200px;
}

/* Style individuel des personnages */
.character-item {
    background: #ffffff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    overflow: hidden; /* Garantit que les enfants n'excèdent pas les bordures arrondies */
    width: 180px; /* Taille fixe pour chaque personnage */
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
}

/* Image du personnage */
.character-item img {
    width: 100%; /* Adapte l'image à la largeur du conteneur */
    height: auto;
    border-bottom: 1px solid #ddd; /* Ligne séparatrice */
}

/* Nom du personnage */
.character-name {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

/* Description du personnage */
.character-description {
    font-size: 0.9em;
    margin-top: 5px;
}

/* Effet de survol pour les cartes de personnage */
.character-item:hover {
    transform: scale(1.05); /* Agrandit légèrement la carte */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#ban {
    background-color: #ff3d3dab;
    padding: 10px;
    border-radius: 10px;
}

#ban-text {
    font-size: 19px;
}

/* TESTS JULIEN */

.top {
    display: none;
}

.top-mobile .logo {
    width: 153px;
    height: 79px;
    background-image: url(/assets/img/design/logo_stereo_white_split_up.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.top-mobile .logo:before {
    content: "";
    z-index: 1;
    position: absolute;
    top: 78px;
    left: 0px;
    width: 132px;
    height: 41px;
    background-image: url(/assets/img/design/logo_stereo_white_split_down.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.top-mobile .btn-menu {
    margin-top: 0.8em;
    margin-right: 0.5em;
    height: 2.75em;
    width: 2.75em;
    filter: drop-shadow(0em 0em 0.1em rgba(0, 0, 0, 0.25));
    padding: 0.8em 0.1em;
    font-size: 1em;
}

.top-mobile a,
.top-mobile span {
    color: #fe7d01;
    text-decoration: none;
}

.top-mobile .wrap {
    /* display: flex; */
    padding: 0.15em 0.15em 0.15em 0.5em;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

.top {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    font-variant: small-caps;
    color: #ffffff;
    word-spacing: normal;
    display: flex;
    align-items: stretch;
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
}

.top a,
.top span {
    color: #FCB703;
    text-decoration: none;
}

.top span.white {
    color: #fff;
}

.top .bluebox {
    background-color: rgb(0 0 0 / 41%);
    box-shadow: 0em 0em 8px 0px rgb(0 0 0 / 28%);
    border-radius: 0px 0px 10px 10px;
    /* border: 1px solid #8D8BD9; */
    margin-left: 5px;
    margin-right: 5px;
    padding-right: 10px;
    padding-left: 10px;
}

.top .welcome {
    display: flex;
    flex: auto;
    justify-content: flex;
    text-align: center;
    overflow: hidden;
    letter-spacing: 1px;
    flex-grow: 0.3;
}

.top .wrap {
    display: flex;
    padding: 0 0.5em 0 0.5em;
    align-items: center;
    flex: 1;
    overflow: hidden;
    gap: 15px;
}

.top .wrap.left {
    display: flex;
    justify-content: space-between;
}

.white {
    color: #FFF;
}

.text-span {
    font-size: 2em;
}