.connect-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .connect-box {
    background: #1a1a1a;
    padding: 28px;
    border-radius: 14px;
    width: 480px; /* wider box */
    color: #fff;
  }
  
  .connect-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .connect-item {
    margin-bottom: 22px;
  }
  
  .connect-label {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #ddd;
    display: flex;
    align-items: start;
  }
  
  .connect-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;   /* remove underline */
    color: #fff;             /* white text */
    transition: background 0.3s;
    cursor: pointer;
  }
  
  .connect-link:hover {
    background: #222;
  }
  
  .connect-link .arrow {
    font-size: 16px;
    color: #fff;
    transition: transform 0.3s ease; /* smooth movement */
  }
  
  .connect-link:hover .arrow {
    transform: translateX(4px); /* move 4px to the right */
  }
  
  