    /* ── Servers page ── */
    .servers-hero {
        text-align: center;
        padding: 48px 24px 32px;
    }

    .servers-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 800;
        color: #fff;
        margin: 0 0 10px;
    }

    .servers-hero .subtitle {
        color: #8888aa;
        font-size: 0.95rem;
        margin: 0;
    }

    .refresh-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #1a1a2e;
        border: 1px solid #2a2a3e;
        border-radius: 20px;
        padding: 4px 14px;
        font-size: 0.78rem;
        color: #8888aa;
        margin-top: 14px;
    }

    .refresh-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #00ff88;
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
    }

    /* ── Server grid ── */
    .server-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 24px 64px;
    }

    @media (max-width: 900px) {
        .server-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 540px) {
        .server-grid { grid-template-columns: 1fr; }
    }

    /* ── Server card ── */
    .srv-card {
        background: #12121e;
        border: 1px solid #1e1e2e;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .srv-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }

    /* Colored accent stripe at top */
    .srv-accent {
        height: 4px;
        width: 100%;
    }

    .srv-body {
        padding: 20px 20px 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Mode icon + name row */
    .srv-title-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .srv-mode-icon {
        font-size: 1.6rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .srv-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
    }

    .srv-mode-label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-top: 2px;
    }

    /* Status + port row */
    .srv-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.82rem;
    }

    .srv-status {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
    }

    .srv-status-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .status-online .srv-status-dot {
        background: #00ff88;
        box-shadow: 0 0 6px #00ff8880;
        animation: pulse-dot 2s infinite;
    }

    .status-online .srv-status-text {
        color: #00ff88;
    }

    .status-offline .srv-status-dot {
        background: #ff4757;
    }

    .status-offline .srv-status-text {
        color: #ff4757;
    }

    .srv-port {
        color: #8888aa;
    }

    .srv-port strong {
        color: #ccccdd;
    }

    /* Connect button */
    .btn-steam-connect {
        display: block;
        text-align: center;
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 0.88rem;
        font-weight: 700;
        text-decoration: none;
        color: #000;
        transition: opacity 0.2s, transform 0.15s;
        letter-spacing: 0.3px;
    }

    .btn-steam-connect:hover {
        opacity: 0.88;
        transform: scale(1.02);
    }

    /* Console command */
    .srv-console {
        background: #0a0a14;
        border: 1px solid #1e1e2e;
        border-radius: 6px;
        padding: 8px 12px;
        font-size: 0.75rem;
        color: #8888aa;
        margin-top: auto;
    }

    .srv-console span {
        color: #555568;
        display: block;
        margin-bottom: 3px;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .srv-console code {
        color: #aaaacc;
        font-family: 'Courier New', monospace;
        font-size: 0.78rem;
        word-break: break-all;
    }

    /* Offline card dimming */
    .srv-card.srv-offline-card {
        opacity: 0.55;
    }

    /* Section wrapper */
    .servers-section {
        max-width: 1100px;
        margin: 0 auto;
    }
