.server-info {
    position: relative;
    background: url("../assets/img/serverinfo.png") no-repeat center top;
    background-size: cover;
    border: 2px solid #3a1c0f;
    padding: 20px;
    margin-top: 20px;
    color: #e0c9a6;
    font-family: "Georgia", serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    /* evita que el overlay se salga */
    margin-bottom: 22px;
}

.server-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* ajusta 0.15–0.30 a gusto */
    z-index: 0;
}

.server-info * {
    position: relative;
    z-index: 1;
}

.server-info__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 10px;
}

.server-info__title::before {
    content: "";
    width: 50px;
    height: 50px;
    background: url("../assets/img/scroll.png") no-repeat center;
    background-size: contain;
    flex: 0 0 50px;
    filter: brightness(0.75);
}

.server-info__label {
    font-family: "Georgia", serif;
    font-weight: bold;
    color: #ffd27f;
    margin-right: 6px;
}

.server-info__text {
    font-family: "Arial", sans-serif;
    font-weight: normal;
    color: #ffffff;
}

.server-info__body {
    font-size: 14px;
    line-height: 1.6;
    color: #f0e4d7;
}

.server-info__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 8px;
    font-size: 12px;
    color: #c9b89d;
    border-top: 1px solid rgba(255, 210, 127, 0.3);
}

.server-info__label,
.server-info__text {
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}