.servers-hero {
    display: grid;
    align-items: center;
    min-height: 42vh;
    padding: 82px 6vw 70px;
    background:
        linear-gradient(rgba(15, 17, 21, 0.56), rgba(15, 17, 21, 0.9)),
        url("../images/LuxDeepSpace.jpg");
    background-position: center;
    background-size: cover;
}

.servers-hero-inner {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.servers-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
}

.servers-hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 26px 0 0;
    color: #d9dee8;
    font-size: 1.12rem;
}

.servers-section {
    padding: 94px 6vw;
    background:
        linear-gradient(135deg, rgba(111, 143, 245, 0.15), rgba(15, 17, 21, 0.12)),
        var(--bg);
}

.server-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 52px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

.server-media {
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(111, 143, 245, 0.28);
    border-radius: 8px;
    background: #0a0b0e;
}

.server-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(111, 143, 245, 0.32);
    border-radius: 8px;
}

.server-label {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.server-card-copy h2 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
}

.server-card-copy > p:not(.server-label) {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.server-details {
    display: grid;
    gap: 0;
    margin-top: 32px;
    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: 18px;
    padding: 16px 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: 1.18rem;
    text-align: right;
}

.server-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.server-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    background: var(--accent);
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
    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: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(111, 143, 245, 0.24);
    border-radius: 8px;
}

.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: 4px;
    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);
    color: var(--accent);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .server-panel {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .server-media {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    .server-callout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .servers-hero {
        min-height: 38vh;
        padding: 58px 6vw;
    }

    .server-content {
        padding: 26px;
    }

    .server-actions a {
        width: 100%;
    }
}
