body { 
    font-family: sans-serif; 
    background-color: #f4f4f4; 
    padding: 20px; 
}

.character-card { 
    background: white; 
    border: 1px solid #ccc; 
    padding: 15px; 
    margin-bottom: 10px; 
    border-radius: 5px;
}

#synopsis-container {
    background: #e8e8e8; 
    padding: 15px; 
    border-radius: 5px; 
    margin-bottom: 20px;
}

.game-story, .story-content {
    display: none;
}

.hidden-details { 
    display: none;
}

.details-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.char-portrait {
    width: 120px;
    height: auto;
}

.bio-text {
    flex: 1; 
}

.wiki-button { 
    cursor: pointer; 
    background: #222; 
    color: #fff; 
    border: none; 
    padding: 5px 10px; 
}

.filter-controls { 
    margin-bottom: 20px;
}