.servers-hero {
    display: grid;
    align-items: center;
    min-height: 42vh;
    padding: 68px 6vw 62px;
    background: transparent;
    border-bottom: 1px solid var(--border);
}

.servers-hero-inner {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.servers-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3.55rem);
    line-height: 1;
    text-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.servers-hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 26px 0 0;
    color: #e2ded3;
    font-size: 1.06rem;
}

.servers-section {
    padding: 56px 6vw;
    background: transparent;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.server-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 248, 233, 0.08), rgba(98, 182, 255, 0.03)),
        rgba(16, 20, 18, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.server-media {
    overflow: hidden;
    min-height: 0;
    aspect-ratio: 16 / 8.8;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: #070908;
    box-shadow: none;
}

.server-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.server-label {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.server-card-copy h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.08;
}

.server-card-copy > p:not(.server-label) {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.server-details {
    display: grid;
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.server-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

.server-details div:first-child {
    border-top: 0;
}

.server-details span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.server-details strong {
    color: var(--text);
    font-size: 0.98rem;
    text-align: right;
}

.player-count-row strong {
    color: var(--accent-cool);
}

.player-count-row.is-offline strong {
    color: #b8ffd6;
}

.server-feature-list {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.server-feature-list li {
    position: relative;
    padding-left: 16px;
    color: #e2ded3;
    font-size: 0.92rem;
}

.server-feature-list li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-cool);
    border-radius: 50%;
}

.server-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.server-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    background: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 850;
    transition: background 160ms ease, transform 160ms ease;
}

.server-actions a:hover,
.server-actions a:focus {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.button-logo {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex: 0 0 auto;
}

.server-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    max-width: 1180px;
    margin: 42px auto 0;
    padding: 28px 30px;
    background:
        linear-gradient(180deg, rgba(242, 174, 84, 0.13), rgba(66, 223, 141, 0.04)),
        rgba(16, 20, 18, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
}

.server-callout h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.15;
}

.server-callout p:not(.eyebrow) {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--muted);
}

.server-callout a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-weight: 800;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.server-callout a:hover,
.server-callout a:focus {
    border-color: var(--accent-cool);
    color: var(--text);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .server-grid {
        grid-template-columns: 1fr;
    }

    .server-media {
        aspect-ratio: 16 / 9;
    }

    .server-callout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .servers-hero {
        min-height: 36vh;
        padding: 52px 6vw;
    }

    .server-content {
        padding: 26px;
    }

    .server-actions a {
        width: 100%;
    }
}
