body {
    background-color: #12141c;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 10px;
}
.stat-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #2a2e3a;
    padding-bottom: 10px;
}
.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4em;
    font-weight: 800;
    letter-spacing: 1px;
}
.stat-header input {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    text-align: right;
    font-size: 1em;
}
.stat-actions {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}
.action-item, .skill-item {
    display: flex;
    align-items: center;
    background: #1e2230;
    border: 1px solid #34394a;
    border-radius: 4px;
    padding: 2px 8px;
    cursor: pointer;
    transition: 0.2s;
}
.action-item:hover, .skill-item:hover {
    background: #2a3045;
    border-color: #7289da;
}
.action-item span, .skill-item span {
    font-size: 0.7em;
    font-weight: bold;
    margin-right: 10px;
    color: #a0a5b8;
}
.mod-val {
    background: #2a2e3a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    min-width: 25px;
    text-align: center;
}
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}
.skill-item {
    justify-content: space-between;
    padding: 5px 10px;
    background: #161a26;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
