.character-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    flex-wrap: wrap;
}

.character-logo {
    flex: 0 0 70px;
    height: 86px;
    position: relative;
}

.logo {
    width: 70px;
    height: 86px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}

.character-main {
    display: flex;
    flex-direction: column;
}

.character-title.top {
    order: -1; /* Titel oben */
    font-size: 1.2rem;
}

.character-title.bottom {
    order: 1; /* Titel unten */
    font-size: 1.2rem;
}

.character-name {
    order: 0;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.character-stats {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.achievement-score {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.character-info {
    font-size: 1rem;
}

.character-links {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.armory-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}