/*
 * --------------------------------------------
 * 1 - Server Pages
 * --------------------------------------------
 */

.servers {
    margin-top: 80px;
}
.servers .row {
    margin-bottom: 15px;
}

.accordion {
    margin-bottom: 20px;
}

.servers .servers-main-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.servers .servers-main-text {
    text-align: center;
    color: rgb(203, 197, 194);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
}

.servers .servers-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: left;
    margin-bottom: 20px;
}

.servers .accordion-item {
    background: rgba(32, 36, 32, 0.95) !important;
    border: 0;
    border-radius: 0 !important;
}

.servers .accordion-header {
    background: rgba(37, 41, 37, 0.95) !important;
}

.servers .accordion-header .accordion-button {
    background: transparent;
    color: rgb(220, 211, 202);
    outline: none;
    box-shadow: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 26px;
    padding: 20px 26px;
}

.servers .accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dcd3ca'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.servers .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a6cd63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.servers .accordion-header .accordion-button .icon {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    margin-top: -2px;
    color: rgb(166, 205, 99);
}

.servers .accordion-body {
    font-size: 20px;
    font-weight: 300;
    padding: 28px;
}

.servers .text {
    text-align: left;
    color: rgb(203, 197, 194);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 576px) {
    .servers .accordion-header .accordion-button {
        font-size: 22px;
    }

    .servers .accordion-header .accordion-button .icon {
        height: 26px;
        width: 26px;
    }

    .servers .accordion-body {
        font-size: 18px;
    }
}







/* rules list: 保留圆点，控制图标尺寸与提亮前缀文字 */
.servers .rule-list { list-style: disc; margin-left: 1.25rem; }
.servers .rule-list li {
  margin: 8px 0;
  line-height: 1.7;
  color: #cdd3cd; /* 正文比默认再亮一点 */
}

/* 小图标（不要给 svg 用 class="icon"，防止被全局放大） */
.servers .rule-list .fi{
  display: inline-block;
  width: 15px;            /* 想更小改 14px，想大一点改 16px */
  height: 15px;
  margin-right: 8px;
  vertical-align: -2px;   /* 与文字基线更贴合 */
  color: #e9efea;         /* 图标颜色更亮 */
}
.servers .rule-list .fi svg{
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;             /* 需要半填充时在单个 path 上加 fill */
}

/* 前缀词提亮加粗 */
.servers .rule-list .lead{
  font-weight: 800;
  color: #f3f6f3;
}
