
body {
    background: #E6E6FA !important;
    color: #fff;
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
}

.container {
    margin: 40px 0 40px 50px; /* отступ сверху, справа, снизу, слева */
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    width: 700px;
    box-shadow: 0 0 15px #000;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

a {
    display: inline-block;
    margin-top: 20px;
    background-color: #ffd700;
    padding: 10px 20px;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    background-color: #e6c200;
}

.equipment-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: start;
    gap: 0px;
    margin-top: 0px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.column.center {
    padding-top: 40px;
}

.slot {
    background-color: #222;
    border: 1px solid #444;
}

.body {
    background-color: #000;
    border: 0px solid #555;
}

.ring-row {
    display: flex;
    gap: 0px;
    margin: 0px 0;
}

.ring {
    width: 18px;
    height: 18px;
    background-color: #222;
    border: 1px solid #555;
}
.equipment-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.stats-panel {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #666;
    text-align: left;
}

.stats-panel ul {
    list-style-type: none;
    padding-left: 0;
}

.hp-bar {
    position: relative;
    background-color: #444;
    border: 1px solid #222;
    border-radius: 4px;
    width: 120px;
    height: 16px;
    margin-bottom: 4px;
    overflow: hidden;
}

.hp-fill {
    background-color: #4CAF50;
    height: 100%;
    width: 100%;
}

.hp-text {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    top: 0;
    left: 0;
    line-height: 16px;
}
.stats-panel h4 {
    margin-top: 12px;
    color: #ffd700;
    font-size: 15px;
}
.stats-panel ul li {
    font-size: 14px;
    margin-left: 5px;
}
.character-name {
    position: absolute;
    top: -26px;
    width: 160px;           /* точно по ширине силуэта */
    text-align: center;
    font-size: 16px;
    font-weight: thin, hairline;
    color: white;
    left: 50%;
    transform: translateX(-50%); /* центрировать относительно силуэта */
}
}
.character-name .player-level {
    font-weight: thin, hairline;         /* теперь одинаково жирный */
    font-size: 18px;           /* такой же размер */
    margin-left: 6px;
    color: #99ccff;
    position: relative;
    top: 0;                    /* если потребуется — можешь скорректировать */
}
}
.player-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
}
.player-meta img {
    vertical-align: middle;
}
.inventory-panel {
    position: absolute;
    top: 5px;
    right: 10px;
    background: linear-gradient(to bottom, #bdbdbd, #999999 90%, #bababa);
    border: 2px solid #888;
    border-radius: 7px;
    box-shadow: 0 0 3px #2225;
    padding: 2px 10px;      /* стало меньше */
    font-weight: bold;
    font-size: 0.5em;       /* уменьшен */
    color: #222;
    min-width: 20px;        /* можно уменьшить или убрать */
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0 #fff, 0 1px 0 #bbb;
}