.char-nav {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-bottom: 12px;
}
.char-nav a,
.char-nav-item {
display: inline-block;
padding: 8px 16px;
border-radius: 20px;
font-weight: 600;
text-decoration: none;
text-align: center;
transition: all 0.2s ease;
}
.char-nav a {
border: 1.5px solid #2ecc71;
color: #2ecc71;
background: transparent;
}
.char-nav a:hover {
background: rgba(46, 204, 113, 0.15);
}
.char-nav-item.current {
background: #2ecc71;
color: #0a1f14;
border: 1.5px solid #2ecc71;
}