.lp-server-info-tooltip {
    position: fixed;
    z-index: 99998;
    width: 245px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 205, 130, .28);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(22, 8, 4, .96), rgba(5, 2, 1, .94));
    color: #d8c09a;
    font: 10pt 'AdonisC';
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px) scale(.97);
    box-shadow:
        inset 0 0 8px rgba(0,0,0,.55),
        0 0 12px rgba(255,90,25,.16);
    transition: opacity .16s ease, transform .16s ease;
}

.lp-server-info-tooltip_show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lp-server-info-tooltip__title {
    margin-bottom: 8px;
    padding-bottom: 6px;
    text-align: center;
    color: #ffd18a;
    font-size: 12pt;
    text-shadow: 0 1px 2px rgba(0,0,0,.95);
    border-bottom: 1px solid rgba(255, 210, 120, .12);
}

.lp-server-info-tooltip__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.lp-server-info-tooltip__row:last-child {
    border-bottom: 0;
}

.lp-server-info-tooltip__label {
    color: #b8a282;
}

.lp-server-info-tooltip__value {
    color: #fff0c8;
    text-align: right;
}