/* Zusätzliche Stile für die Charakter-Kacheln */
.character-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.character-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 150px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.card-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #d9534f;
    margin-bottom: 5px;
}
.card-stats {
    font-size: 0.9em;
    color: #555;
}
