.strongs-section {
    color: lightgray;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    width: 100%;
    display: flex;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: center;
}

.strongs-section-header {
    position: relative;
    display: flex;
    align-items: center;
}

.strongs-section-header > h2 {
    color: white;
}

.strong-info-section > svg , .strong-info-section > canvas {
    background: black; 
    background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(10,15,25,1) 100%);
    border-radius: 20px;
    height: 250px;
    width: 250px;
    flex-shrink: 0;
}

.strong-info-wrapper {
    padding: 10px 20px;
}

/* Container principal */
.strongs-list {
    font-family: "Outfit", "Whitney", Arial, sans-serif;

    display: flex;
    gap: 3rem;
    padding: 2rem;
    padding-bottom: 1rem;
    overflow-x: auto;

    width: 90%;
}

/* Carte principale */
.strong-item {
    background: rgba(34, 53, 93, 0.5);
    border: 1px solid rgba(69, 99, 162, 0.4);
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    width: 700px;
    backdrop-filter: blur(10px);
    position: relative;
    flex-shrink: 0;
}

.strong-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
}

.strong-item > .spell {
    position: absolute;
    top: -2em;
    left: -2em;
    height: 4em;
}

/* En-tête info */
.strong-info-name {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
    padding-bottom: 0.5em;
    color: rgba(255, 255, 255, 0.85);
}

.strong-info-name > img {
    height: 2.8em;
}

.strong-info-name h2 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
    margin: 0;
}

/* Section principale */
.strong-info-section {
    display: flex;
    gap: 2rem;
    padding: .5rem;
}

.strong-info-section > svg {
    background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(10,15,25,1) 100%);
    border-radius: 16px;
    height: 250px;
    width: 250px;
    flex-shrink: 0;
    border: 1px solid rgba(69, 99, 162, 0.3);
}

/* Tableau des caractéristiques */
.strong-info-caracteristic {
    flex: 1;
}

.strong-info-carac-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1.2em;
    column-gap: 2em;
    margin-top: 1rem;
}

.strong-info-carac-item {
    display: flex;
    flex-direction: column;
}

.strong-info-carac-item span:first-child {
    color: rgb(255, 215, 128);
    /* font-weight: 600; */
    margin-bottom: 0.25em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Description */
.strong-description {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: justify;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.05);
    margin: 0;
    line-height: 1.6;
    font-size: .9em;
}

.strong-description-wrapper:has(.strong-void-description) {
    display: flex;
    justify-content: center;
    align-items: center;
    color: gray;
    font-style: italic;
}


#scene #player {
    cursor: move;
}

@media screen and (max-width: 768px) {
    .strong-item {
        width: 85%;
    }

    .strong-info-section {
        flex-direction: column;
    }

    .strong-info-section > svg {
        max-width: 100%;
        aspect-ratio: 1/1;
        height: auto;
    }
}